@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Medium.woff2') format('woff2'),
	url('../fonts/Inter-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Regular.woff2') format('woff2'),
	url('../fonts/Inter-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
	url('../fonts/Inter-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Bold.woff2') format('woff2'),
	url('../fonts/Inter-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Italic.woff2') format('woff2'),
	url('../fonts/Inter-Italic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Light.woff2') format('woff2'),
	url('../fonts/Inter-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-BoldItalic.woff2') format('woff2'),
	url('../fonts/Inter-BoldItalic.woff') format('woff');
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-LightItalic.woff2') format('woff2'),
	url('../fonts/Inter-LightItalic.woff') format('woff');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}




html {
	min-width: 320px;
}

body {
	font-size: 15px;
	color: #231F20;
	line-height: 140%;
	position: relative;
	background: #fff;
	margin: 0;
	padding: 0px 0 0 0;
	height: auto !important;
	min-height: 100%;
	font-family: 'Inter', sans-serif;
}

html>body {
	padding: 0;
}

img {
	padding: 0;
	margin: 0;
	border: 0;
}

.cleaner {
	clear: both;
}

a:hover {
	text-decoration: none;
}

input::-moz-placeholder {
	opacity: 1;
	color: #000;
}

input::-webkit-input-placeholder {
	opacity: 1;
	color: #000;
}

input:focus::-moz-placeholder {
	opacity: 0;
}

input:focus::-webkit-input-placeholder {
	opacity: 0;
}

textarea::-moz-placeholder {
	opacity: 1;
	color: #000;
}

textarea::-webkit-input-placeholder {
	opacity: 1;
	color: #000;
}

textarea:focus::-moz-placeholder {
	opacity: 0;
}

textarea:focus::-webkit-input-placeholder {
	opacity: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0;
	/* <-- Apparently some margin are still there even though it's hidden */
}

p {
	padding: 0;
	margin: 0;
}

a {
	color: #1961AC;
}

* {
	box-sizing: border-box;
	outline: none;
	max-height: 9999999999999px;
	-webkit-appearance: none !important;
}

.all {
	max-width: 1440px;
	padding: 0 70px;
	margin: 0 auto;
	width: 100%;
	position: relative;
}

form {
	padding: 0;
	margin: 0;
	border: 0;
}

form fieldset {
	padding: 0;
	margin: 0;
	border: 0;
}

button,
a {
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}


body.pop-open {
	max-height: 100dvh;
	overflow: hidden;
}

.container {
	position: relative;
	max-width: 100%;
	overflow: hidden;
}


header {
	transition: all 0.3s ease;
	background: #fff;
	width: 100%;
	border-bottom: 1px solid rgba(28, 38, 60, 0.2);
	position: fixed;
	z-index: 99;
	height: 100px;
	display: flex;
	justify-content: center;
}

header.fix {
	height: 90px;
}

header>.all {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .logo {
	transition: all 0.3s ease;
	height: 36px;
	display: block;
}

header .btns {
	display: flex;
	align-items: center;
}

header .btns>* {
	margin-left: 5px;
}

header .menu-btn {
	display: block;
	width: 60px;
	height: 60px;
	cursor: pointer;
	border-radius: 10px;
	border: 1px solid rgba(28, 38, 60, 0.2);
	position: relative;
	transition: all 0.3s ease;
}

header .menu-btn:before,
header .menu-btn:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	transition: opacity 0.1s ease;
}

header .menu-btn:before {
	background: url(../img/menu-ic.svg) center center no-repeat;
}

header.menu-open .menu-btn:before {
	opacity: 0;
}

header.menu-open .menu-btn:after {
	opacity: 1;
}

header .menu-btn:after {
	background: url(../img/menu-close-ic.svg) center center no-repeat;
	opacity: 0;
}

header .menu-btn:hover {
	background: #1C263C33;
}

header:not(.inner, .menu-open) {
	background: none;
	border-color: rgba(255, 255, 255, 0.2);
}

header:not(.inner, .menu-open) .logo {
	filter: invert(1);
}

header:not(.inner, .menu-open) .mess-btn:hover {
	color: #1C263C;
	background: #fff;
}

header:not(.inner, .menu-open) .mess-btn:hover img {
	filter: none;
}

header:not(.inner, .menu-open) .menu-btn {
	filter: grayscale(100%) brightness(800%);
}

header:not(.inner, .menu-open) .menu-btn {
	border-color: rgba(255, 255, 255, 0.2);
}

header:not(.inner, .menu-open) .menu-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

@media (pointer:coarse) {

	header .menu-btn:hover,
	header:not(.inner, .menu-open) .menu-btn:hover {
		background: none;
	}
}



header nav {
	-ms-overflow-style: none;
	scrollbar-width: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	overflow: auto;
	position: fixed;
	top: -999999px;
	height: calc(100% - 100px);
	bottom: 0;
	background: #fff;
	left: -999999px;
	width: 100%;
	display: flex;
}

header nav .search-form {
	display: none;
}

header nav::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.menu-open header nav {
	top: 100px;
	left: 0;
	opacity: 1;
}

.menu-open header.fix nav {
	height: calc(100% - 90px);
	top: 90px;
}

header nav .all {
	padding-top: 40px;
	padding-bottom: 180px;
	display: flex;
	flex-wrap: wrap;
}

header nav .all .left {
	width: calc(50% - 20px);
}

header nav .all .right {
	width: calc(50% + 20px);
}

header nav .logo {
	filter: none !important;
	height: auto;
	max-width: 258px;
}

header nav .left {
	min-height: calc(100dvh - 270px);
}

header nav ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

header nav ul li a {
	border-radius: 10px;
	display: table;
	padding: 0 32px 0 20px;
	position: relative;
	line-height: 50px;
	font-size: 26px;
	color: #1C263C;
	text-decoration: none;
}

header nav ul li:not(.menu-parent) a:after {
	width: 8px;
	height: 8px;
	content: '';
	display: block;
	position: absolute;
	background: url(../img/menu-arr.svg) center center no-repeat;
	top: 14px;
	right: 20px;
}

header nav ul li.menu-parent>a .str {
	transition: all 0.3s ease;
	display: block;
	position: absolute;
	background: url(../img/menu-parent-arr.svg) center center no-repeat;
	width: 40px;
	height: 40px;
	right: 0px;
	top: 50%;
	margin-top: -20px;
}

header nav ul li.menu-parent.open>a .str {
	transform: scale(1, -1);
}

header nav ul li.menu-parent>a {
	padding-right: 42px;
}

header nav ul li a:hover {
	background: rgba(28, 38, 60, 0.1);
}

header nav ul li ul {
	display: none;
}

header nav .bottom {
	font-size: 18px;
	line-height: 129%;
	color: #281E23;
	width: 100%;
	padding: 20px 0 40px 0;
	display: flex;
	align-items: center;
}

header nav .bottom .soc {
	width: 50%;
}

header nav .bottom .soc a:hover {
	background: #281E23;
}

header nav .bottom .soc a:hover img {
	filter: grayscale(100%) brightness(800%);
}

header nav .bottom .soc a:hover sup {
	color: #fff;
}

header nav .bottom a {
	color: inherit;
	text-decoration: none;
}

header nav .bottom a:hover {
	color: #BAE00B;
}

header nav .bottom .right {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header nav .bottom .mess-link {
	display: none;
}

header .soc {
	display: flex;
	flex-wrap: wrap;
}

header .soc a {
	width: 50px;
	height: 50px;
	display: flex;
	margin: 0 10px 0 0;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #BAE00B;
}

header .soc a img {
	display: block;
	max-height: 14px;
}

header .soc a:hover {
	background: #fff;
}

header .soc a sup {
	position: absolute;
	display: block;
	top: 9px;
	right: 14px;
	font-size: 10px;
	color: #1C263C;
}



.mess-btn {
	display: table;
	line-height: 60px;
	background: #fff;
	border-radius: 10px;
	padding: 0 20px 0 52px;
	position: relative;
	font-size: 18px;
	font-weight: 500;
	color: #1C263C;
	text-decoration: none;
}

.inner .mess-btn,
header:not(.inner).menu-open .mess-btn {
	background: #BAE00B
}

.mess-btn img {
	transition: all 0.1s ease;
	display: block;
	position: absolute;
	left: 19px;
	height: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.mess-btn:hover img {
	filter: grayscale(100%) brightness(800%);
}

.mess-btn:hover {
	color: #fff;
	background: #1C263C;
}

.search-form {
	position: relative;
}

.search-form .inp-txt {
	background: none;
	font-size: 18px;
	color: #1C263C;
	padding: 0 20px 0 20px;
	cursor: pointer;
	border: 1px solid #1C263C33;
	border-radius: 10px;
	transition: all 0.3s ease;
	height: 60px;
	font-family: inherit;
	width: 100%;
	max-width: 60px;
}

.search-form .inp-txt::-moz-placeholder {
	opacity: 0;
	color: rgba(28, 38, 60, 0.3);
}

.search-form .inp-txt::-webkit-input-placeholder {
	opacity: 0;
	color: rgba(28, 38, 60, 0.3);
}

.search-form.open .inp-txt {
	max-width: 353px;
	padding: 0 20px 0 44px
}

.search-form:not(.open) .inp-txt:hover {
	background: #1C263C33;
}

.search-form .submit {
	transition: all 0.3s ease;
	padding: 0;
	border: 0;
	width: 60px;
	height: 60px;
	pointer-events: none;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	background: url(../img/loop-ic.svg) center center no-repeat;
}

.search-form.open .submit {
	left: -4px;
}

header:not(.inner, .menu-open) .search-form .submit {
	filter: grayscale(100%) brightness(800%);
}

header:not(.inner, .menu-open) .search-form .inp-txt {
	border-color: rgba(255, 255, 255, 0.2);
}

header:not(.inner, .menu-open) .search-form .inp-txt:hover {
	background: rgba(255, 255, 255, 0.2);
}

.first-screen {
	display: flex;
	align-items: center;
	margin: 0 0 60px;
	color: #fff;
	position: relative;
	height: 100dvh;
	min-height: 600px;
	background: url(../img/fs-bg.webp) center center/cover no-repeat;
	border-radius: 0 0 40px 40px;
	overflow: hidden;
	padding: 100px 0 0 0;
	background-color: #1C263C
}

.first-screen:before {
	left: calc(50% - 50px);
	max-height: calc(100% - 150px);
	content: '';
	width: 1320px;
	height: 720px;
	top: 50%;
	transform: translateY(-43%);
	right: 0;
	display: block;
	position: absolute;
	background: url(../img/fs-pattern.webp) center left/contain no-repeat;
}

.first-screen h1 {
	padding: 0;
	margin: 0 0 60px;
	font-weight: normal;
	font-size: 80px;
	line-height: 110%;
	letter-spacing: -2.5px;
}

.first-screen .txt.hidden {
	opacity: 0;
	visibility: hidden;
}

.first-screen .txt {
	max-width: 527px;
	transition: all 0.6s ease;
}

.first-screen .descr {
	color: rgba(255, 255, 255, 0.6);
	font-size: 28px;
	line-height: 129%;
;
	letter-spacing: -1px;
}

.first-screen .car {
	max-height: calc(100% - 150px);
	position: absolute;
	width: 50vw;
	height: 519px;
	background: url(../img/main-car.webp) center center/contain no-repeat;
	top: 50%;
	transform: translateY(-40%);
	right: 100vw;
	max-height: calc(100% - 350px);
	transition: right 1.5s ease-in, opacity 0.5s ease;
}

.first-screen .car.hidden {
	opacity: 0;
}

.first-screen .car.go {
	right: 52%;
}

.cat-tabs-content {
	padding-bottom: 50px;
}

.cat-tabs-content .cat-blocks {
	padding-bottom: 0;
}

.cat-blocks.tab {
	position: absolute;
	left: -999999px;
	top: -99999px;
	opacity: 0;
}

.cat-blocks.tab.active {
	opacity: 1;
	transition: opacity 0.3s ease;
	position: relative;
	top: auto;
	left: auto;
}

.cat-blocks {
	padding: 0 0 50px;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -30px 0 0;
	width: calc(100% + 30px);
}

.cat-blocks .cat-block {
	background: linear-gradient(152.64deg, #1C263C 8.23%, #4C67A2 91.77%);
	font-size: 28px;
	font-weight: 500;
	color: #fff;
	letter-spacing: -1px;
	padding: 30px;
	width: calc(100% / 3 - 30px);
	margin: 0 30px 30px 0;
	position: relative;
	display: block;
	text-decoration: none;
	height: 288px;
	border-radius: 20px;
}

.cat-blocks.owl-carousel .cat-block {
	width: 100%;
	margin: 0;
}

.cat-blocks.owl-carousel {
	margin: 0 0 30px;
	padding: 0;
	width: 100%;
	overflow: visible;
}

.cat-blocks.owl-carousel .owl-stage-outer {
	overflow: visible;
}

.cat-blocks.owl-carousel .owl-dots{
	display: none;
}

.cat-blocks.owl-carousel .owl-nav {
	position: absolute;
	top: -100px;
	right: 0;
}

.cat-blocks .cat-block span {
	position: relative;
	z-index: 2;
}

.cat-blocks .cat-block:not(.sub) span {
	transition: opacity 0.3s ease;
}

.cat-blocks .cat-block:not(.sub):hover span.more,
.cat-blocks .cat-block.active span.more {
	opacity: 0;
}

.cat-blocks .cat-block span.more {
	position: absolute;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.cat-blocks .cat-block span {
	position: relative;
	z-index: 5;
}

.cat-blocks .cat-block .bg {
	border-radius: 20px;
	background: #1C263C;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	transition: all 0.3s ease;
}

.cat-blocks .cat-block:hover .bg,
.cat-blocks .cat-block.active .bg {
	background: none;
}

.cat-blocks .cat-block .bg .pic {
	height: auto;
	padding: 65px 0 0 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: -30px;
	overflow: hidden;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.cat-blocks .cat-block .bg .pic img {
	transition: all 0.2s linear;
	width: auto;
	height: 206px;
}

.cat-blocks .cat-block:hover .bg .pic img,
.cat-blocks .cat-block.active .bg .pic img {
	transform: scale(1.22);
}

.cat-blocks .cat-block .bg:before {
	width: 70px;
	height: 30px;
	content: '';
	display: block;
	position: absolute;
	bottom: -30px;
	right: 0;
	background: #fff;
	z-index: 5;
}

.cat-blocks .cat-block .bg:after {
	width: 100%;
	top: 0;
	content: '';
	display: block;
	position: absolute;
	bottom: -0.5px;
	right: -1px;
	background: url(../img/prod-block-mask.png) bottom right/413px auto no-repeat;
}

.cat-blocks .cat-block .pic {
	transition: all 0.1s ease;
	position: absolute;
	display: block;
	height: 186px;
	bottom: 24px;
	right: 0;
}

.cat-blocks .cat-block .btn {
	padding: 0;
	width: 60px;
	height: 60px;
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 50%;
	transition: all 0.3s ease;
	background: #1D2939;
}

.cat-blocks .cat-block:hover .btn,
.cat-blocks .cat-block.active .btn {
	background: #BAE00B;
}

.cat-blocks .cat-block:hover .btn:after,
.cat-blocks .cat-block.active .btn:after {
	filter: none;
	transform: rotate(-45deg);
}

.cat-blocks .cat-block .btn:after {
	transition: all 0.3s ease;
	filter: grayscale(100%) brightness(800%);
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background: url(../img/go-arr.svg) center center/22px auto no-repeat;
}


.cat-blocks .cat-block.sub {
	height: auto;
	min-height: 288px;
	font-size: 18px;
	line-height: 130px;
	background: #1C263C;
	display: flex;
	flex-direction: column;
	padding: 0;
}

.cat-blocks .cat-block.sub .pic {
	border-radius: 20px 20px 0 0;
	overflow: hidden;
	position: relative;
	bottom: auto;
	right: auto;
	order: 1;
	height: 200px;
	background: white;
	border: 2px solid #e2e2e2;
	border-bottom: 0;
}

.cat-blocks .cat-block.sub .pic img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.cat-blocks .cat-block.sub .title {
	transition: all 0.3s ease;
	line-height: 130%;
	letter-spacing: 0;
	order: 2;
	padding: 22px 70px 22px 30px;
	align-items: center;
}

.cat-blocks .cat-block.sub .btn {
	width: 50px;
	height: 50px;
	background: #fff;
	bottom: 10px;
	right: 10px;
}

.cat-blocks .cat-block.sub .btn:after {
	filter: none;
	background-size: 20px auto;
}

.cat-blocks .cat-block.sub:hover .btn,
.cat-blocks .cat-block.sub:hover .btn:after {
	opacity: 0;
	transform: none;
}

.cat-blocks .cat-block.sub .ovlay {
	opacity: 0;
	transition: opacity 0.3s ease;
	font-size: 18px;
	color: #1C263C;
	font-weight: 500;
	border-radius: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	background: rgba(186, 224, 11, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.cat-blocks .cat-block.sub:hover .ovlay {
	opacity: 1;
}

.cat-blocks.parts .cat-block.sub .pic {
	background-color: #F2F2F2;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cat-blocks.parts .cat-block.sub .pic img {
	width: auto;
	height: auto;
	object-fit: unset;
	max-height: 170px;
	max-width: 280px;
}

.cat-blocks.parts .cat-block.sub {
	background: #F2F2F2;
}

.cat-blocks.parts .cat-block.sub .title {
	border-radius: 0 0 20px 20px;
	background: #1C263C;
}

.see-all {
	color: #1C263C;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	margin: 0 0 80px;
	line-height: 70px;
	text-align: center;
	display: block;
	background: #F2F2F2;
	border-radius: 10px;
}

.see-all:hover {
	background: #BAE00B;
}

.content h2.left {
	text-align: left;
}

.content h2 span {
	display: block;
	color: #BAE00B;
}

.content h2 {
	text-align: center;
	letter-spacing: -4px;
	font-size: 80px;
	line-height: 100%;
	color: #1C263C;
	margin: 0 0 40px;
	padding: 0;
	font-weight: normal;
}

.content h2.short {
	text-align: left;
	max-width: 600px;
}

.btn {
	display: table;
	position: relative;
	width: 100%;
	line-height: 70px;
	background: #1C263C;
	border-radius: 10px;
	padding: 0 70px 0 30px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
}

.btn .arr {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	right: 10px;
	border-radius: 50%;
	transition: all 0.3s ease;
	background: #fff;
}

.btn .arr:after {
	transition: all 0.3s ease;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background: url(../img/go-arr.svg) center center/16px auto no-repeat;
}

.btn:hover .arr:after {
	transform: rotate(-45deg);
}

.btn:hover .arr {
	background: #BAE00B;
}

.to-block {
	margin: 60px 0 80px 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background: #1C263C;
	border-radius: 20px;
	padding: 35px 0px 0 60px;
}

.to-block .txt {
	padding: 110px 50px;
	position: relative;
	height: 525px;
	background: url(../img/to-tablet.webp) bottom center/contain no-repeat;
	width: 460px;
}

.to-block .txt:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgba(28, 38, 60, 0.2);
}

.to-block .txt ul.standart li {
	padding-left: 40px;
}

.to-block .txt ul.standart li:before {
	width: 25px;
	height: 25px;
	background: #1C263C;
	border-width: 7px;
}

.to-block .txt ul.standart li+li {
	margin-top: 16px;
}

.to-block .txt .title {
	font-size: 34px;
	font-weight: 500;
	margin: 0 0 30px;
	line-height: 110%;
}

.to-block .txt .btn {
	display: table;
	width: 60px;
	height: 60px;
	background: none;
	margin: 0;
	position: absolute;
	right: 50px;
	bottom: 30px;
	padding: 0;
}

.to-block .txt .btn .arr {
	top: 0;
	right: 0;
	bottom: 0;
	margin-top: 0;
	width: 60px;
	height: 60px;
	background: #BAE00B;
}

.to-block .txt .btn:hover .arr {
	background: #1C263C;
}

.to-block .txt .btn:hover .arr:after {
	filter: grayscale(100%) brightness(800%);
}

.to-block .txt .btn .arr:after {
	background-size: 22px auto;
}

.to-block .txt .tab:not(.active) {
	position: absolute;
	left: -99999px;
	top: -99999px;
	opacity: 0;
}

.to-block .txt .tab {
	transition: opacity 0.3s ease;
}

.to-block .pic {
	width: 560px;
	position: relative;
	margin: 0 0 25px 95px;
}

.to-block .pic img {
	width: 100%;
	display: block;
}

.to-block .pic .plus {
	position: absolute;
	width: 70px;
	height: 70px;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.3s ease;
	transform: scale(0.75);
	opacity: 0.6;
	background: #BAE00B;
}

.to-block .pic .plus:after {
	transition: all 0.3s ease;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	background: url(../img/plus-ic.svg) center center no-repeat;
	filter: grayscale(100%) brightness(800%);
}

.to-block .pic .plus.active {
	opacity: 1;
	transform: none;
}

.to-block .pic .plus.active:after {
	filter: none;
}

.to-block .pic .plus.p1 {
	top: 235px;
	left: 124px;
}

.to-block .pic .plus.p2 {
	top: 350px;
	left: 216px;
}

.to-block .pic .plus.p3 {
	top: 265px;
	left: 310px;
}

.to-block .pic .plus.p4 {
	top: 355px;
	left: 386px;
}

.to-terms {
	display: flex;
	justify-content: space-between;
	margin: 60px 0 80px 0;
}

.to-terms .block {
	width: calc(100% / 3 - 20px);
	border-radius: 20px;
	background: #F2F2F2;
	padding: 30px;
}

.to-terms .block .title {
	font-size: 34px;
	line-height: 129%;
	font-weight: 500;
	margin: 0 0 30px;
}

.to-terms .block .subtitle {
	font-size: 24px;
	line-height: 129%;
	font-weight: 500;
	margin: 0 0 8px;
}

.to-terms .block p+.subtitle {
	margin-top: 24px;
}

.to-terms .block b {
	font-weight: 500;
}

.to-terms .block p+p {
	padding-top: 14px;
}

.to-terms .block .btn {
	margin-top: 55px;
	background: #BAE00B;
	color: #1C263C;
}

.to-terms .block .btn:hover .arr {
	background: #fff;
}

.to-terms .block .pdf-link {
	margin-top: 25px;
}

.pdf-link {
	display: table;
	position: relative;
	color: inherit;
	text-decoration: none;
	padding-left: 40px;
}

.pdf-link:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.3s ease;
	width: 26px;
	height: 26px;
	background: url(../img/pdf-ic.svg) center center no-repeat;
}

.pdf-link:after {
	opacity: 0;
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.3s ease;
	width: 26px;
	height: 26px;
	background: url(../img/pdf-g-ic.svg) center center no-repeat;
}

.pdf-link:hover:before {
	opacity: 0;
}

.pdf-link:hover:after {
	opacity: 1;
}

.pdf-link:hover {
	color: #BAE00B;
}

.garia-via {
	margin: 0 0 80px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.garia-via h2 {
	width: 100%;
}

.garia-via .video {
	display: block;
	width: calc(100% - 524px);
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.garia-via .video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.garia-via .video:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	background: rgba(28, 38, 60, 0.2);
}

.garia-via .video:after {
	transition: all 0.3s ease;
	content: '';
	width: 80px;
	height: 80px;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff url(../img/play-ic.svg) center left 53% no-repeat;
	border-radius: 50%;
}

.garia-via .video:hover:after {
	background-color: #BAE00B;
}

.garia-via .txt {
	color: #fff;
	font-size: 18px;
	line-height: 129%;
	font-weight: 500;
	width: 494px;
	font-weight: 500;
	border-radius: 20px;
	background: #1C263C;
	padding: 66px 60px;
}

.garia-via .txt ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.garia-via .txt ul li {
	position: relative;
	padding: 3px 0 3px 56px;
}

.garia-via .txt ul li:before {
	content: '';
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	box-sizing: border-box;
	border-radius: 50%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: 9px solid #BAE00B;
}

.garia-via .txt ul li+li {
	margin-top: 26px;
}

.tg-subs-block {
	margin: 0 0 80px;
	z-index: 2;
	font-size: 18px;
	color: rgba(0, 0, 0, 0.6);
	line-height: 129%;
	min-height: 552px;
	padding: 60px 60px 150px;
	border-radius: 20px;
	position: relative;
	background: url(../img/tg-woman.webp) bottom right/auto 100% no-repeat, url(../img/tg-rounds.svg) bottom right no-repeat;
	background-color: #BAE00B;
}

.tg-subs-block.man {
	background: url(../img/tg-rounds.svg) bottom right no-repeat;
	background-color: #BAE00B;
}

.tg-subs-block.man2 {
	background: url(../img/tg-man2.png) bottom right/auto 120% no-repeat, url(../img/tg-rounds.svg) bottom right no-repeat;
	background-color: #BAE00B;
}

.tg-subs-block.man:after {
	content: '';
	display: block;
	position: absolute;
	top: -25px;
	right: 0;
	bottom: 0;
	width: 555px;
	max-width: 50%;
	background: url(../img/tg-man.png) bottom center/contain no-repeat;
}

.tg-subs-block .man {
	display: none;
}

.tg-subs-block .txt {
	width: calc(100% - 400px);
}

.tg-subs-block h2 {
	text-align: left;
	margin: 0 0 24px;
}

.tg-subs-block .btns {
	width: 100%;
	max-width: 323px;
	position: absolute;
	left: 60px;
	bottom: 60px;
}

.tg-subs-block.girl .btns ,
.tg-subs-block.girl2 .btns ,
.tg-subs-block.man2 .btns {
	max-width: 463px;
}

.tg-subs-block .btns a+a {
	margin-top: 14px;
}

.tg-subs-block.girl:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	border-radius: 20px;
	background: url(../img/tg-girl.webp) bottom right 90px/auto 520px no-repeat, url(../img/tg-rounds.svg) bottom right no-repeat;
	background-color: #BAE00B;
}

.tg-subs-block.girl2:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	border-radius: 20px;
	background: url(../img/tg-girl2.webp) bottom right -180px/auto 740px no-repeat, url(../img/tg-rounds.svg) bottom right no-repeat;
	background-color: #BAE00B;
}

.tg-subs-block.man2:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	border-radius: 20px;
	background: url(../img/tg-man2.png) bottom right -120px/auto 680px no-repeat, url(../img/tg-rounds.svg) bottom right no-repeat;
	background-color: #BAE00B;
}

.tg-subs-block.girl:before,
.tg-subs-block.girl2:before,
.tg-subs-block.man2:before {
	width: 5000px;
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	height: 276px;
	background: #1C263C;
	z-index: -1;
	bottom: 0;
}

.tg-subs-block.girl .txt,
.tg-subs-block.girl2 .txt,
.tg-subs-block.man2 .txt {
	max-width: 453px;
	position: relative;
	z-index: 2;
}

.tg-subs-block.girl .btns,
.tg-subs-block.girl2 .btns,
.tg-subs-block.man2 .btns {
	z-index: 2;
}

.tg-subs-block.girl .btns .btn.tg,
.tg-subs-block.girl2 .btns .btn.tg,
.tg-subs-block.man2 .btns .btn.tg {
	background-image: url(../img/tg-white-ic.svg);
	background-position: center left 30px;
	background-repeat: no-repeat;
}

.tg-subs-block.girl .btns .btn.wa,
.tg-subs-block.girl2 .btns .btn.wa,
.tg-subs-block.man2 .btns .btn.wa {
	background-image: url(../img/wa-white-ic.svg);
	background-position: center left 30px;
	background-repeat: no-repeat;
}

.tg-subs-block.girl .btns .btn ,
.tg-subs-block.girl2 .btns .btn ,
.tg-subs-block.man2 .btns .btn {
	padding-left: 64px;
}


.tg-subs-block.connect {
	background: url(../img/iphone-bg.webp) bottom right 100px/479px auto no-repeat, url(../img/tg-rounds1.svg) bottom right no-repeat;
	background-color: #BAE00B;
}

.tg-subs-block.connect .txt {
	max-width: 453px;
}

.tg-subs-block.connect.tg-only .txt {
	max-width: 567px;
}

.tg-subs-block.connect .btns {
	max-width: 463px;
}

.tg-subs-block.connect .btns .btn {
	padding-left: 64px;
}

.tg-subs-block.connect .btns .btn.tg {
	background-image: url(../img/tg-white-ic.svg);
	background-position: center left 30px;
	background-repeat: no-repeat;
}

.tg-subs-block.connect .btns .btn.wa {
	background-image: url(../img/wa-white-ic.svg);
	background-position: center left 30px;
	background-repeat: no-repeat;
}

.tg-subs-block.space {
	color: rgba(255, 255, 255, 0.6);
	background: #1C263C url(../img/connect-planet.webp) bottom center/cover no-repeat;
	margin: 0 0 120px;
}

.tg-subs-block.space:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	top: -10px;
	right: 80px;
	width: 582px;
	background: url(../img/connect-space-bg.webp) center center/contain no-repeat;
}

.tg-subs-block.space .txt {
	max-width: 453px;
	position: relative;
	z-index: 2;
}

.tg-subs-block.space .btns {
	z-index: 2;
	max-width: 463px;
}

.tg-subs-block.space .btns .btn.tg {
	background-image: url(../img/tg-ic.svg);
	background-position: center left 30px;
	background-repeat: no-repeat;
}

.tg-subs-block.space .btns .btn.wa {
	background-image: url(../img/wa-ic.svg);
	background-position: center left 30px;
	background-repeat: no-repeat;
}

.tg-subs-block.space .btns .btn {
	color: #1C263C;
	background: #fff;
	padding-left: 64px;
}

.tg-subs-block.space .btns .btn .arr:after {
	filter: grayscale(100%) brightness(800%);
}

.tg-subs-block.space .btns .btn .arr {
	background: #1C263C;
}

.tg-subs-block.space .btns .btn:hover {
	background-color: #BAE00B;
}

.tg-subs-block.space h2 {
	color: #fff;
}


.service .darkblue-bg .regulations-block h2 {
	text-align: left;
	font-size: 44px;
	margin: 0 0 40px;
	line-height: 110%;
	letter-spacing: 0;
	max-width: 700px;
}

.regulations-block .spoiler-block {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.regulations-block .spoiler-block .title:after {
	filter: grayscale(100%) brightness(800%);
}

.regulations-block .spoiler-block a.pdf-link+a.pdf-link {
	margin-top: 24px;
}

.regulations-block .spoiler-block a.pdf-link:before {
	filter: grayscale(100%) brightness(800%);
}

.regulations-block .spoiler-block+.spoiler-block {
	margin-top: 40px;
}

.regulations-block .text-descr {
	margin: 0 0 40px;
	color: #fff;
	display: none;
}

.repair-warranty-block {
	padding: 0 0 20px;
	display: flex;
	justify-content: space-between;
}

.repair-warranty-block .block {
	font-size: 16px;
	line-height: 129%;
	color: rgba(255, 255, 255, 0.6);
	width: calc(100% / 3 - 20px);
}

.repair-warranty-block .block .pic {
	border-radius: 20px;
	background: center center/cover no-repeat;
	margin: 0 0 14px;
}

.repair-warranty-block .block .pic:before {
	content: '';
	display: block;
	padding-top: 60%;
}

.repair-warranty-block .block p+p {
	padding-top: 8px;
}

.repair-warranty-block .block .title {
	font-size: 32px;
	line-height: 129%;
	margin: 0 0 24px;
	font-weight: 500;
	color: #fff;
}


.darkblue-bg {
	position: relative;
	margin: 0 0 80px;
}

.darkblue-bg>* {
	position: relative;
}

.darkblue-bg:before {
	content: '';
	width: 5000px;
	display: block;
	position: absolute;
	top: -376px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: #1C263C;
}

.service .darkblue-bg:before {
	top: 0;
	bottom: -400px;
}

.service .darkblue-bg {
	padding-top: 60px;
}

.darkblue-bg h2 {
	color: #fff;
}

.service .darkblue-bg h2 {
	display: table;
	max-width: 700px;
	margin: 0 auto 10px;
}

.darkblue-bg .small-title {
	text-align: center;
	font-size: 28px;
	line-height: 129%;
	margin: 0 0 50px;
	color: #fff;
}

.darkblue-bg .subtitle {
	display: table;
	margin: 0 auto 40px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	line-height: 51px;
	border-radius: 10px;
	color: #fff;
	font-size: 18px;
}

.darkblue-bg .tg-subs-block {
	margin: 0;
}

.darkblue-bg .tg-subs-block h2 {
	color: #1C263C;
}

.services-block {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -30px 0 0;
	width: calc(100% + 30px);
	padding: 20px 0 50px 0;
}

.services-block .serv-item {
	font-size: 16px;
	line-height: 129%;
	color: rgba(255, 255, 255, 0.6);
	display: block;
	text-decoration: none;
	margin: 0 30px 30px 0;
	width: calc(100% / 3 - 30px);
}

.services-block .serv-item .pic {
	border-radius: 20px;
	overflow: hidden;
	height: 280px;
	position: relative;
	margin: 0 0 20px;
}

.services-block .serv-item .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services-block .serv-item .inf {
	padding: 30px 30px 130px;
	position: relative;
	min-height: calc(100% - 300px);
	border-radius: 20px;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.services-block .serv-item .title {
	font-size: 32px;
	font-weight: 500;
	margin: 0 0 24px;
	line-height: 129%;
	color: #fff;
}

.services-block .serv-item .btn {
	position: absolute;
	bottom: 30px;
	left: 30px;
	width: calc(100% - 60px);
	background: rgba(255, 255, 255, 0.2);
}

.services-block .serv-item:hover .btn .arr:after {
	filter: none;
}

.services-block .serv-item:hover .btn .arr {
	background: #fff;
}

footer {
	position: relative;
	color: #fff;
	font-size: 18px;
	line-height: 129%;
	padding: 80px 0 40px;
	background: #1C263C;
}

@media all and (min-width: 701px) {
	footer.inner:not(.no-bg):before {
		position: absolute;
		content: '';
		top: -276px;
		left: 0;
		width: 100%;
		height: 276px;
		background: #1C263C;
	}
}


footer:not(.inner):before {
	content: '';
	display: block;
	position: absolute;
	top: -276px;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #1C263C url(../img/fs-bg.webp) center center/cover no-repeat;
}

footer .cols {
	margin: 0 0 100px;
	display: flex;
}

footer .cols .left {
	width: 442px;
}

footer .cols .right {
	padding: 0 85px 0 0;
	width: calc(100% - 442px);
	display: flex;
	justify-content: space-between;
}

footer .logo {
	max-width: 200px;
}

footer .title {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.3);
}

footer nav ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

footer nav ul li {
	padding: 8.5px 0;
}

footer a {
	text-decoration: none;
	color: #fff;
}

footer a:hover {
	color: #BAE00B;
}

footer p {
	padding: 8.5px 0;
}

footer .cols.bottom {
	align-items: center;
	font-size: 16px;
	line-height: 129%;
	color: rgba(255, 255, 255, 0.3);
	margin: 0;
}

footer .cols.bottom .right {
	padding: 0;
}

footer .cols.bottom a {
	color: inherit;
}

footer .cols.bottom a:hover {
	color: #fff;
}

footer .soc {
	display: flex;
	flex-wrap: wrap;
}

footer .soc a {
	width: 50px;
	height: 50px;
	display: flex;
	margin: 0 10px 0 0;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #BAE00B;
}

footer .soc a img {
	display: block;
	max-height: 14px;
}

footer .soc a:hover {
	background: #fff;
}

footer .soc a sup {
	position: absolute;
	display: block;
	top: 9px;
	right: 14px;
	font-size: 10px;
	color: #1C263C;
}

footer.inner {
	margin-top: -80px;
}

.up-btn {
	#BAE00B00;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	position: fixed;
	bottom: 55px;
	right: 55px;
	z-index: 10;
	border: 1px solid #1C263C1A;
	transition: all 0.3s ease;
	cursor: pointer;
	width: 80px;
	height: 80px;
	border-radius: 50%;
}

.up-btn.visible {
	opacity: 1;
	visibility: visible;
}

.up-btn:before {
	transition: all 0.3s ease;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	backdrop-filter: blur(60px);
	background: #1C263C1A;
}

.up-btn:after {
	transition: all 0.3s ease;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	background: url(../img/up-arr.svg) center center no-repeat;
}

.up-btn:hover:after {
	background-color: #BAE00B;
}


.content {
	font-size: 18px;
	line-height: 129%;
	color: #1C263C;
}

.inner-content {
	position: relative;
	padding: 170px 0 0px;
	font-size: 18px;
	line-height: 129%;
	color: #1C263C;
}

.inner-content h1 {
	letter-spacing: -2px;
	font-size: 80px;
	line-height: 90%;
	margin: 0 0 40px;
	padding: 0;
	font-weight: normal;
}

.inner-content h1 span {
	color: #BAE00B;
}

.inner-content h1.small {
	font-size: 60px;
	max-width: 700px;
	line-height: 110%;
}

.filter-tags {
	padding: 0 0 46px;
	display: flex;
	flex-wrap: wrap;
	margin: 0px -24px 0 0;
	width: calc(100% + 24px);
}

.filter-tags .tag {
	background: rgba(28, 38, 60, 0.02);
	border: 1px solid rgba(0, 0, 0, 0.2);
	padding: 0 46px 0 16px;
	font-size: 18px;
	border-radius: 10px;
	font-weight: 500;
	color: #1C263C;
	transition: all 0.3s ease;
	display: table;
	position: relative;
	line-height: 53px;
	margin: 0 24px 24px 0;
}

.filter-tags .tag .remove {
	display: block;
	cursor: pointer;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	margin-top: -8px;
	right: 16px;
	background: url(../img/tag-remove-ic.svg) center center no-repeat;
}

.catalog-page {
	display: flex;
	position: relative;
	padding: 30px 0 0 0;
}

.catalog-page .filter-btn {
	display: none;
}

.catalog-page .filter-col {
	width: 303px;
	margin: 0 60px 60px 0;
	position: relative;
}

.catalog-page .filter-col .filter-tags {
	display: none;
}

.catalog-page .filter-col .mob-title,
.catalog-page .filter-col .close {
	display: none;
}

.catalog-page .filter-col .block {
	margin: 0 0 20px;
}

.catalog-page .filter-col .block .title {
	position: relative;
	cursor: pointer;
	line-height: 65px;
	border-radius: 10px;
	background: #1C263C;
	padding: 0 30px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}

.catalog-page .filter-col .block .title:after {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 30px;
	top: 50%;
	margin-top: -12px;
	transition: all 0.3s ease;
	background: url(../img/filter-arr.svg) center center no-repeat;
}

.catalog-page .filter-col .block.open .title:after {
	transform: scale(1, -1);
}

.catalog-page .filter-col .block .hidden-content {
	margin: 30px 0 30px 0;
	display: none;
}

.catalog-page .filter-col .block .values {
	margin: 20px 0 0 0;
	font-size: 18px;
	color: #1C263C;
	display: flex;
	justify-content: space-between;
}

.catalog-page .filter-col .block .values .bl {
	display: flex;
}

.catalog-page .filter-col .block .values .bl div {
	margin-right: 8px;
}

.catalog-page .filter-col .ui-widget.ui-widget-content {
	height: 2px;
	background: #1C263C4D;
	border: 0;
}

.catalog-page .filter-col .ui-slider-horizontal .ui-slider-range {
	background: #1C263C;
}

.catalog-page .filter-col .ui-state-default {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	cursor: pointer;
	border: 1px solid #1C263C;
	background: #fff;
	top: -9px;
}

.catalog-page .filter-col .ui-state-default:after {
	border-radius: 50%;
	background: #1C263C;
	border: 6px solid #BAE00B;
	opacity: 0;
	transition: opacity 0.3s ease;
	content: '';
	display: block;
	position: absolute;
	top: -1px;
	left: -1px;
	bottom: -1px;
	width: calc(100% + 2px);
	bborder-radius: 50%;
	box-sizing: border-box;
}

.catalog-page .filter-col .ui-state-default.ui-state-active:after,
.catalog-page .filter-col .ui-state-default.ui-state-hover:after {
	opacity: 1;
}

.catalog-page .filter-col #slider {
	width: calc(100% - 18px);
	margin: 0 9px;
}

.catalog-page .filter-col .inputs {
	padding: 0 10px;
}

.catalog-page .filter-col .inputs.columns {
	columns: 2;
}

.catalog-page .filter-col .inputs.columns label {
	break-inside: avoid;
}

.catalog-page .filter-col .inputs label {
	position: relative;
	cursor: pointer;
	line-height: 24px;
	display: block;
	padding: 0 0 0 40px;
	font-size: 18px;
	color: #1C263C;
}

.catalog-page .filter-col .inputs label input {
	cursor: pointer;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
}

.catalog-page .filter-col .inputs label .i {
	transition: all 0.3s ease;
	display: block;
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	top: 1px;
	left: 0;
	border: 1px solid #1C263C;
}

.catalog-page .filter-col .inputs label .i:after {
	border-radius: 50%;
	background: #1C263C;
	border: 6px solid #BAE00B;
	opacity: 0;
	transition: opacity 0.3s ease;
	content: '';
	display: block;
	position: absolute;
	top: -1px;
	left: -1px;
	bottom: -1px;
	width: calc(100% + 2px);
	bborder-radius: 50%;
	box-sizing: border-box;
}

.catalog-page .filter-col .inputs label input:checked+.i:after {
	opacity: 1;
}

.catalog-page .filter-col .inputs label input:checked+.i {
	border-color: transparent;
}

.catalog-page .filter-col .inputs label+label {
	margin-top: 10px;
}

.catalog-page .filter-col .btn.reset-filter {
	padding: 0;
	text-align: center;
	background: #BAE00B;
	color: #1C263C;
	transition: all 0.3s ease;
	cursor: pointer;
}

.catalog-page .filter-col .btn.reset-filter:hover {
	background: #1C263C;
	color: #fff;
}

.catalog-page .right-content {
	width: calc(100% - 363px);
	margin: 0 0 60px;
}

.categories-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.categories-list .block {
	overflow: hidden;
	color: #1C263C;
	font-size: 24px;
	line-height: 129%;
	margin: 0 0 30px;
	display: flex;
	align-items: flex-end;
	padding: 30px;
	text-decoration: none;
	width: calc(50% - 15px);
	height: 266px;
	border-radius: 20px;
	position: relative;
}

.categories-list.owl-carousel .block {
	margin: 0;
	width: 100%;
}

.categories-list .block:before {
	border: 1px solid #C8CFDE;
	box-sizing: border-box;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	background: linear-gradient(113.33deg, #EAEFF8 9.63%, #002A87 276.68%);
	transition: opacity 0.3s ease;
	border-radius: 20px;
}

.categories-list .block.green:before {
	border: 1px solid #EFF7C6;
	background: linear-gradient(112.34deg, #F4FADA 21.64%, rgba(186, 224, 11, 0.6) 103.36%, #95B309 162.85%);
}

.categories-list .block.beige:before {
	border: 1px solid #F3E9D0;
	background: linear-gradient(112.38deg, #FFF7E6 31.75%, #875C00 225.12%);
}

.categories-list .block.grey:before {
	border: 1px solid #D7D8DA;
	background: linear-gradient(112.34deg, rgba(236, 236, 236, 0.8) 21.64%, rgba(222, 222, 222, 0.9) 162.85%);
}

.categories-list .block.pink:before {
	border: 1px solid #FFDDDD;
	background: linear-gradient(293.65deg, #FEC6C6, #FFF2F2);
}

.categories-list a.block:hover:before {
	opacity: 0;
}

.categories-list .block .t {
	max-width: 252px;
	position: relative;
}

.categories-list .block .price {
	letter-spacing: -1px;
	line-height: 110%;
	font-size: 34px;
	font-weight: 500;
	margin: 10px 0 0 0;
}

.categories-list .block .labels {
	position: absolute;
	top: 30px;
	left: 30px;
	display: flex;
}

.categories-list .block .labels .label {
	display: table;
	padding: 0 14px;
	line-height: 41px;
	border-radius: 10px;
	border: 1px solid rgba(28, 38, 60, 0.2);
	background: rgba(255, 255, 255, 0.6);
	color: #1C263C;
	font-size: 18px;
	font-weight: 500;
}

.categories-list .block .labels .label+.label {
	margin: 0 0 0 8px;
}

.categories-list .block .pic {
	position: absolute;
	height: 238px;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

.categories-list .block .pic img {
	display: block;
	max-height: 100%;
	width: auto;
}

.categories-list .block .ovlay {
	opacity: 0;
	transition: opacity 0.3s ease;
	font-size: 18px;
	color: #1C263C;
	font-weight: 500;
	border-radius: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	background: rgba(186, 224, 11, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.categories-list .block:hover .ovlay {
	opacity: 1;
}

.categories-list.owl-carousel {
	margin-bottom: 40px;
	margin-top: 60px;
	max-width: 938px;
	overflow: visible;
}

.categories-list.owl-carousel .owl-stage-outer {
	overflow: visible;
}

.categories-list.owl-carousel .owl-nav {
	justify-content: flex-end;
	width: 1300px;
	position: absolute;
	display: flex;
	top: -162px;
	left: 0;
}

.categories-list.owl-carousel .owl-dots {
	display: none;
}

body .owl-carousel .owl-nav button.owl-prev {
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #1C263C;
}

body .owl-carousel .owl-nav button.owl-next {
	position: relative;
	margin: 0 0 0 10px;
	transform: scale(-1, 1);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #1C263C;
}

body .owl-carousel .owl-nav button.owl-next:not(.disabled):hover:after,
body .owl-carousel .owl-nav button.owl-prev:not(.disabled):hover:after {
	filter: none;
}

body .owl-carousel .owl-nav button.owl-next.disabled,
body .owl-carousel .owl-nav button.owl-prev.disabled {
	cursor: default;
}

body .owl-carousel .owl-nav button.owl-next:after,
body .owl-carousel .owl-nav button.owl-prev:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	background: url(../img/slider-arr.svg) center center no-repeat;
	filter: grayscale(100%) brightness(800%);
	transition: all 0.15s ease;
}

.projects-list.owl-carousel {
	margin: 60px 0 40px 0;
}

.projects-list.owl-carousel .owl-dots {
	display: none;
}

.projects-list.owl-carousel .owl-nav {
	justify-content: flex-end;
	position: absolute;
	display: flex;
	top: -120px;
	right: 0;
}

.projects-list.owl-carousel .proj-block {
	width: 100%;
}

.projects-list .proj-block {
	letter-spacing: -0.5px;
	font-size: 18px;
	line-height: 129%;
	color: rgba(28, 38, 60, 0.6);
	display: block;
	text-decoration: none;
}

.projects-list .proj-block .pic {
	width: 100%;
	background: center center/cover no-repeat;
	border-radius: 20px;
	margin: 0 0 14px;
}

.projects-list .proj-block .pic:before {
	padding-top: 70%;
	content: '';
	display: block;
}

.projects-list .proj-block .inf {
	padding: 0 10px;
}

.projects-list .proj-block .inf .title {
	letter-spacing: -1px;
	font-size: 34px;
	line-height: 129%;
	color: #1C263C;
	text-transform: uppercase;
	font-weight: 500;
	margin: 0 0 12px;
}

.inner-content .no-search-results {
	opacity: 0;
}

.no-search-results {
	margin: 0 0 80px;
	font-size: 24px;
	color: #fff;
	line-height: 129%;
	transition: opacity 0.3s ease;
	opacity: 1;
	position: relative;
	padding: 160px 0 410px;
	text-align: center;
}

.no-search-results:before {
	content: '';
	display: block;
	position: absolute;
	top: -500px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	background: #1C263C;
}

.no-search-results>* {
	position: relative;
}

.no-search-results .btn {
	max-width: 533px;
	margin: 24px auto 0;
	color: #1C263C;
	background: #BAE00B;
	text-align: left;
}

.no-search-results .btn:hover {
	background: #fff;
}

.no-search-results .btn:hover .arr {
	background: #1C263C;
}

.no-search-results .btn:hover .arr:after {
	filter: grayscale(100%) brightness(900%);
}

.no-search-results .pics {
	width: calc(100vw + 100px);
	overflow: hidden;
	display: flex;
	justify-content: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	align-items: flex-end;
}

.no-search-results .pics .pic {
	transform: translateY(100%);
	height: 420px;
	transition: all 0.6s ease;
	transition-delay: 0.2s;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
	width: 20%;
	margin: 0 10px;
}

.no-search-results .pics .pic:nth-child(2),
.no-search-results .pics .pic:nth-child(4) {
	height: 320px;
	transition-delay: 0.1s;
}

.no-search-results .pics .pic:nth-child(3) {
	height: 240px;
	transition-delay: 0s;
}

.no-search-results .pics .pic img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.no-search-results.open-blocks .pics .pic {
	transform: none;
}

.no-search-results h1 {
	line-height: 110%;
	font-size: 60px;
	color: #fff;
	font-weight: normal;
	max-width: 650px;
	margin: 0 auto 60px;
	padding: 0;
	display: table;
	letter-spacing: -2px;
}

.no-search-results.p404 h1 {
	display: table;
	font-size: 160px;
	line-height: 80%;
	color: #BAE00B;
	margin-bottom: 40px;
}

.no-search-results.p404 .in {
	max-width: 514px;
	margin-left: auto;
	margin-right: auto;
}

.no-search-results.p404 .btns {
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
}

.no-search-results.p404 .btns .btn {
	margin: 0;
	width: calc(50% - 10px);
}

.no-search-results.p404 .btns .btn.opacity {
	padding: 0;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	text-align: center;
}

.no-search-results.p404 .btns .btn.opacity:hover {
	background: #fff;
	color: #1C263C;
}


ul.breadcrumbs {
	list-style-type: none;
	font-size: 18px;
	line-height: 130%;
	color: rgba(255, 255, 255, 0.3);
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 0 60px;
}

ul.breadcrumbs li:not(:last-child) {
	margin: 0 24px 0 0;
	position: relative;
}

ul.breadcrumbs a {
	color: #fff;
	text-decoration: none;
}

ul.breadcrumbs li:not(:last-child):after {
	content: '';
	display: block;
	position: absolute;
	top: 9px;
	left: calc(100% + 10px);
	width: 6px;
	height: 6px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
}




.product-page {
	margin: 0 0 80px;
}

.inner-content .prod-first-screen {
	opacity: 0;
}

.prod-first-screen {
	max-height: 1080px;
	min-height: 630px;
	display: flex;
	align-items: center;
	margin: 0 0 80px;
	font-size: 24px;
	color: #fff;
	line-height: 129%;
	transition: opacity 0.3s ease;
	opacity: 1;
	position: relative;
	height: 100dvh;
	padding: 80px 0 0 0;
}

.prod-first-screen:before {
	border-radius: 0 0 40px 40px;
	content: '';
	display: block;
	position: absolute;
	top: -500px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	background: #1C263C;
}

.prod-first-screen .bg {
	border-radius: 0 0 40px 40px;
	content: '';
	display: block;
	position: absolute;
	top: -100px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	background: #1C263C bottom right/auto 90% no-repeat;
}

.prod-first-screen>* {
	position: relative;
}

.prod-first-screen .inf {
	min-height: 540px;
	display: flex;
	flex-direction: column;
	padding: 0 40px 0 0;
	width: 50%;
}

.prod-first-screen .inf h2 {
	text-align: left;
	font-size: 24px;
	line-height: 129%;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.3);
	margin: 0 0 14px;
	padding: 0;
	letter-spacing: 0;
}

.prod-first-screen .inf h1 {
	letter-spacing: -3px;
	font-size: 80px;
	color: #fff;
	line-height: 90%;
	margin: 0 0 24px;
	padding: 0;
	font-weight: normal;
}

.prod-first-screen .inf h1 span {
	color: #BAE00B;
}

.prod-first-screen .inf .price {
	font-size: 60px;
	line-height: 100%;
	color: #fff;
}

.prod-first-screen .inf .bottom {
	color: #fff;
	font-size: 18px;
	line-height: 129%;
	margin-top: auto;
}

.prod-first-screen .inf .bottom ul {
	max-width: 490px;
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 36px;
	margin: 0 -24px 0 0;
	list-style-type: none;
}

.prod-first-screen .inf .bottom ul li {
	position: relative;
	padding: 0 0 0 19px;
	margin: 0 24px 24px 0;
}

.prod-first-screen .inf .bottom ul li:before {
	width: 9px;
	height: 9px;
	background: #BAE00B;
	border-radius: 50%;
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 0;
}

.prod-first-screen .inf .bottom .btn {
	max-width: 323px;
	0;
	color: #1C263C;
	background: #BAE00B;
	text-align: left;
}

.prod-first-screen .inf .bottom .btn .arr {
	background: #1C263C;
}

.prod-first-screen .inf .bottom .btn .arr:after {
	filter: grayscale(100%) brightness(900%);
}

.prod-first-screen .inf .top ul {
	padding: 30px 0 0 0;
	margin: 0;
	list-style-type: none;
}

.prod-first-screen .inf .top ul li {
	position: relative;
	padding: 0 0 0 19px;
	margin: 0 0px 24px 0;
}

.prod-first-screen .inf .top ul li:before {
	width: 9px;
	height: 9px;
	background: #BAE00B;
	border-radius: 50%;
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	left: 0;
}


.prod-first-screen .pic {
	min-height: 400px;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.prod-first-screen .pic.bg {
	display: none;
}

.prod-first-screen .pic img {
	max-height: calc(100dvh - 120px);
	max-width: 100%;
}

.detail .prod-first-screen {
	padding: 40px 0 80px;
	align-items: stretch;
	height: auto;
	min-height: 100%;
}

.detail .prod-first-screen .inf {
	width: 100%;
	max-width: 100%;
}

.detail .prod-first-screen .inf>*:not(.breadcrumbs) {
	max-width: calc(100% - 650px);
}

.detail .prod-first-screen .inf h1 small {
	display: block;
	font-size: 24px;
	line-height: 100%;
	margin: 0 0 14px;
	letter-spacing: 0;
}

.detail .prod-first-screen .inf h1 {
	font-size: 60px;
	line-height: 100%;
	margin: 0 0 60px;
}

.detail .prod-first-screen .pic {
	position: absolute;
	min-width: 650px;
	right: 0;
	top: 50%;
	transform: translateY(calc(-50% + 20px));
	height: calc(100% - 150px);
}

.detail .prod-first-screen .inf ul.chars {
	font-size: 18px;
	line-height: 130%;
	max-width: 490px;
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 36px;
	margin: 0 -24px 0 0;
	list-style-type: none;
}

.detail .prod-first-screen .inf ul.chars li {
	position: relative;
	padding: 0 0 0 19px;
	margin: 0 16px 16px 0;
}

.detail .prod-first-screen .inf ul.chars li:before {
	width: 9px;
	height: 9px;
	background: #BAE00B;
	border-radius: 50%;
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 0;
}

.detail .prod-first-screen .inf .btn {
	margin: 24px 0 0 0;
	max-width: 323px;
	0;
	color: #1C263C;
	background: #BAE00B;
	text-align: left;
}

.detail .prod-first-screen .inf .btn .arr {
	background: #1C263C;
}

.detail .prod-first-screen .inf .btn .arr:after {
	filter: grayscale(100%) brightness(900%);
}

.detail .prod-first-screen .inf .price {
	margin-top: 10%;
}

.detail .prod-first-screen .pic img {
	min-height: 475px;
}

.service .prod-first-screen .in {
	width: 100%;
	display: flex;
}

.service .prod-first-screen .inf h1 {
	margin: 0 0 30px;
	font-size: 80px;
	line-height: 100%;
	letter-spacing: -2px;
}

.service .prod-first-screen .inf .price {
	font-size: 44px;
	line-height: 90%;
	font-weight: 500;
	letter-spacing: -1px;
	color: rgba(255, 255, 255, 0.6);
}

.service .prod-first-screen .btns {
	max-width: 542px;
	display: flex;
	justify-content: space-between;
}

.service .prod-first-screen .inf .bottom .btns .btn {
	width: calc(50% - 7px);
}

.service .prod-first-screen .inf .bottom>.btn {
	max-width: 422px;
}

.service .prod-first-screen .inf .bottom .btn .arr {
	background: #fff;
}

.service .prod-first-screen .inf .bottom .btn:not(:hover) .arr:after {
	filter: none;
}

.service .prod-first-screen .inf .bottom .btn:hover .arr {
	background: #231F20;
}

.service .prod-first-screen .inf .bottom .btn:hover {
	background: #fff;
}

.service .prod-first-screen .inf .bottom .btn.opacity {
	padding: 0;
	text-align: center;
	color: #fff;
	background: rgba(255, 255, 255, 0.2);
}

.service .prod-first-screen .inf .bottom .btn.opacity:hover {
	background: #fff;
	color: #231F20;
}

.service .prod-first-screen .pic {
	border-radius: 20px;
	overflow: hidden;
}

.service .prod-first-screen .pic img {
	width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: cover;
}

.gallery-and-chars {
	margin: 0 0 80px;
	display: flex;
	align-items: stretch;
}

.gallery-and-chars .gallery {
	width: calc(100% - 524px);
	border-radius: 10px;
	overflow: hidden;
}

.gallery-and-chars .gallery .item {
	display: block;
	height: 460px;
	background: center center/cover no-repeat;
}

.gallery-and-chars .gallery .item:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0) 32.89%);
}

.gallery-and-chars .gallery .owl-carousel .owl-nav button.owl-prev,
.gallery-and-chars .gallery .owl-carousel .owl-nav button.owl-next {
	transition: all 0.1s ease;
	filter: grayscale(100%) brightness(800%);
	width: 60px;
	height: 60px;
	left: 20px;
	position: absolute;
	cursor: pointer;
	background: url(../img/aliser-g-arr.svg) center center no-repeat;
	border-radius: 0;
	top: 50%;
	margin-top: -30px;
}

.gallery-and-chars .gallery .owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 20px;
}

.gallery-and-chars .gallery .owl-carousel .owl-nav button.owl-prev:hover,
.gallery-and-chars .gallery .owl-carousel .owl-nav button.owl-next:hover {
	filter: none;
}

.gallery-and-chars .gallery .owl-carousel .owl-nav button.owl-prev:after,
.gallery-and-chars .gallery .owl-carousel .owl-nav button.owl-next:after {
	display: none
}

.gallery-and-chars .gallery .owl-carousel .owl-dots {
	position: absolute;
	display: flex;
	left: 0;
	width: 100%;
	justify-content: center;
	bottom: 30px;
}

.gallery-and-chars .gallery .owl-carousel .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	margin: 0 5px;
}

.gallery-and-chars .gallery .owl-carousel .owl-dots .owl-dot.active {
	background: #fff;
}

.gallery-and-chars .chars {
	justify-content: space-between;
	display: flex;
	flex-wrap: wrap;
	width: 494px;
	margin: 0 0 -20px 30px;
}

.gallery-and-chars .chars .block {
	margin: 0 0 20px;
	font-size: 18px;
	line-height: 129%;
	color: rgba(28, 38, 60, 0.6);
	padding: 20px 30px;
	width: calc(50% - 10px);
	height: 220px;
	border-radius: 10px;
	background: #BAE00B;
	display: flex;
	align-items: center;
}

.gallery-and-chars .chars .block:first-child {
	width: 100%;
}

.gallery-and-chars .chars .block small {
	font: inherit;
}

.gallery-and-chars .chars .block .t {
	font-size: 44px;
	color: #1C263C;
	line-height: 110%;
	font-weight: 500;
	margin: 14px 0 0 0;
}

.gallery-and-chars .chars .block .t img {
	display: block;
}

.product-page:not(.service) h2 {
	text-align: left;
	font-size: 44px;
	margin: 0 0 60px;
	line-height: 110%;
	letter-spacing: -1px;
	font-weight: 500;
}

.product-page .tabs-block {
	margin: 0 0 0px;
}

.product-page .tabs-block .tabs {
	padding: 0;
	margin: 0 0 30px;
	list-style-type: none;
	display: flex;
}

.product-page .tabs-block .tabs li {
	width: 50%;
}

.product-page .tabs-block .tabs li a {
	font-size: 18px;
	color: #1C263C;
	text-align: center;
	line-height: 70px;
	background: #F2F2F2;
	display: block;
	text-decoration: none;
}

.product-page .tabs-block .tabs li.active a {
	background: #1C263C;
	color: #fff;
}

.product-page .tabs-block .tabs li:first-child a {
	border-radius: 10px 0 0 10px;
}

.product-page .tabs-block .tabs li:last-child a {
	border-radius: 0 10px 10px 0;
}

.product-page .tabs-block .tabs-content .tab:not(.active) {
	position: absolute;
	top: -99999px;
	left: -99999px;
	opacity: 0;
}

.product-page .tabs-block .tabs-content .tab {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	transition: opacity 0.3s ease;
}

.product-page .categories-list.owl-carousel .owl-nav {
	display: none;
}

.features-block {
	width: 100%;
	margin: 0 0 30px;
	display: flex;
	justify-content: space-between;
	min-height: 425px;
}

.features-block.short {
	width: calc(50% - 15px);
}

.features-block.short .txt {
	width: 100%;
	align-items: flex-start;
}

.features-block:nth-child(even) .txt {
	order: 2;
}

.features-block .txt {
	font-size: 18px;
	line-height: 129%;
	color: #1C263C;
	width: calc(50% - 15px);
	border-radius: 10px;
	background: #F2F2F2;
	padding: 40px 60px;
	display: flex;
	align-items: center;
}

.features-block .txt h3 {
	font-size: 44px;
	margin: 0 0 24px;
	padding: 0;
	font-weight: 500;
	line-height: 110%;
}

.features-block .txt p+p {
	padding-top: 10px;
}

.features-block .txt img {
	display: block;
	margin: 0 0 40px;
}

.features-block .txt img:last-block {
	margin: 0;
}

.features-block .txt .colors {
	margin: 24px 0 0 0;
}

.features-block .txt .colors .title {
	color: rgba(28, 38, 60, 0.6);
	font-size: 14px;
	line-height: 129%;
	margin: 0 0 10px;
}

.features-block .txt .colors .list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px -8px 0;
	width: calc(100% + 8px);
}

.features-block .txt .colors .list .bl {
	position: relative;
	cursor: pointer;
	background: center center/contain no-repeat;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	margin: 0 8px 8px 0;
}

.features-block .txt .colors .list .bl:after {
	content: '';
	display: block;
	position: absolute;
	width: 22px;
	height: 22px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 3px solid #1C263C;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.features-block .txt .colors .list .bl.active:after {
	opacity: 1;
}

.features-block .txt .pic img {
	margin: 0;
	display: block;
	border-radius: 10px;
	max-width: 100%;
}

.features-block .txt .pic {
	display: block;
	margin: 40px 0 40px;
}

.features-block .txt .pic:last-child {
	margin-bottom: 0;
}

/*Эта строка обновлена*/
.features-block .photo {
	width: calc(50% - 15px);
	border-radius: 10px;
	overflow: hidden;
	background: center center/cover no-repeat;
	position: relative;
}

/*далее новый код*/
.features-block .photo .owl-carousel {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% + 5px);
	bottom: 0;
}

.features-block .photo .owl-carousel .owl-stage-outer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
}

.features-block .photo .owl-carousel .owl-stage-outer .owl-stage {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	min-height: 100%;
	display: flex;
}

.features-block .photo .owl-carousel .owl-stage-outer .owl-stage .owl-item {
	display: flex;
}

.features-block .photo .owl-carousel .owl-stage-outer .owl-stage .owl-item .item {
	width: 100%;
	background: center center/cover no-repeat;
}

.features-block .photo .owl-carousel .owl-dots {
	position: absolute;
	display: flex;
	left: 0;
	width: 100%;
	justify-content: center;
	bottom: 20px;
}

.features-block .photo .owl-carousel .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	margin: 0 5px;
}

.features-block .photo .owl-carousel .owl-dots .owl-dot.active {
	background: #fff;
}

.features-block .photo .owl-carousel .owl-nav {
	display: none;
}

/*конец нового кода */


.chars-list {
	padding: 0 0 10px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.char-block {
	margin: 0 0 20px;
	font-size: 18px;
	line-height: 129%;
	width: calc(50% - 15px);
	border-radius: 10px;
	background: #F2F2F2;
	padding: 30px;
}

.char-block small {
	font: inherit;
}

.char-block .t {
	font-size: 34px;
	color: #1C263C;
	line-height: 110%;
	font-weight: 500;
	margin: 14px 0 0 0;
	letter-spacing: -1px;
}

.char-block .t img {
	display: block;
}

.file-btn {
	margin: 0 0 80px;
	text-decoration: none;
	display: flex;
	width: 100%;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #fff;
	height: 70px;
	background: #1C263C;
}

.file-btn .ic {
	width: 24px;
	height: 24px;
	margin: 0 10px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.file-btn .ic img {
	transition: all 0.15s ease;
	filter: grayscale(100%) brightness(800%);
	opacity: 0.6;
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.file-btn:hover {
	background: #BAE00B;
	color: #1C263C;
}

.file-btn:hover .ic img {
	opacity: 1;
	filter: none;
}

.bottom-connect-block {
	margin: 0 0 80px;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.bottom-connect-block:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	background: #1C263C;
}

.bottom-connect-block .pic {
	position: relative;
	background: url(../img/bottom-connect-pic.webp) center center/cover no-repeat;
	border-radius: 20px;
	width: calc(50% - 15px);
	z-index: 5;
}

.bottom-connect-block .tg-subs-block {
	margin: 0;
	background: #BAE00B;
	width: calc(50% - 15px);
	padding-bottom: 274px;
}

.bottom-connect-block .tg-subs-block .txt {
	width: 100%;
	max-width: 100%;
}

.bottom-connect-block .tg-subs-block h2 {
	font-weight: 500;
}

.bottom-connect-block .tg-subs-block.connect .btns {
	max-width: calc(100% - 120px);
}

.specials-list {
	padding: 0 0 30px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.specials-list .special-block {
	margin: 0 0 30px;
	position: relative;
	width: calc(50% - 15px);
	display: block;
}

.specials-list .special-block .title {
	position: relative;
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	border-radius: 10px;
	background: #F2F2F2;
	height: 114px;
	padding: 0 20px 0 60px;
	font-size: 44px;
	font-weight: 500;
	line-height: 110%;
	color: #1C263C;
	letter-spacing: -1px;
}

.specials-list .special-block .title .i {
	transition: all 0.3s ease;
	display: block;
	cursor: pointer;
	position: absolute;
	width: 30px;
	height: 30px;
	right: 60px;
	top: 50%;
	margin-top: -15px;
	border-radius: 50%;
	background: #BAE00B;
}

.specials-list .special-block .title .i span {
	opacity: 0;
	transition: opacity 0.3s ease;
	letter-spacing: 0;
	line-height: 129%;
	white-space: nowrap;
	padding: 10px 14px;
	border-radius: 10px;
	background: #BAE00B;
	font-size: 18px;
	font-weight: 500;
	color: #1C263C;
	position: absolute;
	display: block;
	right: 300vw;
	top: -9999px;
	transform: translateY(-50%);
	max-width: calc(100vw - 50px);
}

.specials-list .special-block .title .i:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	background: url(../img/i-ic.svg) center center no-repeat;
	transition: all 0.3s ease;
}

.specials-list .special-block .title .i:hover span {
	right: 40px;
	top: 50%;
	opacity: 1;
}

.specials-list .special-block .title .i:hover:after {
	filter: grayscale(100%) brightness(800%);
}

.specials-list .special-block.list .title {
	margin: 0 0 26px;
	height: auto;
	padding-top: 30px;
	padding-bottom: 30px;
}

.specials-list .special-block.list ul {
	font-size: 22px;
	line-height: 129%;
	font-weight: 500;
	padding: 0 0 0 30px;
	margin: 0;
	list-style-type: none;
}

.specials-list .special-block.list ul li {
	position: relative;
	padding: 3px 0 3px 56px;
}

.specials-list .special-block.list ul li:before {
	content: '';
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	box-sizing: border-box;
	border-radius: 50%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #1C263C;
	border: 9px solid #BAE00B;
}

.specials-list .special-block.list ul li+li {
	margin-top: 22px;
}

.specials-list .special-block .gallery {
	width: 100%;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.specials-list .special-block .gallery .item {
	display: block;
	height: 425px;
	background: center center/cover no-repeat;
}

.specials-list .special-block .gallery .item:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0) 32.89%);
}

.specials-list .special-block .gallery .owl-carousel .owl-nav button.owl-prev,
.specials-list .special-block .gallery .owl-carousel .owl-nav button.owl-next {
	transition: all 0.1s ease;
	filter: grayscale(100%) brightness(800%);
	width: 60px;
	height: 60px;
	left: 20px;
	position: absolute;
	cursor: pointer;
	background: url(../img/aliser-g-arr.svg) center center no-repeat;
	border-radius: 0;
	top: 50%;
	margin-top: -30px;
}

.specials-list .special-block .gallery .owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 20px;
}

.specials-list .special-block .gallery .owl-carousel .owl-nav button.owl-prev:hover,
.specials-list .special-block .gallery .owl-carousel .owl-nav button.owl-next:hover {
	filter: none;
}

.specials-list .special-block .gallery .owl-carousel .owl-nav button.owl-prev:after,
.specials-list .special-block .gallery .owl-carousel .owl-nav button.owl-next:after {
	display: none
}

.specials-list .special-block .gallery .owl-carousel .owl-dots {
	display: none;
}

.specials-list .special-block .gallery .owl-carousel .owl-dots .owl-dot.active {
	background: #fff;
}

.specials-list .video {
	display: block;
	width: calc(50% - 15px);
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.specials-list .video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.specials-list .video:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	background: rgba(28, 38, 60, 0.2);
}

.specials-list .video:after {
	transition: all 0.3s ease;
	content: '';
	width: 80px;
	height: 80px;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff url(../img/play-ic.svg) center left 53% no-repeat;
	border-radius: 50%;
}

.specials-list .video:hover:after {
	background-color: #BAE00B;
}


.about-txt {
	margin: 0 0 80px;
	display: flex;
	justify-content: space-between;
}

.about-txt .in {
	max-width: 518px;
}

.about-txt .right-txt {
	margin: -115px 0 0 0;
	opacity: 0.4;
	font-size: 80px;
	line-height: 86%;
	letter-spacing: -3px;
	max-width: 490px;
}

.inner-content .about-page h3 {
	max-width: 900px;
	text-align: left;
	font-size: 44px;
	line-height: 110%;
	margin: 0 0 40px;
	letter-spacing: -1px;
	font-weight: 500;
}

.about-page .see-all {
	margin-bottom: 60px;
}

.about-page .darkblue-bg {
	padding: 80px 0 95px;
	margin: 0 0 80px;
}

.about-page .darkblue-bg:before {
	top: 0;
}

.brands-block {
	display: flex;
	align-items: center;
	margin: 0 0 80px;
}

.brands-block .quote-block {
	width: 548px;
	margin: 0 40px 0 0;
}

.brands-block .quote-block .txt {
	max-width: 450px;
	position: relative;
	margin: 40px 0 0 auto;
	background: #1C263C;
	border-radius: 20px;
	padding: 40px;
	display: flex;
	align-items: flex-end;
	min-height: 242px;
	font-size: 36px;
	line-height: 110%;
	color: #fff;
	font-weight: 500;
	letter-spacing: -1px;
}

.brands-block .quote-block .txt .photo {
	position: absolute;
	width: 196px;
	height: 196px;
	top: -98px;
	left: -98px;
	background: center center/cover no-repeat;
	border-radius: 50%;
}

.brands-block .brands-list {
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	border-radius: 20px;
	overflow: hidden;
	border: 2px solid #A4A8B1;
	width: calc(100% - 588px);
}

.brands-block .brands-list .block {
	border-radius: 0;
	border: 0;
	border-bottom: 2px solid #A4A8B1;
	border-right: 2px solid #A4A8B1;
	width: calc(100% / 3);
	margin: 0 0 -2px;
	height: 220px;
}

.brands-block .brands-list .block:nth-child(3n + 3) {
	border-right: 0;
}

.brands-block .text-block {
	border-radius: 20px;
	background: #1C263C;
	padding: 30px;
	color: #fff;
	width: calc(100% - 588px);
}

.brands-block .text-block p+p {
	padding-top: 14px;
}

.brands-block .text-block ul.standart li {
	padding-left: 40px;
}

.brands-block .text-block ul.standart:not(:last-child) {
	padding-bottom: 24px;
}

.brands-block .text-block ul.standart li:before {
	width: 24px;
	height: 24px;
	border-width: 6px;
}

.brands-block .text-block ul.standart li+li {
	margin-top: 10px;
}

.brands-block .text-block ul.i {
	padding: 24px 0 0 0;
	margin: 0;
	list-style-type: none;
}

.brands-block .text-block ul.i li {
	position: relative;
	padding: 0 0 0 40px;
}

.brands-block .text-block ul.i li:before {
	width: 24px;
	height: 24px;
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -12px;
	border-radius: 50%;
	background: #BAE00B url(../img/i-w-ic.svg) center center no-repeat;
}

.brands-block .text-block ul.i li+li {
	margin-top: 10px;
}

.brands-block .text-block .title.mob-only {
	display: none;
	font-size: 24px;
	line-height: 129%;
	margin: 0 0 30px;
	font-weight: 500;
}

.brands-block.right .quote-block {
	margin: 0 0 0 40px;
	order: 2;
}

.brands-block.right .quote-block .txt {
	margin-left: 0;
}

.brands-block.right .quote-block .txt .photo {
	left: auto;
	right: -98px;
}

.brands-block.green {
	margin-top: 60px;
	align-items: flex-end;
}

.brands-block.green .quote-block .txt {
	color: #1C263C;
	background: #BAE00B;
}

.brands-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -30px -30px 0;
	width: calc(100% + 30px);
	padding: 0 0 40px;
}

.brands-list .block {
	border-radius: 20px;
	border: 1px solid rgba(28, 38, 60, 0.2);
	padding: 20px 38px;
	width: calc(20% - 30px);
	margin: 0 30px 30px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 236px;
}

.brands-list .block img {
	max-width: 100%;
	max-height: 140px;
	display: block;
}

.reasons-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -30px -30px 0;
	width: calc(100% + 30px);
	padding: 20px 0 20px;
}

.reasons-list .block {
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 30px;
	color: rgba(255, 255, 255, 0.6);
	height: 302px;
	display: flex;
	flex-direction: column;
	width: calc(25% - 30px);
	margin: 0 30px 40px 0;
}

.reasons-list .block .title {
	font-size: 34px;
	color: #fff;
	line-height: 110%;
	font-weight: 500;
	letter-spacing: -2px;
}

.reasons-list .block .t {
	margin-top: auto;
}

.reasons-list .block .ic {
	display: none;
}

@media all and (min-width: 1001px) {
	.reasons-list .block:nth-child(even) {
		transform: translateY(40px);
	}

	.reasons-list .block:nth-child(2),
	.reasons-list .block:nth-child(4),
	.reasons-list .block:nth-child(5),
	.reasons-list .block:nth-child(7) {
		color: #1C263C;
		background: #BAE00B;
		border-color: #BAE00B;
	}

	.reasons-list .block:nth-child(2) .title,
	.reasons-list .block:nth-child(4) .title,
	.reasons-list .block:nth-child(5) .title,
	.reasons-list .block:nth-child(7) .title {
		color: #1C263C;
	}
}

.flex-title {
	margin: 0 0 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flex-title h2 {
	text-align: left;
	width: calc(100% - 340px);
	max-width: 620px;
	margin: 0;
}

.flex-title .descr {
	max-width: 300px;
}

.staff-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -30px 0 0;
	width: calc(100% + 30px);
	padding: 0 0 50px;
}

.staff-list .block {
	font-size: 14px;
	line-height: 129%;
	color: rgba(28, 38, 60, 0.6);
	display: block;
	text-decoration: none;
	width: calc(20% - 30px);
	margin: 0 30px 30px 0;
}

.staff-list .block .photo {
	border-radius: 20px;
	margin: 0 0 16px;
	background: center center/cover no-repeat;
}

.staff-list .block .photo:before {
	content: '';
	display: block;
	padding-top: 100%;
}

.staff-list .block .inf {
	padding: 0 10px;
}

.staff-list .block .inf .post {
	margin: 0 0 8px;
}

.staff-list .block .inf .name {
	margin: 0 0 4px;
	font-size: 28px;
	line-height: 129%;
	font-weight: 500;
	color: #1C263C;
}

.staff-list .block .inf a {
	font-size: 14px;
	text-decoration: none;
	color: #1C263C;
}

.contacts-block {
	margin: 0 0 80px;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.contacts-block iframe {
	filter: brightness(99%);
	border: 0;
	border-radius: 20px;
	width: calc(100% + 500px);
	margin: 0 -250px;
}

.contacts-block .block {
	color: rgba(28, 38, 60, 0.6);
	position: absolute;
	z-index: 5;
	padding: 30px;
	border-radius: 20px;
	background: #fff;
	bottom: 30px;
	left: 30px;
	width: 305px;
}

.contacts-block .block .title {
	font-size: 34px;
	margin: 0 0 16px;
	line-height: 110%;
	letter-spacing: -1px;
	color: #1C263C;
	font-weight: 500;
}

.contacts-block .block a {
	text-decoration-style: dotted;
	display: table;
	font-size: 18px;
	line-height: 129%;
	color: #1C263C;
}

.contacts-block .block p:not(:last-child) {
	padding: 0 0 16px;
}

.projects-page .text-descr {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 300px;
	top: 207px;
}

.projects-page .projects-list {
	padding: 0 0 50px;
	margin: 0 -30px 0 0;
	width: calc(100% + 30px);
	display: flex;
	flex-wrap: wrap;
}

.projects-page .projects-list .proj-block {
	display: flex;
	flex-direction: column;
	width: calc(100% / 3 - 30px);
	margin: 0 30px 30px 0;
}

.projects-page .projects-list .proj-block .inf {
	height: 100%;
	font-size: 18px;
	line-height: 129%;
	color: #fff;
	background: #1C263C;
	border-radius: 20px;
	padding: 30px 30px 50px;
}

.projects-page .projects-list .proj-block .inf .title {
	line-height: 110%;
	margin: 0 0 8px;
	text-transform: none;
	color: #fff;
}

.projects-page .projects-list .proj-block .inf .region {
	margin: 0 0 30px;
	font-size: 18px;
	line-height: 129%;
	color: rgba(255, 255, 255, 0.6);
}

.projects-page .projects-list .proj-block .inf ul {
	padding: 0 0 24px;
	margin: 0;
	list-style-type: none;
}

.projects-page .projects-list .proj-block .inf ul li {
	position: relative;
	padding: 0 0 0 40px;
}

.projects-page .projects-list .proj-block .inf ul li:before {
	content: '';
	display: block;
	position: absolute;
	width: 24px;
	height: 24px;
	box-sizing: border-box;
	border-radius: 50%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: 7px solid #BAE00B;
}

.projects-page .projects-list .proj-block .inf ul li+li {
	margin-top: 8px;
}

.projects-page .projects-list .proj-block .inf .btn {
	font-weight: 500;
	background: #BAE00B;
	line-height: 50px;
	font-size: 16px;
	color: #1C263C;
	padding: 0;
	width: 100%;
	text-align: center;
	margin: 30px 0 -20px;
}

.projects-page .projects-list .proj-block .inf .btn:hover {
	background: #fff;
}

.projects-page .projects-list .proj-block.btn {
	min-height: 300px;
	padding: 0 60px;
	justify-content: center;
	flex-direction: row;
	display: flex;
	color: #fff;
	font-size: 18px;
	line-height: 129%;
	font-weight: 500;
	align-items: center;
}

.projects-page .projects-list .proj-block.btn span {
	order: 2;
}

.projects-page .projects-list .proj-block.btn span.arr {
	width: 80px;
	height: 80px;
	order: 1;
	position: relative;
	margin: 0 14px 0 0;
	top: auto;
	right: auto;
}

.projects-page .projects-list .proj-block.btn span.arr:after {
	background-size: 22px auto;
}

@media all and (min-width: 1001px) {
	.projects-page .projects-list .proj-block:nth-child(even) .inf {
		color: #1C263C;
		background: #F2F2F2;
	}

	.projects-page .projects-list .proj-block:nth-child(even) .inf .title {
		color: #1C263C;
	}

	.projects-page .projects-list .proj-block:nth-child(even) .inf .region {
		color: rgba(28, 38, 60, 0.6);
	}

	.projects-page .projects-list .proj-block:nth-child(even) .inf ul li:before {
		background: #1C263C;
	}
}


.mobile-block {
	display: none;
}

.warranty-page .top {
	margin: 0 0 60px;
	display: flex;
}

.warranty-page .top .left {
	width: 524px;
	margin: 0 60px 0 0;
	padding: 40px 0 0 0;
}

.warranty-page .top .quote-block {
	color: #fff;
	font-size: 24px;
	line-height: 129%;
	padding: 40px;
	border-radius: 20px;
	background: #1C263C;
	width: calc(100% - 584px);
}

.warranty-page .top .quote-block p+p {
	padding-top: 14px;
}

.warranty-page .top .quote-block .author {
	font-size: 18px;
	line-height: 129%;
	color: rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	margin: 40px 0 0 0;
}

.warranty-page .top .quote-block .author .photo {
	width: 100px;
	height: 100px;
	background: center center/cover no-repeat;
	border-radius: 50%;
	margin: 0 24px 0 0;
}

.warranty-page .top .quote-block .author .name {
	margin: 0 0 4px;
	font-size: 28px;
	line-height: 129%;
	color: #fff;
	font-weight: 500;
}

.warranty-page .top .quote-block .author .inf {
	width: calc(100% - 124px);
}


@media all and (min-width: 1001px) {
	.warranty-page .periods {
		margin: 0 0 80px;
		display: flex;
		justify-content: space-between;
	}

	.warranty-page .periods .block {
		color: rgba(28, 38, 60, 0.6);
		width: calc(100% / 3 - 20px);
		border-radius: 20px;
		background: #BAE00B;
		padding: 30px;
	}

	.warranty-page .periods .block .title {
		margin: 0 0 16px;
		font-size: 34px;
		line-height: 129%;
		color: #1C263C;
		font-weight: 500;
	}
}


.warranty-page h3,
.delivery-page h3,
.service h3 {
	max-width: 900px;
	text-align: left;
	font-size: 44px;
	line-height: 110%;
	margin: 0 0 40px;
	letter-spacing: -1px;
	font-weight: 500;
}

.diagnostics-block {
	margin: 0 0 80px;
	display: flex;
	align-items: center;
	position: relative;
	padding: 80px 0 95px;
}

.diagnostics-block:before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	width: 100vw;
	top: 0;
	bottom: 0;
	transform: translateX(-50%);
	background: #BAE00B;
}

.diagnostics-block>* {
	position: relative;
}

.diagnostics-block .txt {
	width: calc(100% - 520px);
	padding: 0 40px 0 0;
}

.diagnostics-block .txt .in {
	margin: 0 0 36px;
	max-width: 524px;
}

.diagnostics-block .txt h2 {
	text-align: left;
}

.diagnostics-block .txt h3 {
	font-size: 40px;
}

.diagnostics-block .txt .dealers-block {
	display: flex;
	flex-wrap: wrap;
}

.diagnostics-block .txt .dealers-block .block {
	color: rgba(28, 38, 60, 0.6);
	border: 2px solid rgba(255, 255, 255, 0.2);
	width: calc(50% - 15px);
	max-width: 302px;
	padding: 30px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 20px;
}

.diagnostics-block .txt .dealers-block .block .title {
	font-size: 28px;
	margin: 0 0 32px;
	line-height: 128%;
	color: #1C263C;
	font-weight: 500;
}

.diagnostics-block .txt .dealers-block .block+.block {
	margin-left: 30px;
}

.diagnostics-block .pic {
	width: 520px;
}

.diagnostics-block .pic img {
	width: 100%;
}

.terms-block {
	margin: 0 0 80px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.terms-block .left {
	width: calc(50% - 20px);
}

.terms-block .pic {
	height: 614px;
	width: calc(50% - 20px);
	border-radius: 10px;
	background: center center/cover no-repeat;
}

.service .terms-block .pic {
	height: 406px;
	order: 1;
}

.service .terms-block .left {
	order: 2;
}

.spoiler-block {
	min-height: 91px;
	padding: 30px;
	background: #F2F2F2;
	border-radius: 10px;
}

.spoiler-block+.spoiler-block {
	margin-top: 14px;
}

.spoiler-block .title {
	padding: 0 24px 0 0;
	position: relative;
	font-size: 24px;
	line-height: 129%;
	font-weight: 500;
	cursor: pointer;
}

.spoiler-block .title:after {
	transform: scale(1, -1);
	content: '';
	display: block;
	position: absolute;
	width: 24px;
	height: 24px;
	right: 0;
	top: 50%;
	margin-top: -12px;
	background: url(../img/spoiler-arr.svg) center center no-repeat;
	transition: all 0.3s ease;
}

.spoiler-block.open .title:after {
	transform: none;
}

.spoiler-block .hidden-content {
	padding: 30px 0 0 0;
	display: none;
}

.spoiler-block .hidden-content p:not(:last-child) {
	padding: 0 0 8px;
}

.spoiler-block .hidden-content p+ul {
	padding-top: 8px;
}

.spoiler-block .hidden-content ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.spoiler-block .hidden-content ul:not(:last-child) {
	padding-bottom: 20px;
}

.spoiler-block .hidden-content ul li {
	flex-wrap: wrap;
	position: relative;
	padding-left: 49px;
	display: flex;
	align-items: center;
	min-height: 30px;
}

.spoiler-block .hidden-content ul li a {
	color: inherit;
	margin: 0 5px;
}

.spoiler-block .hidden-content ul li:before {
	content: '';
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	box-sizing: border-box;
	border-radius: 50%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #1C263C;
	border: 9px solid #BAE00B;
}

.spoiler-block .hidden-content ul.not li:before {
	background: #fff;
	border-color: #FA1616;
}

.spoiler-block .hidden-content ul li+li {
	margin-top: 16px;
}

.spoiler-block .hidden-content table {
	width: 100%;
	border: 0;
	border-collapse: collapse;
}

.spoiler-block .hidden-content table th {
	padding: 0 0 8px;
	text-align: left;
	width: 60%;
	font-weight: 500;
}

.spoiler-block .hidden-content table th:last-child {
	width: 40%;
}

.spoiler-block .hidden-content table td {
	border-bottom: 1px solid rgba(28, 38, 60, 0.2);
	padding: 16px 0 4px;
}

.delivery-page .map {
	margin: 0 0 60px;
	position: relative;
	height: 30vw;
}

.delivery-page .map img {
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
}

.delivery-terms {
	width: 100%;
	margin: 0 0 30px;
	color: #fff;
	justify-content: space-between;
	display: flex;
	align-items: center;
	padding: 40px;
	border-radius: 20px;
	background: #1C263C url(../img/del-rounds.svg) top right/auto 100% no-repeat;
}

.delivery-terms .txt {
	width: calc(100% - 550px);
	max-width: 625px;
}

.delivery-terms .txt .title {
	font-size: 34px;
	line-height: 129%;
	font-weight: 500;
	letter-spacing: -1px;
	margin: 0 0 30px;
}

.delivery-terms .logos {
	width: 510px;
	display: flex;
	justify-content: space-between;
}

.delivery-terms .logos .bl {
	padding: 20px;
	width: 150px;
	height: 150px;
	background: #fff;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.delivery-terms .logos .bl img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

ul.standart {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

ul.standart li {
	position: relative;
	padding: 0 0 0 46px;
}

ul.standart li:before {
	content: '';
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	box-sizing: border-box;
	border-radius: 50%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: 9px solid #BAE00B;
}

ul.standart li+li {
	margin-top: 26px;
}

.delivery-page .regions {
	flex-wrap: wrap;
	margin: 0 0 80px;
	display: flex;
	justify-content: space-between;
}

.delivery-page .regions .title {
	font-size: 34px;
	line-height: 129%;
	margin: 0 0 30px;
	font-weight: 500;
	letter-spacing: -1px;
}

.delivery-page .regions .block {
	width: calc(50% - 15px);
	padding: 40px;
	border-radius: 20px;
	background: #BAE00B;
}

.delivery-page .regions .block ul li:before {
	background: #1C263C;
	border-color: #fff;
}

.delivery-page .categories-list.owl-carousel {
	overflow: hidden;
	max-width: 100%;
}

.delivery-page .categories-list .block {
	height: 224px;
}

.delivery-page .categories-list .block .pic {
	height: 220px;
}

.delivery-page .categories-list.owl-carousel {
	margin-bottom: 80px;
	margin-top: 40px;
}

.delivery-cost-block {
	flex-wrap: wrap;
	margin: -50px 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.delivery-cost-block h3 {
	width: 100%;
}

.delivery-cost-block .left {
	width: calc(100% - 654px);
	max-width: 630px;
}

.delivery-cost-block .left table {
	width: 100%;
	border: 0;
	border-collapse: collapse;
}

@media all and (min-width: 1001px) {
	.delivery-cost-block .left table th {
		width: 50%;
		position: relative;
		padding: 20px 0 30px;
		text-align: center;
		color: #fff;
		font-size: 24px;
		line-height: 129%;
		font-weight: 500;
	}

	.delivery-cost-block .left table th:before {
		content: '';
		display: block;
		position: absolute;
		border-radius: 5px;
		background: #1C263C;
		z-index: -1;
		top: 0;
		left: 0;
		bottom: 10px;
		width: 100%;
	}

	.delivery-cost-block .left table th:first-child:before {
		box-sizing: border-box;
		border-right: 2px solid rgba(255, 255, 255, 0.2);
		border-radius: 10px 0 0 10px;
	}

	.delivery-cost-block .left table th:last-child:before {
		border-radius: 0 10px 10px 0;
	}

	.delivery-cost-block .left table td {
		width: 50%;
		text-align: center;
		position: relative;
		padding: 20px 20px 30px;
	}

	.delivery-cost-block .left table td:before {
		box-sizing: border-box;
		content: '';
		display: block;
		position: absolute;
		border-radius: 5px;
		background: #F2F2F2;
		z-index: -1;
		top: 0;
		left: 0;
		bottom: 10px;
		width: 100%;
		border: 2px solid rgba(28, 38, 60, 0.2);
	}

	.delivery-cost-block .left table td:first-child:before {
		border-right-width: 1px;
		border-radius: 10px 0 0 10px;
	}

	.delivery-cost-block .left table td:last-child:before {
		border-left-width: 1px;
		border-radius: 0 10px 10px 0;
	}

	.delivery-cost-block .left td {
		position: relative;
	}

	.delivery-cost-block .left td:before {
		content: '';
		display: block;
		position: absolute;
		border-radius: 5px;
		background: red;
		z-index: -1;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
	}
}

.delivery-cost-block .pic {
	width: 614px;
	transform: translateX(50vw);
	transition: all 1.3s ease-in;
}

.delivery-cost-block .pic.go {
	transform: none;
}

.delivery-cost-block .pic img {
	display: block;
	max-width: 100%;
}

.pay-methods {
	margin: 0 0 80px;
	display: flex;
	justify-content: space-between;
}

.pay-methods .block {
	border-radius: 20px;
	padding: 40px;
	width: calc(100% - 520px);
	background: #1C263C;
}

.pay-methods .block:first-child {
	font-size: 34px;
	color: #fff;
	line-height: 129%;
	font-weight: 500;
	letter-spacing: -1px;
}

.pay-methods .block:first-child small {
	font-weight: normal;
	margin: 8px 0 0 0;
	display: block;
	letter-spacing: 0px;
	font-size: 18px;
	line-height: 129%;
	color: rgba(255, 255, 255, 0.6);
}

.pay-methods .block:first-child ul {
	margin: 0 0 30px;
}

.pay-methods .block:first-child ul li+li {
	margin-top: 16px;
}

.pay-methods .block:first-child ul li:before {
	top: 22px;
}

.pay-methods .block+.block {
	background: #F2F2F2;
	width: 480px;
}

.pay-methods .block .logos {
	margin: 0 0 -30px;
	display: flex;
	flex-wrap: wrap;
}

.pay-methods .block .logos .logo {
	margin-bottom: 30px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 20px;
	width: 150px;
	height: 150px;
}

.pay-methods .block .logos .logo+.logo {
	margin-left: 30px;
}

.pay-methods .block .logos .logo img {
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.pay-methods .block .title {
	font-size: 34px;
	margin: 0 0 30px;
	font-weight: 500;
	letter-spacing: -1px;
	line-height: 129%;
}

.pay-methods .block ul.i {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.pay-methods .block ul.i li {
	position: relative;
	padding: 0 0 0 48px;
}

.pay-methods .block ul.i li:before {
	width: 30px;
	height: 30px;
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -15px;
	border-radius: 50%;
	background: #BAE00B url(../img/i-ic.svg) center center no-repeat;
}

.pay-methods .block ul.i li+li {
	margin-top: 26px;
}

.service-page {
	padding: 30px 0 0 0;
}

.rent-blocks {
	display: flex;
	justify-content: space-between;
	margin: 0 0 80px;
}

.rent-blocks .block {
	width: calc(100% / 3 - 20px);
	border-radius: 20px;
	padding: 30px;
	background: #F2F2F2;
}

.rent-blocks .block .pic {
	margin: 0 0 24px;
	background: center center/contain no-repeat;
}

.rent-blocks .block .pic:before {
	content: '';
	display: block;
	padding-top: 60%;
}

.rent-blocks .block .title {
	font-size: 34px;
	line-height: 110%;
	margin: 0 0 30px;
	letter-spacing: -1px;
	color: #1C263C;
	font-weight: 500;
}

.rent-blocks .block ul {
	padding: 0 0 30px;
	margin: 0;
	list-style-type: none;
}

.rent-blocks .block ul li {
	padding: 13px 0 13px 66px;
	position: relative;
}

.rent-blocks .block ul li+li {
	margin-top: 8px;
}

.rent-blocks .block ul li .ic {
	position: absolute;
	left: 0;
	top: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	border-radius: 50%;
	background: #BAE00B;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rent-blocks .block .price {
	font-size: 34px;
	line-height: 110%;
	margin: 0 0 30px;
	letter-spacing: -1px;
	color: #1C263C;
	font-weight: 500;
}


.popup {
	transition: opacity 0.3s ease;
	position: fixed;
	top: -99999px;
	left: -99999px;
	opacity: 0;
	width: 100%;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 200;
	background: rgba(28, 38, 60, 0.5);
}

.popup.visible {
	opacity: 1;
	left: 0;
	top: 0;
}

.popup .ovlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
}

.popup .into {
	width: calc(100% - 40px);
	max-width: 600px;
	margin: 0;
	position: relative;
}

.popup .into .close {
	z-index: 5;
	overflow: hidden;
	display: block;
	position: absolute;
	cursor: pointer;
	width: 50px;
	height: 50px;
	background: rgba(28, 38, 60, 0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
	top: 25px;
	right: 25px;
}

.popup .into .close:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	background: url(../img/close-ic.svg) center center no-repeat;
}

.popup .into .close:hover {
	background: #fff;
}

.popup .into .tg-subs-block {
	margin: 0;
}

.popup .into .tg-subs-block p {
	font-size: 20px;
	line-height: 129%;
}

.popup .into .tg-subs-block h2 {
	text-align: center;
	font-size: 40px;
	line-height: 110%;
	margin: 0 0 24px;
	font-weight: 500;
	color: #1C263C;
}

.popup .into .tg-subs-block.small {
	height: auto;
	min-height: 1px;
	padding: 60px;
	background: #BAE00B;
	text-align: center;
}

.popup .into .tg-subs-block .txt {
	max-width: 100%;
	width: 100%;
}

.popup .into .tg-subs-block .btns {
	margin: 60px 0 0 0;
	position: relative;
	width: 100%;
	max-width: 100%;
	bottom: auto;
	left: auto;
}

.popup .into .tg-subs-block .btns .btn {
	padding-left: 64px;
	text-align: left;
	width: 100%;
	max-width: 100%;
}

.popup .into .tg-subs-block .btns .btn.tg {
	background-image: url(../img/tg-white-ic.svg);
	background-position: center left 30px;
	background-repeat: no-repeat;
}

.popup .into .tg-subs-block .btns .btn.wa {
	background-image: url(../img/wa-white-ic.svg);
	background-position: center left 30px;
	background-repeat: no-repeat;
}

.popup.dark .into .tg-subs-block {
	background: #1C263C;
	color: rgba(255, 255, 255, 0.6);
}

.popup.dark .into .tg-subs-block h2 {
	color: #fff;
}

.popup.dark .into .tg-subs-block .btns .btn {
	background-color: #BAE00B;
	color: #1C263C;
}

.popup.dark .into .tg-subs-block .btns .btn.tg {
	background-image: url(../img/tg-ic.svg);
}

.popup.dark .into .tg-subs-block .btns .btn.wa {
	background-image: url(../img/wa-ic.svg);
}

.popup.dark .into .tg-subs-block .btns .btn .arr {
	background: #1C263C;
}

.popup.dark .into .tg-subs-block .btns .btn .arr:after {
	filter: grayscale(100%) brightness(800%);
}

.popup.dark .into .tg-subs-block .btns .btn:hover {
	background-color: #fff;
}

.popup.dark .into .close:not(:hover) {
	background: rgba(255, 255, 255, 0.1);
}

.popup.dark .into .close:not(:hover):before {
	filter: grayscale(100%) brightness(800%);
}

.popup.girl .into .tg-subs-block:after {
	border-radius: 20px;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background: url(../img/tg-girl.webp) bottom center/auto 320px no-repeat, url(../img/tg-rounds-mob.svg) bottom -130px center/100% auto no-repeat;
	background-color: #BAE00B;
}

.popup.girl2 .into .tg-subs-block:after {
	border-radius: 20px;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background: url(../img/tg-girl2.webp) bottom center/auto 320px no-repeat, url(../img/tg-rounds-mob.svg) bottom -130px center/100% auto no-repeat;
	background-color: #BAE00B;
}

.popup.man2 .into .tg-subs-block:after {
	border-radius: 20px;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background: url(../img/tg-man2.png) bottom center/auto 320px no-repeat, url(../img/tg-rounds-mob.svg) bottom -130px center/100% auto no-repeat;
	background-color: #BAE00B;
}

.popup.girl .into .tg-subs-block>*,
.popup.girl2 .into .tg-subs-block>*,
.popup.man2 .into .tg-subs-block>* {
	position: relative;
	z-index: 2;
}

.popup.girl .into .tg-subs-block,
.popup.girl2 .into .tg-subs-block,
.popup.man2 .into .tg-subs-block {
	margin: 0;
	text-align: left;
	padding-bottom: 350px;
}

.popup.girl .into .tg-subs-block h2,
.popup.girl2 .into .tg-subs-block h2,
.popup.man2 .into .tg-subs-block h2 {
	text-align: left;
}

.popup.girl .into .tg-subs-block .btns,
.popup.girl2 .into .tg-subs-block .btns,
.popup.man2 .into .tg-subs-block .btns {
	margin-top: 34px;
}

.popup .tg-subs-block:before {
	display: none !important;
}

.popup.smart .into .tg-subs-block {
	margin: 0;
	text-align: left;
	padding-bottom: 350px;
	background: #1C263C url(../img/iphone-bg.webp) bottom center/auto 300px no-repeat;
}

.popup.smart .into .tg-subs-block h2 {
	text-align: left;
}

.popup.smart .into .tg-subs-block .btns {
	margin-top: 34px;
}

.popup.pics .into .tg-subs-block {
	overflow: hidden;
	margin: 0;
	text-align: left;
	padding-bottom: 350px;
}

.popup.pics .into .tg-subs-block .pics {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.popup.pics .into .tg-subs-block .pics .pic {
	transform: translateY(100%);
	transition: all 0.3s ease;
	height: 300px;
	background: center center/cover;
	border-radius: 20px 20px 0 0;
	width: 30%;
}

.popup.pics .into .tg-subs-block .pics .pic:nth-child(2) {
	height: 223px;
	width: 36%;
}

.popup.pics .into .tg-subs-block .pics .pic:first-child {
	border-radius: 0 20px 0 0;
}

.popup.pics .into .tg-subs-block .pics .pic:last-child {
	border-radius: 20px 0 0 0;
}

.popup.pics .into .tg-subs-block .pics.go .pic {
	transition-delay: 0.1s;
	transform: none;
}

.popup.pics .into .tg-subs-block .pics.go .pic:nth-child(2) {
	transition-delay: 0s;
}

.popup.right .into .tg-subs-block {
	text-align: left;
	padding: 60px 45px;
	position: absolute;
	top: 0;
	bottom: 0;
	border-radius: 20px 0 0 20px;
}

.popup.right .into .tg-subs-block h2 {
	text-align: left;
}

.popup.right .into .tg-subs-block .btns {
	position: absolute;
	bottom: 60px;
	left: 45px;
	width: calc(100% - 90px);
}

.popup.right .into {
	transition: all 0.3s ease;
	right: -260px;
	max-width: 460px;
	width: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
}

.popup.right .into .close {
	top: 58px;
	right: 40px;
}

.popup.right.visible .into {
	right: 0;
}

/*facybox/*/
body.compensate-for-scrollbar {
	overflow: hidden
}

.fancybox-active {
	height: auto
}

.fancybox-is-hidden {
	left: -9999px;
	margin: 0;
	position: absolute !important;
	top: -9999px;
	visibility: hidden
}

.fancybox-container {
	-webkit-backface-visibility: hidden;
	height: 100%;
	left: 0;
	outline: none;
	position: fixed;
	-webkit-tap-highlight-color: transparent;
	top: 0;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	transform: translateZ(0);
	width: 100%;
	z-index: 99992
}

.fancybox-container * {
	box-sizing: border-box
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0
}

.fancybox-outer {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto
}

.fancybox-bg {
	background: #1e1e1e;
	opacity: 0;
	transition-duration: inherit;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(.47, 0, .74, .71)
}

.fancybox-is-open .fancybox-bg {
	opacity: .9;
	transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
	direction: ltr;
	opacity: 0;
	position: absolute;
	transition: opacity .25s ease, visibility 0s ease .25s;
	visibility: hidden;
	z-index: 99997
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
	opacity: 1;
	transition: opacity .25s ease 0s, visibility 0s ease 0s;
	visibility: visible
}

.fancybox-infobar {
	color: #ccc;
	font-size: 13px;
	-webkit-font-smoothing: subpixel-antialiased;
	height: 44px;
	left: 0;
	line-height: 44px;
	min-width: 44px;
	mix-blend-mode: difference;
	padding: 0 10px;
	pointer-events: none;
	top: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.fancybox-toolbar {
	right: 0;
	top: 0
}

.fancybox-stage {
	direction: ltr;
	overflow: visible;
	transform: translateZ(0);
	z-index: 99994
}

.fancybox-is-open .fancybox-stage {
	overflow: hidden
}

.fancybox-slide {
	-webkit-backface-visibility: hidden;
	display: none;
	height: 100%;
	left: 0;
	outline: none;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 44px;
	position: absolute;
	text-align: center;
	top: 0;
	transition-property: transform, opacity;
	white-space: normal;
	width: 100%;
	z-index: 99994
}

.fancybox-slide:before {
	content: "";
	display: inline-block;
	font-size: 0;
	height: 100%;
	vertical-align: middle;
	width: 0
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
	display: block
}

.fancybox-slide--image {
	overflow: hidden;
	padding: 44px 0
}

.fancybox-slide--image:before {
	display: none
}

.fancybox-slide--html {
	padding: 6px
}

.fancybox-content {
	background: #fff;
	display: inline-block;
	margin: 0;
	max-width: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 44px;
	position: relative;
	text-align: left;
	vertical-align: middle
}

.fancybox-slide--image .fancybox-content {
	animation-timing-function: cubic-bezier(.5, 0, .14, 1);
	-webkit-backface-visibility: hidden;
	background: transparent;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	left: 0;
	max-width: none;
	overflow: visible;
	padding: 0;
	position: absolute;
	top: 0;
	transform-origin: top left;
	transition-property: transform, opacity;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 99995
}

.fancybox-can-zoomOut .fancybox-content {
	cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-content {
	cursor: zoom-in
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
	cursor: grab
}

.fancybox-is-grabbing .fancybox-content {
	cursor: grabbing
}

.fancybox-container [data-selectable=true] {
	cursor: text
}

.fancybox-image,
.fancybox-spaceball {
	background: transparent;
	border: 0;
	height: 100%;
	left: 0;
	margin: 0;
	max-height: none;
	max-width: none;
	padding: 0;
	position: absolute;
	top: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 100%
}

.fancybox-spaceball {
	z-index: 1
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
	height: 100%;
	overflow: visible;
	padding: 0;
	width: 100%
}

.fancybox-slide--video .fancybox-content {
	background: #000
}

.fancybox-slide--map .fancybox-content {
	background: #e5e3df
}

.fancybox-slide--iframe .fancybox-content {
	background: #fff
}

.fancybox-iframe,
.fancybox-video {
	background: transparent;
	border: 0;
	display: block;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%
}

.fancybox-iframe {
	left: 0;
	position: absolute;
	top: 0
}

.fancybox-error {
	background: #fff;
	cursor: default;
	max-width: 400px;
	padding: 40px;
	width: 100%
}

.fancybox-error p {
	color: #444;
	font-size: 16px;
	line-height: 20px;
	margin: 0;
	padding: 0
}

.fancybox-button {
	background: rgba(30, 30, 30, .6);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	height: 44px;
	margin: 0;
	padding: 10px;
	position: relative;
	transition: color .2s;
	vertical-align: top;
	visibility: inherit;
	width: 44px
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
	color: #ccc
}

.fancybox-button:hover {
	color: #fff
}

.fancybox-button:focus {
	outline: none
}

.fancybox-button.fancybox-focus {
	outline: 1px dotted
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
	color: #888;
	cursor: default;
	outline: none
}

.fancybox-button div {
	height: 100%
}

.fancybox-button svg {
	display: block;
	height: 100%;
	overflow: visible;
	position: relative;
	width: 100%
}

.fancybox-button svg path {
	fill: currentColor;
	stroke-width: 0
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
	display: none
}

.fancybox-progress {
	background: #ff5268;
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	z-index: 99998
}

.fancybox-close-small {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #ccc;
	cursor: pointer;
	opacity: .8;
	padding: 8px;
	position: absolute;
	right: -12px;
	top: -44px;
	z-index: 401
}

.fancybox-close-small:hover {
	color: #fff;
	opacity: 1
}

.fancybox-slide--html .fancybox-close-small {
	color: currentColor;
	padding: 10px;
	right: 0;
	top: 0
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
	overflow: hidden
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
	display: none
}

.fancybox-navigation .fancybox-button {
	background-clip: content-box;
	height: 100px;
	opacity: 0;
	position: absolute;
	top: calc(50% - 50px);
	width: 70px
}

.fancybox-navigation .fancybox-button div {
	padding: 7px
}

.fancybox-navigation .fancybox-button--arrow_left {
	left: 0;
	left: env(safe-area-inset-left);
	padding: 31px 26px 31px 6px
}

.fancybox-navigation .fancybox-button--arrow_right {
	padding: 31px 6px 31px 26px;
	right: 0;
	right: env(safe-area-inset-right)
}

.fancybox-caption {
	background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, transparent);
	bottom: 0;
	color: #eee;
	font-size: 14px;
	font-weight: 400;
	left: 0;
	line-height: 1.5;
	padding: 75px 44px 25px;
	pointer-events: none;
	right: 0;
	text-align: center;
	z-index: 99996
}

@supports (padding:max(0px)) {
	.fancybox-caption {
		padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left))
	}
}

.fancybox-caption--separate {
	margin-top: -50px
}

.fancybox-caption__body {
	max-height: 50vh;
	overflow: auto;
	pointer-events: all
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
	color: #ccc;
	text-decoration: none
}

.fancybox-caption a:hover {
	color: #fff;
	text-decoration: underline
}

.fancybox-loading {
	animation: a 1s linear infinite;
	background: transparent;
	border: 4px solid #888;
	border-bottom-color: #fff;
	border-radius: 50%;
	height: 50px;
	left: 50%;
	margin: -25px 0 0 -25px;
	opacity: .7;
	padding: 0;
	position: absolute;
	top: 50%;
	width: 50px;
	z-index: 99999
}

@keyframes a {
	to {
		transform: rotate(1turn)
	}
}

.fancybox-animated {
	transition-timing-function: cubic-bezier(0, 0, .25, 1)
}

.fancybox-fx-slide.fancybox-slide--previous {
	opacity: 0;
	transform: translate3d(-100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--next {
	opacity: 0;
	transform: translate3d(100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--current {
	opacity: 1;
	transform: translateZ(0)
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
	opacity: 0;
	transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.fancybox-fx-fade.fancybox-slide--current {
	opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
	opacity: 0;
	transform: scale3d(1.5, 1.5, 1.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
	opacity: 0;
	transform: scale3d(.5, .5, .5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
	opacity: 1;
	transform: scaleX(1)
}

.fancybox-fx-rotate.fancybox-slide--previous {
	opacity: 0;
	transform: rotate(-1turn)
}

.fancybox-fx-rotate.fancybox-slide--next {
	opacity: 0;
	transform: rotate(1turn)
}

.fancybox-fx-rotate.fancybox-slide--current {
	opacity: 1;
	transform: rotate(0deg)
}

.fancybox-fx-circular.fancybox-slide--previous {
	opacity: 0;
	transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--next {
	opacity: 0;
	transform: scale3d(0, 0, 0) translate3d(100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--current {
	opacity: 1;
	transform: scaleX(1) translateZ(0)
}

.fancybox-fx-tube.fancybox-slide--previous {
	transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
	transform: translate3d(100%, 0, 0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
	transform: translateZ(0) scale(1)
}

@media (max-height:576px) {
	.fancybox-slide {
		padding-left: 6px;
		padding-right: 6px
	}

	.fancybox-slide--image {
		padding: 6px 0
	}

	.fancybox-close-small {
		right: -6px
	}

	.fancybox-slide--image .fancybox-close-small {
		background: #4e4e4e;
		color: #f2f4f6;
		height: 36px;
		opacity: 1;
		padding: 6px;
		right: 0;
		top: 0;
		width: 36px
	}

	.fancybox-caption {
		padding-left: 12px;
		padding-right: 12px
	}

	@supports (padding:max(0px)) {
		.fancybox-caption {
			padding-left: max(12px, env(safe-area-inset-left));
			padding-right: max(12px, env(safe-area-inset-right))
		}
	}
}

.fancybox-share {
	background: #f4f4f4;
	border-radius: 3px;
	max-width: 90%;
	padding: 30px;
	text-align: center
}

.fancybox-share h1 {
	color: #222;
	font-size: 35px;
	font-weight: 700;
	margin: 0 0 20px
}

.fancybox-share p {
	margin: 0;
	padding: 0
}

.fancybox-share__button {
	border: 0;
	border-radius: 3px;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 40px;
	margin: 0 5px 10px;
	min-width: 130px;
	padding: 0 15px;
	text-decoration: none;
	transition: all .2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
	color: #fff
}

.fancybox-share__button:hover {
	text-decoration: none
}

.fancybox-share__button--fb {
	background: #3b5998
}

.fancybox-share__button--fb:hover {
	background: #344e86
}

.fancybox-share__button--pt {
	background: #bd081d
}

.fancybox-share__button--pt:hover {
	background: #aa0719
}

.fancybox-share__button--tw {
	background: #1da1f2
}

.fancybox-share__button--tw:hover {
	background: #0d95e8
}

.fancybox-share__button svg {
	height: 25px;
	margin-right: 7px;
	position: relative;
	top: -1px;
	vertical-align: middle;
	width: 25px
}

.fancybox-share__button svg path {
	fill: #fff
}

.fancybox-share__input {
	background: transparent;
	border: 0;
	border-bottom: 1px solid #d7d7d7;
	border-radius: 0;
	color: #5d5b5b;
	font-size: 14px;
	margin: 10px 0 0;
	outline: none;
	padding: 10px 15px;
	width: 100%
}

.fancybox-thumbs {
	background: #ddd;
	bottom: 0;
	display: none;
	margin: 0;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	padding: 2px 2px 4px;
	position: absolute;
	right: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	top: 0;
	width: 212px;
	z-index: 99995
}

.fancybox-thumbs-x {
	overflow-x: auto;
	overflow-y: hidden
}

.fancybox-show-thumbs .fancybox-thumbs {
	display: block
}

.fancybox-show-thumbs .fancybox-inner {
	right: 212px
}

.fancybox-thumbs__list {
	font-size: 0;
	height: 100%;
	list-style: none;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0;
	position: absolute;
	position: relative;
	white-space: nowrap;
	width: 100%
}

.fancybox-thumbs-x .fancybox-thumbs__list {
	overflow: hidden
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
	width: 7px
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
	background: #2a2a2a;
	border-radius: 10px
}

.fancybox-thumbs__list a {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: rgba(0, 0, 0, .1);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	float: left;
	height: 75px;
	margin: 2px;
	max-height: calc(100% - 8px);
	max-width: calc(50% - 4px);
	outline: none;
	overflow: hidden;
	padding: 0;
	position: relative;
	-webkit-tap-highlight-color: transparent;
	width: 100px
}

.fancybox-thumbs__list a:before {
	border: 6px solid #ff5268;
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all .2s cubic-bezier(.25, .46, .45, .94);
	z-index: 99991
}

.fancybox-thumbs__list a:focus:before {
	opacity: .5
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
	opacity: 1
}

@media (max-width:576px) {
	.fancybox-thumbs {
		width: 110px
	}

	.fancybox-show-thumbs .fancybox-inner {
		right: 110px
	}

	.fancybox-thumbs__list a {
		max-width: calc(100% - 10px)
	}
}

/*owl carousel*/
.owl-carousel,
.owl-carousel .owl-item {
	-webkit-tap-highlight-color: transparent;
	position: relative
}

.owl-carousel {
	display: none;
	width: 100%;
	z-index: 1
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-touch-callout: none
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
	display: none
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
	display: block
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
	background: 0 0;
	color: inherit;
	border: none;
	padding: 0 !important;
	font: inherit
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block
}

.owl-carousel.owl-hidden {
	opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab
}

.owl-carousel.owl-rtl {
	direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
	float: right
}

.owl-carousel .animated {
	animation-duration: 1s;
	animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
	z-index: 0
}

.owl-carousel .owl-animated-out {
	z-index: 1
}

.owl-carousel .fadeOut {
	animation-name: fadeOut
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.owl-height {
	transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
	max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url(owl.video.play.png) no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
	display: none
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%
}

/*ui*/
.ui-helper-hidden {
	display: none
}

.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px
}

.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse
}

.ui-helper-clearfix:after {
	clear: both
}

.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)"
}

.ui-front {
	z-index: 100
}

.ui-state-disabled {
	cursor: default !important;
	pointer-events: none
}

.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block
}

.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%
}

.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto
}

.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default
}

.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0
}

.ui-menu .ui-menu {
	position: absolute
}

.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")
}

.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em
}

.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px
}

.ui-menu-icons {
	position: relative
}

.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em
}

.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0
}

.ui-menu .ui-menu-icon {
	left: auto;
	right: 0
}

.ui-button {
	padding: .4em 1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: visible
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none
}

.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap
}

input.ui-button.ui-button-icon-only {
	text-indent: 0
}

.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px
}

.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap
}

input.ui-button.ui-icon-notext .ui-icon {
	width: auto;
	height: auto;
	text-indent: 0;
	white-space: normal;
	padding: .4em 1em
}

input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0
}

.ui-controlgroup {
	vertical-align: middle;
	display: inline-block
}

.ui-controlgroup>.ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0
}

.ui-controlgroup>.ui-controlgroup-item:focus,
.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus {
	z-index: 9999
}

.ui-controlgroup-vertical>.ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left
}

.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box
}

.ui-controlgroup .ui-controlgroup-label {
	padding: .4em 1em
}

.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%
}

.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item {
	border-left: none
}

.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item {
	border-top: none
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none
}

.ui-controlgroup-vertical .ui-spinner-input {
	width: 75%;
	width: calc(100% - 2.4em)
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid
}

.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: .12em;
	border: none
}

.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
	background-image: none;
	width: 8px;
	height: 8px;
	border-width: 4px;
	border-style: solid
}

.ui-checkboxradio-disabled {
	pointer-events: none
}

.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none
}

.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px
}

.ui-datepicker .ui-datepicker-prev {
	left: 2px
}

.ui-datepicker .ui-datepicker-next {
	right: 2px
}

.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px
}

.ui-datepicker .ui-datepicker-next-hover {
	right: 1px
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px
}

.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center
}

.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%
}

.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em
}

.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0
}

.ui-datepicker td {
	border: 0;
	padding: 1px
}

.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none
}

.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0
}

.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left
}

.ui-datepicker.ui-datepicker-multi {
	width: auto
}

.ui-datepicker-multi .ui-datepicker-group {
	float: left
}

.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em
}

.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%
}

.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%
}

.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left
}

.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0
}

.ui-datepicker-rtl {
	direction: rtl
}

.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto
}

.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px
}

.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em
}

.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0
}

.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative
}

.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis
}

.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px
}

.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto
}

.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right
}

.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer
}

.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0
}

.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0
}

.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0
}

.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
	width: 7px;
	height: 7px
}

.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0
}

.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0
}

.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0
}

.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0
}

.ui-draggable .ui-dialog-titlebar {
	cursor: move
}

.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none
}

.ui-resizable {
	position: relative
}

.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none
}

.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0
}

.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0
}

.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%
}

.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%
}

.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px
}

.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px
}

.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px
}

.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px
}

.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden
}

.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%
}

.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	-ms-filter: "alpha(opacity=25)";
	opacity: 0.25
}

.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none
}

.ui-selectable {
	-ms-touch-action: none;
	touch-action: none
}

.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black
}

.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none
}

.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0
}

.ui-selectmenu-open {
	display: block
}

.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis
}

.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em
}

.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0
}

.ui-slider {
	position: relative;
	text-align: left
}

.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: pointer;
	-ms-touch-action: none;
	touch-action: none
}

.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit
}

.ui-slider-horizontal {
	height: .8em
}

.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em
}

.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%
}

.ui-slider-horizontal .ui-slider-range-min {
	left: 0
}

.ui-slider-horizontal .ui-slider-range-max {
	right: 0
}

.ui-slider-vertical {
	width: .8em;
	height: 100px
}

.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em
}

.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%
}

.ui-slider-vertical .ui-slider-range-min {
	bottom: 0
}

.ui-slider-vertical .ui-slider-range-max {
	top: 0
}

.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none
}

.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle
}

.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: .222em 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 2em
}

.ui-spinner-button {
	width: 1.6em;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0
}

.ui-spinner a.ui-spinner-button {
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none
}

.ui-spinner-up {
	top: 0
}

.ui-spinner-down {
	bottom: 0
}

.ui-tabs {
	position: relative;
	padding: .2em
}

.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0
}

.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer
}

.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none
}

.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px
}

body .ui-tooltip {
	border-width: 2px
}

.ui-widget {
	font-family: Verdana, Arial, sans-serif;
	font-size: 1.1em
}

.ui-widget .ui-widget {
	font-size: 1em
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Verdana, Arial, sans-serif;
	font-size: 1em
}

.ui-widget.ui-widget-content {
	border: 1px solid #d3d3d3
}

.ui-widget-content {
	border: 1px solid #aaa;
	background: #fff;
	color: #222
}

.ui-widget-content a {
	color: #222
}

.ui-widget-header {
	border: 1px solid #aaa;
	background: #ccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
	color: #222;
	font-weight: bold
}

.ui-widget-header a {
	color: #222
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #d3d3d3;
	background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #555
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #555;
	text-decoration: none
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: 1px solid #999;
	background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #212121
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
	color: #212121;
	text-decoration: none
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214)
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #aaa;
	background: #fff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #212121
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #aaa;
	background-color: #212121
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
	color: #363636
}

.ui-state-checked {
	border: 1px solid #fcefa1;
	background: #fbf9ee
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
	color: #cd0a0a
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	-ms-filter: "alpha(opacity=70)";
	font-weight: normal
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	-ms-filter: "alpha(opacity=35)";
	background-image: none
}

.ui-state-disabled .ui-icon {
	-ms-filter: "alpha(opacity=35)"
}

.ui-icon {
	width: 16px;
	height: 16px
}

.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("images/ui-icons_222222_256x240.png")
}

.ui-widget-header .ui-icon {
	background-image: url("images/ui-icons_222222_256x240.png")
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	background-image: url("images/ui-icons_454545_256x240.png")
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
	background-image: url("images/ui-icons_454545_256x240.png")
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
	background-image: url("images/ui-icons_2e83ff_256x240.png")
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("images/ui-icons_cd0a0a_256x240.png")
}

.ui-button .ui-icon {
	background-image: url("images/ui-icons_888888_256x240.png")
}

.ui-icon-blank.ui-icon-blank.ui-icon-blank {
	background-image: none
}

.ui-icon-caret-1-n {
	background-position: 0 0
}

.ui-icon-caret-1-ne {
	background-position: -16px 0
}

.ui-icon-caret-1-e {
	background-position: -32px 0
}

.ui-icon-caret-1-se {
	background-position: -48px 0
}

.ui-icon-caret-1-s {
	background-position: -65px 0
}

.ui-icon-caret-1-sw {
	background-position: -80px 0
}

.ui-icon-caret-1-w {
	background-position: -96px 0
}

.ui-icon-caret-1-nw {
	background-position: -112px 0
}

.ui-icon-caret-2-n-s {
	background-position: -128px 0
}

.ui-icon-caret-2-e-w {
	background-position: -144px 0
}

.ui-icon-triangle-1-n {
	background-position: 0 -16px
}

.ui-icon-triangle-1-ne {
	background-position: -16px -16px
}

.ui-icon-triangle-1-e {
	background-position: -32px -16px
}

.ui-icon-triangle-1-se {
	background-position: -48px -16px
}

.ui-icon-triangle-1-s {
	background-position: -65px -16px
}

.ui-icon-triangle-1-sw {
	background-position: -80px -16px
}

.ui-icon-triangle-1-w {
	background-position: -96px -16px
}

.ui-icon-triangle-1-nw {
	background-position: -112px -16px
}

.ui-icon-triangle-2-n-s {
	background-position: -128px -16px
}

.ui-icon-triangle-2-e-w {
	background-position: -144px -16px
}

.ui-icon-arrow-1-n {
	background-position: 0 -32px
}

.ui-icon-arrow-1-ne {
	background-position: -16px -32px
}

.ui-icon-arrow-1-e {
	background-position: -32px -32px
}

.ui-icon-arrow-1-se {
	background-position: -48px -32px
}

.ui-icon-arrow-1-s {
	background-position: -65px -32px
}

.ui-icon-arrow-1-sw {
	background-position: -80px -32px
}

.ui-icon-arrow-1-w {
	background-position: -96px -32px
}

.ui-icon-arrow-1-nw {
	background-position: -112px -32px
}

.ui-icon-arrow-2-n-s {
	background-position: -128px -32px
}

.ui-icon-arrow-2-ne-sw {
	background-position: -144px -32px
}

.ui-icon-arrow-2-e-w {
	background-position: -160px -32px
}

.ui-icon-arrow-2-se-nw {
	background-position: -176px -32px
}

.ui-icon-arrowstop-1-n {
	background-position: -192px -32px
}

.ui-icon-arrowstop-1-e {
	background-position: -208px -32px
}

.ui-icon-arrowstop-1-s {
	background-position: -224px -32px
}

.ui-icon-arrowstop-1-w {
	background-position: -240px -32px
}

.ui-icon-arrowthick-1-n {
	background-position: 1px -48px
}

.ui-icon-arrowthick-1-ne {
	background-position: -16px -48px
}

.ui-icon-arrowthick-1-e {
	background-position: -32px -48px
}

.ui-icon-arrowthick-1-se {
	background-position: -48px -48px
}

.ui-icon-arrowthick-1-s {
	background-position: -64px -48px
}

.ui-icon-arrowthick-1-sw {
	background-position: -80px -48px
}

.ui-icon-arrowthick-1-w {
	background-position: -96px -48px
}

.ui-icon-arrowthick-1-nw {
	background-position: -112px -48px
}

.ui-icon-arrowthick-2-n-s {
	background-position: -128px -48px
}

.ui-icon-arrowthick-2-ne-sw {
	background-position: -144px -48px
}

.ui-icon-arrowthick-2-e-w {
	background-position: -160px -48px
}

.ui-icon-arrowthick-2-se-nw {
	background-position: -176px -48px
}

.ui-icon-arrowthickstop-1-n {
	background-position: -192px -48px
}

.ui-icon-arrowthickstop-1-e {
	background-position: -208px -48px
}

.ui-icon-arrowthickstop-1-s {
	background-position: -224px -48px
}

.ui-icon-arrowthickstop-1-w {
	background-position: -240px -48px
}

.ui-icon-arrowreturnthick-1-w {
	background-position: 0 -64px
}

.ui-icon-arrowreturnthick-1-n {
	background-position: -16px -64px
}

.ui-icon-arrowreturnthick-1-e {
	background-position: -32px -64px
}

.ui-icon-arrowreturnthick-1-s {
	background-position: -48px -64px
}

.ui-icon-arrowreturn-1-w {
	background-position: -64px -64px
}

.ui-icon-arrowreturn-1-n {
	background-position: -80px -64px
}

.ui-icon-arrowreturn-1-e {
	background-position: -96px -64px
}

.ui-icon-arrowreturn-1-s {
	background-position: -112px -64px
}

.ui-icon-arrowrefresh-1-w {
	background-position: -128px -64px
}

.ui-icon-arrowrefresh-1-n {
	background-position: -144px -64px
}

.ui-icon-arrowrefresh-1-e {
	background-position: -160px -64px
}

.ui-icon-arrowrefresh-1-s {
	background-position: -176px -64px
}

.ui-icon-arrow-4 {
	background-position: 0 -80px
}

.ui-icon-arrow-4-diag {
	background-position: -16px -80px
}

.ui-icon-extlink {
	background-position: -32px -80px
}

.ui-icon-newwin {
	background-position: -48px -80px
}

.ui-icon-refresh {
	background-position: -64px -80px
}

.ui-icon-shuffle {
	background-position: -80px -80px
}

.ui-icon-transfer-e-w {
	background-position: -96px -80px
}

.ui-icon-transferthick-e-w {
	background-position: -112px -80px
}

.ui-icon-folder-collapsed {
	background-position: 0 -96px
}

.ui-icon-folder-open {
	background-position: -16px -96px
}

.ui-icon-document {
	background-position: -32px -96px
}

.ui-icon-document-b {
	background-position: -48px -96px
}

.ui-icon-note {
	background-position: -64px -96px
}

.ui-icon-mail-closed {
	background-position: -80px -96px
}

.ui-icon-mail-open {
	background-position: -96px -96px
}

.ui-icon-suitcase {
	background-position: -112px -96px
}

.ui-icon-comment {
	background-position: -128px -96px
}

.ui-icon-person {
	background-position: -144px -96px
}

.ui-icon-print {
	background-position: -160px -96px
}

.ui-icon-trash {
	background-position: -176px -96px
}

.ui-icon-locked {
	background-position: -192px -96px
}

.ui-icon-unlocked {
	background-position: -208px -96px
}

.ui-icon-bookmark {
	background-position: -224px -96px
}

.ui-icon-tag {
	background-position: -240px -96px
}

.ui-icon-home {
	background-position: 0 -112px
}

.ui-icon-flag {
	background-position: -16px -112px
}

.ui-icon-calendar {
	background-position: -32px -112px
}

.ui-icon-cart {
	background-position: -48px -112px
}

.ui-icon-pencil {
	background-position: -64px -112px
}

.ui-icon-clock {
	background-position: -80px -112px
}

.ui-icon-disk {
	background-position: -96px -112px
}

.ui-icon-calculator {
	background-position: -112px -112px
}

.ui-icon-zoomin {
	background-position: -128px -112px
}

.ui-icon-zoomout {
	background-position: -144px -112px
}

.ui-icon-search {
	background-position: -160px -112px
}

.ui-icon-wrench {
	background-position: -176px -112px
}

.ui-icon-gear {
	background-position: -192px -112px
}

.ui-icon-heart {
	background-position: -208px -112px
}

.ui-icon-star {
	background-position: -224px -112px
}

.ui-icon-link {
	background-position: -240px -112px
}

.ui-icon-cancel {
	background-position: 0 -128px
}

.ui-icon-plus {
	background-position: -16px -128px
}

.ui-icon-plusthick {
	background-position: -32px -128px
}

.ui-icon-minus {
	background-position: -48px -128px
}

.ui-icon-minusthick {
	background-position: -64px -128px
}

.ui-icon-close {
	background-position: -80px -128px
}

.ui-icon-closethick {
	background-position: -96px -128px
}

.ui-icon-key {
	background-position: -112px -128px
}

.ui-icon-lightbulb {
	background-position: -128px -128px
}

.ui-icon-scissors {
	background-position: -144px -128px
}

.ui-icon-clipboard {
	background-position: -160px -128px
}

.ui-icon-copy {
	background-position: -176px -128px
}

.ui-icon-contact {
	background-position: -192px -128px
}

.ui-icon-image {
	background-position: -208px -128px
}

.ui-icon-video {
	background-position: -224px -128px
}

.ui-icon-script {
	background-position: -240px -128px
}

.ui-icon-alert {
	background-position: 0 -144px
}

.ui-icon-info {
	background-position: -16px -144px
}

.ui-icon-notice {
	background-position: -32px -144px
}

.ui-icon-help {
	background-position: -48px -144px
}

.ui-icon-check {
	background-position: -64px -144px
}

.ui-icon-bullet {
	background-position: -80px -144px
}

.ui-icon-radio-on {
	background-position: -96px -144px
}

.ui-icon-radio-off {
	background-position: -112px -144px
}

.ui-icon-pin-w {
	background-position: -128px -144px
}

.ui-icon-pin-s {
	background-position: -144px -144px
}

.ui-icon-play {
	background-position: 0 -160px
}

.ui-icon-pause {
	background-position: -16px -160px
}

.ui-icon-seek-next {
	background-position: -32px -160px
}

.ui-icon-seek-prev {
	background-position: -48px -160px
}

.ui-icon-seek-end {
	background-position: -64px -160px
}

.ui-icon-seek-start {
	background-position: -80px -160px
}

.ui-icon-seek-first {
	background-position: -80px -160px
}

.ui-icon-stop {
	background-position: -96px -160px
}

.ui-icon-eject {
	background-position: -112px -160px
}

.ui-icon-volume-off {
	background-position: -128px -160px
}

.ui-icon-volume-on {
	background-position: -144px -160px
}

.ui-icon-power {
	background-position: 0 -176px
}

.ui-icon-signal-diag {
	background-position: -16px -176px
}

.ui-icon-signal {
	background-position: -32px -176px
}

.ui-icon-battery-0 {
	background-position: -48px -176px
}

.ui-icon-battery-1 {
	background-position: -64px -176px
}

.ui-icon-battery-2 {
	background-position: -80px -176px
}

.ui-icon-battery-3 {
	background-position: -96px -176px
}

.ui-icon-circle-plus {
	background-position: 0 -192px
}

.ui-icon-circle-minus {
	background-position: -16px -192px
}

.ui-icon-circle-close {
	background-position: -32px -192px
}

.ui-icon-circle-triangle-e {
	background-position: -48px -192px
}

.ui-icon-circle-triangle-s {
	background-position: -64px -192px
}

.ui-icon-circle-triangle-w {
	background-position: -80px -192px
}

.ui-icon-circle-triangle-n {
	background-position: -96px -192px
}

.ui-icon-circle-arrow-e {
	background-position: -112px -192px
}

.ui-icon-circle-arrow-s {
	background-position: -128px -192px
}

.ui-icon-circle-arrow-w {
	background-position: -144px -192px
}

.ui-icon-circle-arrow-n {
	background-position: -160px -192px
}

.ui-icon-circle-zoomin {
	background-position: -176px -192px
}

.ui-icon-circle-zoomout {
	background-position: -192px -192px
}

.ui-icon-circle-check {
	background-position: -208px -192px
}

.ui-icon-circlesmall-plus {
	background-position: 0 -208px
}

.ui-icon-circlesmall-minus {
	background-position: -16px -208px
}

.ui-icon-circlesmall-close {
	background-position: -32px -208px
}

.ui-icon-squaresmall-plus {
	background-position: -48px -208px
}

.ui-icon-squaresmall-minus {
	background-position: -64px -208px
}

.ui-icon-squaresmall-close {
	background-position: -80px -208px
}

.ui-icon-grip-dotted-vertical {
	background-position: 0 -224px
}

.ui-icon-grip-dotted-horizontal {
	background-position: -16px -224px
}

.ui-icon-grip-solid-vertical {
	background-position: -32px -224px
}

.ui-icon-grip-solid-horizontal {
	background-position: -48px -224px
}

.ui-icon-gripsmall-diagonal-se {
	background-position: -64px -224px
}

.ui-icon-grip-diagonal-se {
	background-position: -80px -224px
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px
}

.ui-widget-overlay {
	background: #aaa;
	opacity: .3;
	-ms-filter: "alpha(opacity=30)"
}

.ui-widget-shadow {
	-webkit-box-shadow: -8px -8px 8px #aaa;
	box-shadow: -8px -8px 8px #aaa
}

@media all and (min-width: 1001px) {
	@media all and (max-height: 800px) {
		.prod-first-screen .inf {
			min-height: 1px;
		}

		.prod-first-screen .inf .bottom {
			padding-top: 60px;
		}

		.prod-first-screen .inf h1 {
			font-size: 70px;
			line-height: 100%;
		}

		.prod-first-screen .inf .price {
			font-size: 46px;
		}

		.service .prod-first-screen .pic {
			min-height: 400px;
			max-height: calc(100dvh - 150px);
			min-height: 480px;
		}

		.service .prod-first-screen .inf h1 {
			font-size: 70px;
		}

		.service .prod-first-screen {
			min-height: 650px;
		}
	}

	@media all and (max-height: 750px) {
		.first-screen h1 {
			font-size: 70px;
		}
	}

	@media all and (max-height: 650px) {
		.first-screen h1 {
			font-size: 60px;
		}
	}
}

@media all and (max-width:1400px) {
	.brands-block .quote-block .txt {
		font-size: 30px;
	}

	.to-block .pic {
		margin-left: 40px;
	}

	.brands-block .quote-block {
		width: 500px;
	}

	.brands-block .brands-list,
	.brands-block .text-block {
		width: calc(100% - 540px);
	}

	.brands-block .brands-list .block {
		height: 200px;
	}

	.brands-block .quote-block .txt {
		min-height: 200px;
		max-width: 400px;
		font-size: 34px;
	}

	.rent-blocks .block .title,
	.rent-blocks .block .price {
		font-size: 26px;
		letter-spacing: 0;
	}

	.rent-blocks .block {
		width: calc(100% / 3 - 12px);
	}

	.service .terms-block .pic {
		height: 302px;
	}

	.warranty-page .top .quote-block {
		font-size: 20px;
	}

	.warranty-page .top .quote-block .author .name {
		font-size: 24px;
	}

	.spoiler-block .hidden-content {
		font-size: 16px;
	}

	.spoiler-block .title {
		font-size: 20px;
	}

	.reasons-list .block {
		height: 260px;
		padding: 20px;
	}

	.reasons-list .block .title {
		font-size: 28px;
		letter-spacing: -1px;
	}

	.brands-list .block {
		height: 200px;
	}

	.first-screen .car.go {
		right: 55%;
	}

	.specials-list .special-block .title {
		height: 80px;
		padding: 0 40px;
		font-size: 30px;
	}

	.specials-list .special-block .gallery .item {
		height: 30vw;
	}

	.char-block .t {
		font-size: 28px;
	}

	.inner-content h1.small {
		font-size: 46px;
	}

	.filter-tags {
		margin: 0;
		padding: 0 0 26px;
	}

	.catalog-page .filter-col {
		margin-right: 30px;
	}

	.catalog-page .right-content {
		width: calc(100% - 333px);
	}

	.categories-list .block {
		font-size: 16px;
	}

	.categories-list .block .price {
		font-size: 28px;
	}

	.inner-content h1 {
		font-size: 60px;
		letter-spacing: -1px;
		margin: 0 0 40px;
		line-height: 110%;
	}

	.projects-list.owl-carousel .owl-nav {
		top: -116px;
	}

	.categories-list.owl-carousel .owl-nav {
		max-width: calc(100vw - 60px);
		top: -116px;
	}

	.all {
		padding: 0 30px;
	}

	.content h2 {
		font-size: 55px;
	}

	.services-block .serv-item .title {
		font-size: 26px;
	}
}


@media all and (max-width:1200px) {
	.cat-blocks.owl-carousel .owl-nav {
		display: none;
	}

	.detail .prod-first-screen .pic {
		min-width: 500px;
	}

	.detail .prod-first-screen .breadcrumbs li {
		margin-bottom: 10px;
	}

	.detail .prod-first-screen .breadcrumbs {
		margin-bottom: 30px;
	}

	.detail .prod-first-screen .breadcrumbs,
	.detail .prod-first-screen .inf>*,
	.detail .prod-first-screen .inf ul.chars,
	.detail .prod-first-screen .inf>*:not(.breadcrumbs) {
		max-width: calc(100% - 450px);
	}

	.detail .prod-first-screen .inf h1 {
		margin-bottom: 40px;
		font-size: 46px;
	}

	.brands-block.green {
		align-items: center;
	}

	.to-terms .block .btn {
		padding-left: 20px;
		padding-right: 40px;
	}

	.to-terms .block .title {
		font-size: 24px;
	}

	.to-terms .block {
		font-size: 16px;
		width: calc(100% / 3 - 12px);
	}

	.to-terms .block .subtitle {
		font-size: 20px;
	}

	.to-block .txt {
		width: 440px;
		height: 480px;
		padding: 10vw 40px 0;
	}

	.to-block {
		padding: 30px 40px 0;
		justify-content: space-between;
	}

	.to-block .pic {
		margin-left: 0;
		transform: scale(0.9);
	}

	.to-block .txt .title {
		font-size: 26px;
	}

	.repair-warranty-block .block .title {
		font-size: 24px;
	}

	.brands-block .quote-block .txt .photo {
		width: 100px;
		height: 100px;
		top: -50px;
		left: -50px;
	}

	.brands-block.right .quote-block .txt .photo {
		left: auto;
		right: -50px;
	}

	.brands-block .quote-block .txt {
		min-height: 160px;
		max-width: calc(100% - 50px);
		font-size: 24px;
	}

	.brands-block .quote-block {
		width: 400px;
	}

	.brands-block .brands-list,
	.brands-block .text-block {
		width: calc(100% - 440px);
	}

	.brands-block .brands-list .block {
		height: 140px;
		padding: 20px;
	}

	.service .prod-first-screen .inf h1 {
		font-size: 50px;
	}

	.tg-subs-block.space:after {
		right: -70px;
	}

	.pay-methods .block+.block,
	.pay-methods .block {
		width: calc(50% - 15px);
	}

	.pay-methods .block {
		padding: 30px;
	}

	.pay-methods .block .logos {
		margin-bottom: -20px;
	}

	.pay-methods .block .logos .logo {
		margin-bottom: 20px;
		width: 100px;
		height: 100px;
	}

	.pay-methods .block .logos .logo+.logo {
		margin-left: 20px;
	}

	.delivery-cost-block .left table th {
		font-size: 20px;
	}

	.delivery-cost-block .pic {
		width: calc(50% - 20px);
	}

	.delivery-cost-block .left {
		width: calc(50% - 20px);
	}

	.delivery-cost-block {
		margin-top: 0;
	}

	.delivery-terms {
		background-image: none;
		display: block;
	}

	.delivery-terms .txt {
		width: 100%;
		margin: 0 0 40px;
	}

	.delivery-terms .logos {
		justify-content: flex-start;
		width: 100%;
	}

	.delivery-terms .logos .bl+.bl {
		margin-left: 30px;
	}

	.pay-methods .block:first-child,
	.pay-methods .block .title {
		font-size: 24px;
	}

	.delivery-terms .txt .title {
		font-size: 24px;
	}

	.delivery-page .regions .title {
		font-size: 24px;
	}

	.warranty-page h3,
	.delivery-page h3,
	.service h3 {
		font-size: 28px;
		margin: 0 0 30px;
	}

	.diagnostics-block .txt h3,
	.warranty-page h3 {
		font-size: 36px;
	}

	.diagnostics-block .pic {
		width: 450px;
	}

	.diagnostics-block .txt {
		width: calc(100% - 450px);
	}

	.diagnostics-block .txt .dealers-block .block {
		padding: 20px;
	}

	.diagnostics-block .txt .dealers-block .block .title {
		font-size: 20px;
	}

	.warranty-page .top .left {
		width: 450px;
		margin: 0 40px 0 0;
	}

	.warranty-page .top .quote-block {
		width: calc(100% - 490px);
	}

	.warranty-page .top .quote-block {
		font-size: 16px;
	}

	.warranty-page .top .quote-block .author .photo {
		width: 80px;
		height: 80px;
	}

	.warranty-page .top .quote-block .author .inf .name {
		font-size: 18px;
	}

	.warranty-page .top .quote-block .author {
		margin-top: 20px;
		font-size: 14px;
	}

	.warranty-page .periods .block .title {
		font-size: 28px;
	}

	.spoiler-block .title {
		font-size: 16px;
	}

	.spoiler-block {
		padding: 22px 20px;
		min-height: 62px;
	}

	.terms-block .pic {
		height: 454px;
	}

	.projects-page .projects-list .proj-block .inf .title {
		font-size: 28px;
	}

	.projects-page .projects-list .proj-block .inf {
		padding: 20px 20px 50px;
		font-size: 16px;
	}

	.projects-page .projects-list .proj-block .inf .btn {
		font-size: 14px;
	}

	.projects-page .text-descr {
		top: 185px;
	}

	.projects-page .projects-list {
		margin-right: -12px;
		width: calc(100% + 12px);
	}

	.projects-page .projects-list .proj-block {
		width: calc(100% / 3 - 12px);
		margin: 0 12px 30px 0;
	}

	.tg-subs-block.girl:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		border-radius: 20px;
		background: url(../img/tg-girl.webp) bottom right 90px/auto 360px no-repeat, url(../img/tg-rounds.svg) bottom right/auto 95% no-repeat;
		background-color: #BAE00B;
	}

	.tg-subs-block.girl2:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		border-radius: 20px;
		background: url(../img/tg-girl2.webp) bottom right -90px/auto 510px no-repeat, url(../img/tg-rounds.svg) bottom right/auto 95% no-repeat;
		background-color: #BAE00B;
	}

	.tg-subs-block.man2:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		border-radius: 20px;
		background: url(../img/tg-man2.png) bottom right -130px/auto 460px no-repeat, url(../img/tg-rounds.svg) bottom right/auto 95% no-repeat;
		background-color: #BAE00B;
	}

	.staff-list .block .inf .name {
		font-size: 20px;
	}

	.staff-list .block .inf {
		padding: 0;
	}

	.brands-list .block {
		height: 170px;
	}

	.brands-list .block img {
		max-height: 100px;
	}

	.about-page .cat-blocks .cat-block,
	.service-page .cat-blocks .cat-block {
		width: calc(100% / 3 - 30px);
	}

	.about-page .cat-blocks .cat-block .title,
	.service-page .cat-blocks .cat-block .title {
		height: 66px;
		display: flex;
		line-height: 129%;
		align-items: center;
		padding: 0 60px 0 20px;
	}

	.about-txt .right-txt {
		font-size: 46px;
		margin-top: -45px;
		max-width: 350px;
		line-height: 100%;
	}

	.specials-list .special-block.list ul {
		font-size: 18px;
		padding-left: 0;
	}

	.specials-list .special-block.list ul li+li {
		margin-top: 12px;
	}

	.bottom-connect-block .tg-subs-block.connect {
		background: #BAE00B;
	}

	.features-block {
		min-height: 35vw;
	}

	.features-block .txt {
		font-size: 16px;
		padding: 40px;
	}

	.features-block .txt h3 {
		font-size: 36px;
	}

	.gallery-and-chars .gallery .item {
		height: 340px;
	}

	.gallery-and-chars .chars .block {
		height: 160px;
	}

	.gallery-and-chars .chars .block .t {
		font-size: 30px;
	}

	.prod-first-screen .inf {
		min-height: 1px;
	}

	.prod-first-screen .inf .bottom {
		padding: 40px 0 0 0;
	}

	.prod-first-screen .inf .bottom ul li {
		margin: 0 16px 16px 0;
	}

	.prod-first-screen .inf h1 {
		font-size: 50px;
	}

	.prod-first-screen .inf .price {
		font-size: 40px;
	}

	.no-search-results {
		font-size: 18px;
	}

	.no-search-results .btn {
		max-width: 400px;
	}

	.no-search-results h1 {
		font-size: 40px;
		max-width: 450px;
	}

	.categories-list .block .price {
		font-size: 24px;
		margin: 4px 0 0 0;
	}

	.categories-list .block .labels .label {
		padding: 0 12px;
		line-height: 33px;
		font-size: 12px;
	}

	.categories-list .block .labels .label+.label {
		margin-left: 4px;
	}

	.categories-list .block .pic {
		height: 150px;
	}

	.categories-list .block {
		margin: 0 0 12px;
		height: 220px;
		width: calc(50% - 6px);
	}

	.inner-content h1 {
		font-size: 46px;
	}

	.projects-list.owl-carousel {
		overflow: visible;
	}

	.projects-list.owl-carousel .owl-stage-outer {
		overflow: visible;
	}

	.projects-list.owl-carousel .owl-nav {
		display: none;
	}

	.categories-list.owl-carousel .owl-nav {
		display: none;
	}

	.all {
		padding: 0 25px;
	}

	.first-screen:before {
		max-width: calc(100% - 480px);
	}

	.first-screen h1 {
		font-size: 65px;
	}

	@media all and (max-height: 750px) {
		.first-screen h1 {
			font-size: 60px;
		}
	}

	@media all and (max-height: 650px) {
		.first-screen h1 {
			font-size: 50px;
		}
	}

	.first-screen .txt {
		max-width: 450px;
	}

	.cat-blocks.owl-carousel {
		width: calc(100% - 100px);
	}

	.cat-blocks .cat-block {
		width: calc(50% - 30px);
	}

	.content h2 {
		font-size: 47px;
		letter-spacing: -1px;
	}

	.tg-subs-block {
		background-size: auto 400px;
		min-height: 400px;
		padding: 40px 40px 150px;
	}

	.tg-subs-block.connect {
		padding-bottom: 250px;
		background: url(../img/iphone-bg.webp) bottom right/400px auto no-repeat, url(../img/tg-rounds1.svg) bottom right/auto 400px no-repeat;
		background-color: #BAE00B;
	}

	.tg-subs-block .btns {
		left: 40px;
		bottom: 40px;
	}

	.services-block .serv-item .inf {
		padding: 20px 20px 110px;
		min-height: calc(100% - (20vw + 20px));
	}

	.services-block .serv-item .inf .btn {
		left: 20px;
		bottom: 20px;
		width: calc(100% - 40px);
	}

	.services-block .serv-item .pic {
		height: 20vw;
	}

	footer {
		font-size: 16px;
	}

	footer .cols .left {
		width: 350px;
	}

	footer .cols .right {
		width: calc(100% - 350px);
	}

	footer .cols.bottom {
		font-size: 14px;
	}

	.garia-via .txt ul li+li {
		margin-top: 18px;
	}

	.garia-via .txt {
		padding: 40px;
	}

	header nav .bottom {
		padding-top: 60px;
	}

	header nav .logo {
		max-width: 200px;
	}

	header nav ul li a {
		font-size: 22px;
	}
}

@media all and (max-width:1000px) {
	.detail .prod-first-screen {
		padding-bottom: 60px;
	}

	.detail .prod-first-screen .breadcrumbs {
		font-size: 14px;
		margin: 0 0 20px;
	}

	.detail .prod-first-screen .inf h1 small {
		font-size: 18px;
		margin: 0 0 8px;
	}

	ul.breadcrumbs li:not(:last-child):after {
		top: 5px;
		width: 5px;
		height: 5px;
	}

	ul.breadcrumbs li span {
		display: none;
	}

	ul.breadcrumbs li:nth-last-child(2) a {
		color: rgba(255, 255, 255, 0.3);
	}

	ul.breadcrumbs li:nth-last-child(2):after {
		display: none;
	}

	.detail .prod-first-screen .inf {
		padding: 0;
	}

	.detail .prod-first-screen {
		max-height: 999999px;
		display: block;
	}

	.detail .prod-first-screen .inf>*:not(.breadcrumbs),
	.detail .prod-first-screen .inf>*,
	.detail .prod-first-screen .breadcrumbs,
	.detail .prod-first-screen .inf>*,
	.detail .prod-first-screen .inf ul.chars {
		max-width: 100%;
	}

	.detail .prod-first-screen .pic {
		max-height: 999999px;
		position: relative;
		width: 100%;
		height: auto;
		transform: none;
		top: auto;
	}

	.brands-block .text-block .title.mob-only {
		display: block;
	}

	.content {
		font-size: 16px;
	}

	.content h2.left.desktop-only {
		display: none;
	}

	.brands-block.green {
		margin-bottom: 40px;
	}

	.service .darkblue-bg .regulations-block h2 {
		font-size: 28px;
		line-height: 129%;
		margin-bottom: 14px;
	}

	.regulations-block .text-descr {
		display: block;
		font-size: 14px;
		margin: 0 0 30px;
	}

	.to-terms .block {
		padding: 0px;
		background: none;
		border-radius: 0;
		width: 100%;
		margin: 0 0 30px;
	}

	.to-terms .block .title {
		padding: 20px 40px 20px 20px;
		position: relative;
		margin: 0;
		border-radius: 20px;
		background: #F2F2F2;
	}

	.to-terms .block .title:after {
		transition: all 0.3s ease;
		width: 24px;
		height: 24px;
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		margin-top: -12px;
		right: 20px;
		background: url(../img/spoiler-arr.svg) center center no-repeat;
		transform: scale(1, -1);
	}

	.to-terms .block.open .title:after {
		transform: none;
	}

	.to-terms .block .inf {
		display: none;
		padding: 24px 10px 0;
	}

	.to-terms .block .inf .btn {
		display: none;
	}

	.to-terms {
		margin-top: 40px;
		display: block;
		margin-bottom: 60px;
	}

	.content h2.left br {
		display: none;
	}

	.to-block .txt .btn {
		top: 50px;
		right: 30px;
		bottom: auto;
	}

	.to-block .txt .btn .arr:after {
		transform: none !important;
		filter: none !important;
		background-size: 18px auto;
	}

	.to-block .txt .btn .arr {
		background: #BAE00B !important;
		width: 40px;
		height: 40px;
	}

	.to-block .txt {
		line-height: 129%;
		font-size: 14px;
		background-position: top center;
		background-size: 100% auto;
		padding: 60px 30px;
		width: 293px;
		height: 300px;
		margin: 0 auto;
		margin-top: 350px;
		order: 2;
	}

	.to-block .txt ul.standart li {
		padding-left: 36px;
	}

	.to-block .txt ul.standart li+li {
		margin-top: 8px;
	}

	.to-block .txt ul.standart li:before {
		width: 20px;
		height: 20px;
		border-width: 6px;
	}

	.to-block .txt .title {
		font-size: 18px;
		margin: 0 0 24px;
	}

	.to-block .pic {
		position: absolute;
		left: 50%;
		top: 210px;
		margin: 0 auto;
		transform: translateX(-50%);
		zoom: 60%;
	}

	.to-block {
		margin-bottom: 40px;
		position: relative;
		padding: 30px 0 0;
		margin-top: 40px;
		flex-direction: column;
	}

	.to-block h2,
	.to-block h2 span {
		width: 100%;
		color: #fff;
	}

	.content .to-block h2 {
		padding-left: 30px;
		padding-right: 30px;
		font-size: 24px;
	}

	.repair-warranty-block {
		display: block;
	}

	.repair-warranty-block .block {
		width: 100%;
	}

	.repair-warranty-block .block+.block {
		margin-top: 30px;
	}

	.repair-warranty-block .block .inf {
		border-radius: 20px;
		padding: 30px;
		border: 1px solid rgba(255, 255, 255, 0.2);
	}

	.darkblue-bg .small-title {
		font-size: 18px;
	}

	.tg-subs-block.connect.tg-only .txt {
		width: 60%;
	}

	.brands-block {
		display: block;
	}

	.brands-block .quote-block,
	.brands-block.right .quote-block {
		margin: 0 0 24px;
		padding-top: 60px;
		width: 100%;
	}

	.brands-block .quote-block .txt {
		padding: 24px;
		min-height: 155px;
		margin-left: 0;
		margin-top: 0;
		max-width: calc(100% - 63px);
	}

	.brands-block .quote-block .txt .photo {
		width: 126px;
		height: 126px;
		left: auto;
		right: -63px;
		top: -63px;
	}

	.brands-block.green .quote-block .txt {
		margin-left: auto;
	}

	.brands-block.green .quote-block .txt .photo {
		right: auto;
		left: -63px;
	}

	.brands-block.green {
		margin-top: 0px;
	}

	.brands-block {
		margin-bottom: 60px;
	}

	.brands-block .brands-list,
	.brands-block .text-block {
		width: 100%;
	}

	.prod-first-screen .bg {
		background-position: bottom right -200px;
	}

	.service .prod-first-screen .inf h1 {
		letter-spacing: 0;
		font-size: 34px;
		line-height: 110%;
		margin: 0 0 14px;
	}

	.service .prod-first-screen .inf .price {
		letter-spacing: 0;
		font-size: 24px;
		line-height: 129%;
		margin: 0 0 30px;
	}

	.service .prod-first-screen {
		padding-bottom: 90px;
		align-items: flex-start;
		padding-top: 160px;
		height: auto;
	}

	.service .prod-first-screen:before {
		border-radius: 0 0 20px 20px;
	}

	.service .prod-first-screen .in {
		display: block;
		max-width: 600px;
		margin: 0 auto;
	}

	.service .prod-first-screen.with-bg .in {
		max-width: 100%;
	}

	.service .prod-first-screen .inf {
		padding: 0;
		width: 100%;
	}

	.service .prod-first-screen .inf .bottom {
		order: 2;
		padding-bottom: 0;
	}

	.service .prod-first-screen .inf .bottom ul {
		max-width: 100%;
	}

	.service .prod-first-screen .pic {
		min-height: 1px;
		height: 320px;
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}

	.service .prod-first-screen .btns {
		max-width: 100%;
	}

	.service .prod-first-screen:not(.with-bg) .inf .bottom .btn {
		max-width: calc(50% - 7px);
	}

	.rent-blocks .block {
		width: 100%;
		margin: 0 0 24px;
	}

	.rent-blocks {
		display: block;
	}

	.tg-subs-block.space {
		padding-bottom: 363px;
	}

	.tg-subs-block.space p {
		display: none;
	}

	.tg-subs-block.space .btns {
		position: relative;
		bottom: auto;
		left: auto;
		margin-top: 24px;
	}

	.tg-subs-block.space:after {
		height: 100%;
		width: 100%;
		bottom: 0;
		top: 0;
		right: auto;
		left: 0;
		border-radius: 20px;
		max-width: 100%;
		background: url(../img/connect-space-bg.webp) bottom center/350px auto no-repeat, url(../img/connect-planet.webp) bottom center/cover no-repeat;
		background-color: #1C263C;
	}

	.pay-methods {
		margin-bottom: 40px;
	}

	.pay-methods .block ul.i li {
		padding-left: 36px;
	}

	.pay-methods .block ul.i li:before {
		background-size: auto 10px;
		top: 0;
		margin-top: 0;
		width: 20px;
		height: 20px;
	}

	.pay-methods .block ul.i li+li {
		margin-top: 14px;
	}

	.pay-methods .block:first-child {
		color: #1C263C;
	}

	.pay-methods .block:first-child small {
		font-size: 14px;
		color: rgba(28, 38, 60, 0.6);
	}

	.pay-methods .block:first-child ul li+li {
		margin-top: 24px;
	}

	.pay-methods .block:first-child ul li:before {
		top: 15px;
	}

	.pay-methods .block .logos {
		-ms-overflow-style: none;
		scrollbar-width: none;
		flex-wrap: nowrap;
		margin: 0 -20px 40px;
		width: calc(100% + 40px);
		padding: 0 20px;
		overflow: auto;
	}

	.pay-methods .block .logos::-webkit-scrollbar {
		width: 0;
		height: 0;
	}

	.pay-methods .block .logos .logo {
		min-width: 150px;
		width: 150px;
		height: 150px;
		margin: 0 12px 0 0;
		border-radius: 20px;
		border: 1px solid rgba(28, 38, 60, 0.1);
		padding: 0 20px;
	}

	.pay-methods .block .logos .logo+.logo {
		margin-left: 0;
	}

	.delivery-cost-block .left table th {
		padding: 0 0 10px;
		font-weight: 500;
		text-align: left;
		font-size: 18px;
		line-height: 129%;
		color: #1C263C;
	}

	.delivery-cost-block .left table td {
		padding: 14px 10px 4px 0;
		border-bottom: 1px solid rgba(28, 38, 60, 0.3);
	}

	.delivery-cost-block .left table td:last-child {
		padding-left: 10px;
		padding-right: 0;
	}

	ul.standart li:before {
		width: 20px;
		height: 20px;
		border-width: 6px;
		border-color: #BAE00B;
	}

	ul.standart li {
		padding-left: 36px;
	}

	ul.standart li+li {
		margin-top: 14px;
	}

	ul.standart li:before {
		background: #1C263C;
	}

	.delivery-page .regions .block ul li:before {
		border-color: #BAE00B;
	}

	.pay-methods {
		display: block;
	}

	.pay-methods .block:first-child,
	.pay-methods .block+.block {
		background: none;
		padding: 0;
		border-radius: 0;
		width: 100%;
	}

	.delivery-cost-block .left {
		margin: 24px 0 0 0;
		width: 100%;
		display: none;
	}

	.delivery-page .delivery-cost-block h3 {
		margin: 0;
		color: #1C263C;
		padding: 20px 60px 20px 20px;
		position: relative;
		margin: 0;
		border-radius: 10px;
		background: #F2F2F2;
		font-size: 22px;
		line-height: 129%;
	}

	.delivery-cost-block h3:after {
		transition: all 0.3s ease;
		width: 24px;
		height: 24px;
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		margin-top: -12px;
		right: 20px;
		background: url(../img/spoiler-arr.svg) center center no-repeat;
		transform: scale(1, -1);
	}

	.delivery-cost-block.open h3:after {
		transform: none;
	}

	.delivery-cost-block .pic {
		display: none;
	}

	.delivery-cost-block {
		margin-bottom: 40px;
	}

	.delivery-page .categories-list.owl-carousel {
		margin: 24px 0 40px;
		overflow: visible;
	}

	.delivery-page .categories-list .block {
		width: 350px;
		min-width: 350px;
	}

	.delivery-page .regions {
		margin-bottom: 16px;
	}

	.delivery-page .regions .title {
		color: #1C263C;
		padding: 20px 60px 20px 20px;
		position: relative;
		margin: 0;
		border-radius: 10px;
		background: #F2F2F2;
		font-size: 22px;
		line-height: 129%;
	}

	.delivery-page .regions .title:after {
		transition: all 0.3s ease;
		width: 24px;
		height: 24px;
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		margin-top: -12px;
		right: 20px;
		background: url(../img/spoiler-arr.svg) center center no-repeat;
		transform: scale(1, -1);
	}

	.delivery-page .regions .open .title:after {
		transform: none;
	}

	.delivery-page .regions .title br {
		display: none;
	}

	.delivery-terms .logos {
		-ms-overflow-style: none;
		scrollbar-width: none;
		margin: 0 -20px;
		width: calc(100% + 40px);
		padding: 0 20px;
		overflow: auto;
	}

	.delivery-terms .logos::-webkit-scrollbar {
		width: 0;
		height: 0;
	}

	.delivery-terms .logos .bl {
		min-width: 150px;
		width: 150px;
		margin: 0 12px 0 0;
		border-radius: 20px;
		border: 1px solid rgba(28, 38, 60, 0.1);
		padding: 0 20px;
		transition: all 0.3s ease;
		opacity: 0;
		max-height: 0;
		overflow: hidden;
	}

	.delivery-terms.open .logos .bl {
		max-height: 150px;
		opacity: 1;
		margin-top: 14px;
	}

	.delivery-terms .logos .bl+.bl {
		margin-left: 0;
	}

	.delivery-page .regions .mob-hidden {
		display: none;
		margin-top: 24px;
	}

	.delivery-page .regions .title .desktop-block {
		display: none;
	}

	.delivery-terms {
		color: inherit;
		margin: 0 0 24px;
		padding: 0;
		border-radius: 0;
		background: none;
		order: 2;
	}

	.delivery-terms .txt {
		margin: 0;
		max-width: 100%;
	}

	.delivery-page .regions .block {
		margin: 0 0 24px;
		padding: 0;
		border-radius: 0;
		background: none;
		width: 100%;
		order: 2;
	}

	.delivery-page .regions .block:nth-child(2) {
		order: 1;
	}

	.warranty-page h3,
	.delivery-page h3,
	.service h3 {
		margin-bottom: 24px;
	}

	.delivery-page .map {
		margin: 0 0 40px;
		border-radius: 20px;
		height: 340px;
		overflow: hidden;
	}

	.delivery-page .map img {
		width: auto;
		height: 100%;
	}

	.diagnostics-block .txt h3,
	.warranty-page h3 {
		font-size: 24px;
		margin: 0 0 20px;
	}

	.terms-block {
		display: block;
	}

	.terms-block .left {
		width: 100%;
	}

	.terms-block .pic {
		display: none;
	}

	.warranty-page .periods {
		margin: 0 0 40px;
	}

	.warranty-page .periods .block {
		position: relative;
		padding-left: 38px;
	}

	.warranty-page .periods .block+.block {
		margin-top: 24px;
	}

	.warranty-page .periods .block .title {
		margin-bottom: 8px;
		font-size: 24px;
		line-height: 129%;
		font-weight: 500;
	}

	.warranty-page .periods .block .title:before {
		content: '';
		display: block;
		position: absolute;
		width: 20px;
		height: 20px;
		box-sizing: border-box;
		border-radius: 50%;
		left: 0;
		top: 6px;
		background: #1C263C;
		border: 6px solid #BAE00B;
	}

	.diagnostics-block {
		background: #BAE00B;
		border-radius: 20px;
		display: block;
		padding: 30px;
		padding-bottom: 0;
	}

	.diagnostics-block .pic {
		margin: 30px auto 0;
		overflow: hidden;
		width: 283px;
		height: 200px;
	}

	.diagnostics-block:before {
		display: none;
	}

	.diagnostics-block .txt {
		width: 100%;
		padding: 0;
	}

	.warranty-page .text-descr {
		display: none;
	}

	.warranty-page .top {
		display: block;
	}

	.warranty-page .top .left {
		padding: 0;
		width: 100%;
	}

	.warranty-page .top .quote-block {
		width: 100%;
	}

	.projects-page .projects-list .proj-block.btn {
		width: 100%;
	}

	.projects-page .projects-list .proj-block {
		width: calc(50% - 12px);
	}

	.tg-subs-block.girl:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		border-radius: 20px;
		background: url(../img/tg-girl.webp) bottom center/auto 300px no-repeat, url(../img/tg-rounds-mob.svg) bottom center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.tg-subs-block.girl2:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		border-radius: 20px;
		background: url(../img/tg-girl2.webp) bottom center/auto 410px no-repeat, url(../img/tg-rounds-mob.svg) bottom center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.tg-subs-block.man2:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		border-radius: 20px;
		background: url(../img/tg-man2.png) bottom center/auto 400px no-repeat, url(../img/tg-rounds-mob.svg) bottom center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.tg-subs-block.girl,
	.tg-subs-block.girl2,
	.tg-subs-block.man2 {
		padding-bottom: 340px;
	}

	.tg-subs-block.girl .txt p,
	.tg-subs-block.girl2 .txt p,
	.tg-subs-block.man2 .txt p {
		display: none;
	}

	.tg-subs-block.girl .btns,
	.tg-subs-block.girl2 .btns,
	.tg-subs-block.man2 .btns {
		position: relative;
		bottom: auto;
		left: auto;
		margin-top: 24px;
	}

	.staff-list {
		margin-right: -10px;
		width: calc(100% + 10px);
	}

	.staff-list .block {
		width: calc(100% / 3 - 10px);
		margin: 0 10px 24px 0;
	}

	.reasons-list {
		display: block;
		padding-bottom: 6px;
		margin-right: 0;
		width: 100%;
	}

	.reasons-list .block {
		position: relative;
		width: 100%;
		margin: 0 0 24px;
		padding: 0 0 0 64px;
		border: 0;
		border-radius: 0;
		height: auto;
	}

	.reasons-list .block .ic {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		border-radius: 50%;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #BAE00B;
	}

	.reasons-list .block .ic img {
		max-width: 20px;
		max-height: 20px;
		display: block;
	}

	.reasons-list .block .title {
		font-size: 20px;
		line-height: 129%;
		margin: 0 0 4px;
		letter-spacing: 0px;
	}

	.reasons-list .block .title br {
		display: none;
	}

	.darkblue-bg .subtitle {
		display: none;
	}

	.about-page .see-all {
		background: #BAE00B;
		color: #1C263C;
		line-height: 50px;
		margin-bottom: 40px;
	}

	.brands-list {
		-ms-overflow-style: none;
		scrollbar-width: none;
		overflow: auto;
		padding: 0 20px 24px;
		margin: 0 -20px;
		width: calc(100% + 40px);
		flex-wrap: nowrap;
	}

	.brands-list::-webkit-scrollbar {
		width: 0;
		height: 0;
	}

	.brands-list .block {
		padding: 25px;
		width: 150px;
		height: 150px;
		margin: 0 12px 0 0;
		min-width: 150px;
	}

	.inner-content {
		font-size: 16px;
	}

	.about-txt {
		margin: 0 0 40px;
	}

	.inner-content .about-page h3 {
		font-size: 28px;
		margin: 0 0 24px;
		line-height: 129%;
	}

	.about-txt .right-txt {
		display: none;
	}

	.about-txt .in {
		max-width: 100%;
	}

	.about-page .cat-blocks,
	.service-page .cat-blocks {
		margin-right: 0;
		width: 100%;
	}

	.about-page .cat-blocks .cat-block,
	.service-page .cat-blocks .cat-block {
		width: 100%;
		margin: 0 0 14px;
	}

	.about-page .cat-blocks .cat-block .pic,
	.service-page .cat-blocks .cat-block .pic {
		height: 50vw;
	}

	.specials-list .special-block .title .i {
		right: 20px;
	}

	.specials-list .special-block .title .i span {
		font-size: 14px;
		white-space: normal;
		min-width: 250px;
	}

	.specials-list .special-block .title .i:hover span {
		display: none;
	}

	.specials-list .special-block .title .i.open span {
		display: block;
		right: 40px;
		top: 50%;
		opacity: 1;
	}

	.specials-list .special-block.list ul li:before {
		width: 20px;
		height: 20px;
		border-width: 6px;
		top: 50%;
	}

	.specials-list .special-block.list ul li {
		padding-left: 36px;
	}

	.specials-list .special-block {
		width: 100%;
		margin: 0 0 24px;
	}

	.specials-list .special-block .title {
		margin: 0 0 4px;
		padding: 0 20px;
		height: 63px;
		font-size: 18px;
		letter-spacing: 0;
	}

	.specials-list .special-block .gallery {
		overflow: visible;
	}

	.specials-list .special-block .gallery .item {
		border-radius: 10px;
		height: 62vw;
	}

	.specials-list .special-block .gallery .owl-carousel {
		overflow: visible;
	}

	.specials-list .special-block .gallery .owl-carousel .owl-stage-outer {
		overflow: visible;
	}

	.specials-list .special-block .gallery .owl-carousel .owl-nav {
		display: none;
	}

	.specials-list .special-block.list ul {
		margin-top: 24px;
		display: none;
	}

	.specials-list .special-block.list .title {
		margin: 0;
		font-size: 23px;
		padding: 20px 60px 20px 20px;
	}

	.specials-list .special-block.list .title:after {
		transition: all 0.3s ease;
		width: 24px;
		height: 24px;
		position: absolute;
		right: 20px;
		top: 50%;
		margin-top: -12px;
		content: '';
		display: block;
		background: url(../img/spoiler-arr.svg) center center no-repeat;
		transform: scale(1, -1);
	}

	.specials-list .special-block.list.open .title:after {
		transform: none;
	}

	.specials-list .video {
		order: 2;
		width: 100%;
		height: 90vw;
	}

	.specials-list .video:after {
		width: 60px;
		height: 60px;
		background-size: 18px auto;
	}

	.chars-list {
		padding-bottom: 26px;
	}

	.char-block {
		padding: 20px;
		width: 100%;
		margin: 0 0 4px;
		font-size: 14px;
	}

	.char-block .t {
		font-size: 18px;
		line-height: 129%;
		margin: 10px 0 0 0;
		letter-spacing: 0px;
	}

	.product-page {
		margin: 0 0 40px;
	}

	.bottom-connect-block .pic {
		display: none;
	}

	.bottom-connect-block .tg-subs-block.connect {
		width: 100%;
		padding: 30px;
	}

	.bottom-connect-block .tg-subs-block.connect .txt p {
		display: none;
	}

	.bottom-connect-block .tg-subs-block.connect .btns {
		left: auto;
		bottom: auto;
		position: relative;
		max-width: 100%;
	}

	.file-btn {
		height: 60px;
		font-size: 14px;
		margin-bottom: 40px;
	}

	.features-block .txt img {
		margin: 0 0 14px;
		height: 30px;
	}

	.features-block.short {
		width: 100%;
	}

	.features-block {
		margin-bottom: 24px;
		min-height: 1px;
		display: block;
	}

	.features-block .txt {
		margin: 0 0 4px;
		font-size: 14px;
		padding: 20px;
		width: 100%;
	}

	.features-block .txt h3 {
		font-size: 18px;
		line-height: 129%;
		margin: 0 0 10px;
	}

	.features-block .photo {
		height: 62vw;
		width: 100%;
	}

	.features-block>.pic {
		width: 100%;
		display: block;
	}

	.features-block>.pic img {
		width: 100%;
	}

	.product-page .tabs-block .tabs li {
		width: calc(50% - 6px);
	}

	.product-page .tabs-block .tabs {
		justify-content: space-between;
	}

	.product-page .tabs-block .tabs li a {
		font-size: 14px;
		line-height: 50px;
		border-radius: 10px !important;
	}

	.gallery-and-chars .chars .block {
		width: calc(50% - 5px);
		margin: 0 0 10px;
		height: auto;
		padding: 20px;
		font-size: 14px;
	}

	.gallery-and-chars .chars .block .t {
		margin: 4px 0 0 0;
		font-size: 24px;
	}

	.gallery-and-chars .chars .block .t img {
		height: 30px;
		margin-top: 8px;
	}

	.gallery-and-chars {
		margin: 0 0 30px;
		flex-direction: column;
	}

	.gallery-and-chars .chars {
		margin: 0;
		order: 1;
		width: 100%;
	}

	.gallery-and-chars .gallery {
		margin: 20px 0 0 0;
		order: 2;
		width: 100%;
	}

	.gallery-and-chars .gallery .item {
		height: 55vw;
	}

	.gallery-and-chars .gallery .owl-carousel .owl-nav {
		display: none;
	}

	.gallery-and-chars .gallery .owl-carousel .owl-dots {
		bottom: 14px;
	}

	.gallery-and-chars .gallery .owl-carousel .owl-dots .owl-dot {
		width: 8px;
		height: 8px;
		margin: 0 4px;
	}

	.prod-first-screen .inf .bottom ul li:before {
		width: 9px;
		height: 9px;
		left: 2px;
		top: 5px;
	}

	.prod-first-screen .inf .bottom ul {
		padding: 0 0 20px;
	}

	.prod-first-screen .inf .bottom {
		font-size: 16px;
	}

	.prod-first-screen .inf h2 {
		font-size: 18px;
		margin: 0 0 14px;
		letter-spacing: 0;
	}

	.prod-first-screen .inf h1 {
		font-size: 34px;
		letter-spacing: -1px;
		margin: 0 0 14px;
		line-height: 110%;
	}

	.prod-first-screen .inf .price {
		font-size: 32px;
	}

	.prod-first-screen {
		align-items: flex-start;
		padding: 120px 0 0 0;
		min-height: 550px;
	}

	.no-search-results.open-blocks .pics .pic:first-child,
	.no-search-results.open-blocks .pics .pic:last-child {
		display: none;
	}

	.no-search-results .pics .pic {
		width: 33%;
	}

	.inner-content h1.small {
		font-size: 34px;
		margin: 0 0 30px;
	}

	.filter-tags {
		display: none;
	}

	.catalog-page {
		padding-top: 0;
	}

	.catalog-page .filter-col .filter-tags {
		padding: 0 0 16px;
		display: flex;
		width: 100%;
	}

	.catalog-page .filter-col .filter-tags .tag {
		margin: 0 10px 10px 0;
		line-height: 38px;
		font-size: 14px;
		padding: 0 52px 0 14px;
	}

	.catalog-page .filter-col .filter-tags .tag .remove {
		background-size: 14px auto;
		width: 38px;
		height: 38px;
		top: 0;
		margin: 0;
		right: 0;
	}

	.catalog-page .filter-col .btn.reset-filter {
		line-height: 60px;
		font-size: 14px;
		color: #fff;
		background: #1C263C;
		margin: 40px 0 0 0;
	}

	.catalog-page .filter-col .block .title:after {
		right: 0;
	}

	.catalog-page .filter-col .block {
		margin: 0 0 30px;
	}

	.catalog-page .filter-col .block .title {
		background: none;
		border-radius: 0;
		color: #1C263C;
		line-height: 26px;
		padding: 0 30px 0 0;
	}

	.catalog-page .filter-col .block .hidden-content {
		margin-top: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid rgba(28, 38, 60, 0.1);
	}

	.catalog-page .filter-col .block.mobopen .title:after {
		display: none;
	}

	.catalog-page .filter-col .block.mobopen .hidden-content {
		display: block;
	}

	.catalog-page .filter-col .inputs {
		padding: 0;
	}

	.catalog-page .filter-col .block .title:after {
		background: url(../img/filter-m-arr.svg) center center no-repeat;
	}

	.catalog-page .filter-col {
		overflow: auto;
		padding: 30px 25px 76px;
		z-index: 12;
		position: fixed;
		top: -99999px;
		left: -999999px;
		opacity: 0;
		transition: opacity 0.3s ease;
		background: #fff;
		width: 100%;
		height: calc(100dvh - 100px);
	}

	.catalog-page .filter-col.open {
		opacity: 1;
		top: 100px;
		left: 0;
	}

	.catalog-page .filter-col .mob-title,
	.catalog-page .filter-col .close {
		display: block;
	}

	.catalog-page .filter-col .close {
		position: absolute;
		top: 30px;
		right: 20px;
		width: 50px;
		height: 50px;
		border-radius: 10px;
		border: 1px solid rgba(28, 38, 60, 0.2);
		background: url(../img/menu-close-ic.svg) center center no-repeat;
	}

	.catalog-page .filter-col .mob-title {
		line-height: 50px;
		font-size: 28px;
		font-weight: 500;
		color: #1C263C;
		margin: 0 0 38px;
	}

	.catalog-page .filter-btn {
		transition: all 0.3s ease;
		position: fixed;
		display: block;
		z-index: 10;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
		line-height: 65px;
		background: #1C263C;
		border-radius: 10px;
		font-size: 18px;
		color: #fff;
		font-weight: 500;
		padding: 0 50px 0 88px;
	}

	.catalog-page .filter-btn.hidden {
		opacity: 0;
		visibility: hidden;
	}

	.catalog-page .filter-btn:before {
		content: '';
		width: 25px;
		height: 20px;
		display: block;
		position: absolute;
		top: 50%;
		left: 50px;
		margin-top: -10px;
		background: url(../img/filter-ic.svg) center center no-repeat;
	}

	.catalog-page .right-content {
		width: 100%;
	}

	.projects-list .proj-block .inf .title {
		font-size: 26px;
	}

	.categories-list .block {
		padding: 18px 20px;
		font-size: 18px;
		height: 220px;
	}

	.categories-list .block .pic {
		height: 150px;
	}

	.categories-list .block .labels {
		left: 20px;
		top: 18px;
	}

	.see-all {
		line-height: 60px;
		font-size: 14px;
	}

	.first-screen {
		height: auto;
		padding: 170px 0 500px 0;
		align-items: flex-start;
		text-align: center;
	}

	.first-screen .car {
		display: none;
	}

	.first-screen .txt.hidden {
		opacity: 1;
		position: relative;
		top: auto;
		left: auto;
		visibility: visible;
	}

	.first-screen .txt {
		max-width: 100%;
	}

	.first-screen .txt h1 {
		max-width: 700px;
		display: table;
		margin: 0 auto;
		letter-spacing: -1px;
		font-size: 40px;
	}

	.first-screen .txt .descr {
		display: none;
	}

	.first-screen:before {
		top: auto;
		bottom: 40px;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		width: 740px;
		max-width: 740px;
		height: 410px;
	}

	.garia-via {
		display: block;
	}

	.garia-via .video {
		width: 100%;
		height: 50vw;
		margin: 0 0 30px;
	}

	.garia-via .txt {
		width: 100%;
	}

	.content h2 {
		font-size: 40px;
	}

	.content .tg-subs-block h2 {
		font-size: 32px;
	}

	.services-block {
		margin: 0;
		width: 100%;
	}

	.services-block .serv-item {
		width: 100%;
		margin-right: 0;
	}

	.services-block .serv-item .pic {
		height: 50vw;
	}

	.services-block .serv-item .inf {
		min-height: 1px;
	}

	.tg-subs-block.connect {
		background: url(../img/iphone-bg.webp) bottom right/350px auto no-repeat, url(../img/tg-rounds1.svg) bottom right/auto 380px no-repeat;
		background-color: #BAE00B;
	}

	.tg-subs-block.connect .btns {
		max-width: 340px;
	}

	footer .cols {
		flex-direction: column;
	}

	footer .cols .left {
		margin: 0 0 30px;
		width: 100%;
	}

	footer .logo {
		max-width: 134px;
	}

	footer .cols .right {
		width: 100%;
		padding: 0;
	}

	footer .cols {
		margin-bottom: 30px;
	}

	.cat-blocks {
		margin-right: -12px;
		width: calc(100% + 12px);
	}

	.cat-blocks .cat-block {
		margin: 0 12px 12px 0;
		width: calc(50% - 12px);
	}
}

@media all and (max-width: 850px) {
	.service .prod-first-screen .in {
		max-width: 100%;
	}

	.service .prod-first-screen .pic {
		max-width: 100%;
		height: 80vw;
	}

	.search-form:not(.open) .inp-txt:hover {
		background: none;
	}

	.search-form .inp-txt::-moz-placeholder {
		opacity: 1;
		color: rgba(28, 38, 60, 0.3);
	}

	.search-form .inp-txt::-webkit-input-placeholder {
		opacity: 1;
		color: rgba(28, 38, 60, 0.3);
	}

	.search-form .inp-txt:focus::-moz-placeholder {
		opacity: 0;
		color: rgba(28, 38, 60, 0.3);
	}

	.search-form .inp-txt:focus::-webkit-input-placeholder {
		opacity: 0;
		color: rgba(28, 38, 60, 0.3);
	}

	.search-form .submit {
		left: -4px;
	}

	.search-form.open .inp-txt {
		max-width: 100%;
	}

	header.fix {
		height: 80px;
	}

	.menu-open header nav,
	.menu-open header.fix nav {
		top: 80px;
		height: calc(100dvh - 80px);
	}

	header nav ul li a:hover {
		background: none;
	}

	header nav .bottom {
		padding: 30px 0 65px 0;
	}

	header nav .bottom .right {
		padding: 0 0 0 20px;
		width: 100%;
		flex-direction: column;
	}

	header nav .bottom .soc {
		width: 100%;
		margin: 40px 0 0 0;
		order: 3;
	}

	header nav .bottom .right .block {
		order: 2;
		width: 100%;
	}

	header nav .bottom .right .block+.block {
		order: 1;
	}

	header nav .bottom .right .block a {
		margin-bottom: 14px;
	}

	header nav .bottom .right .block a,
	header nav .bottom .right .block p {
		display: table;
		padding-left: 24px;
		position: relative;
	}

	header nav .bottom .right .block a.tel {
		background: url(../img/mob-call-ic.svg) center left no-repeat;
	}

	header nav .bottom .right .block a.mail {
		background: url(../img/mob-mail-ic.svg) center left no-repeat;
	}

	header nav .bottom .right .block a.tg {
		background: url(../img/mob-tg-ic.svg) center left no-repeat;
	}

	header nav .bottom .right .block a.wa {
		background: url(../img/mob-wa-ic.svg) center left no-repeat;
	}

	header nav .bottom .right .block .address {
		background: url(../img/mob-address-bg.svg) top 2px left no-repeat;
		margin-top: 26px;
	}

	header nav .bottom .right .block>br {
		display: none;
	}

	header.menu-open {
		border: 0;
	}

	header nav .logo {
		display: none;
	}

	header nav .search-form .inp-txt {
		transition: none;
		padding-left: 45px;
		max-width: 100%;
	}

	header nav .search-form {
		margin: 0 0 30px;
		width: 100%;
		display: block;
	}

	header nav .all {
		padding-top: 10px;
	}

	header nav .all>.left {
		display: none;
	}

	header nav .all>.right {
		width: 100%;
		min-height: calc(100dvh - 600px);
	}

	header nav ul li.menu-parent>a {
		width: 100%;
	}

	header nav .bottom {
		flex-direction: column;
	}

	header>.all {
		height: 50px;
		padding-top: 0;
		padding-bottom: 0;
	}

	header {
		height: 80px;
		align-items: center;
	}

	header .logo {
		height: 26px;
	}

	header .menu-btn {
		width: 50px;
		height: 50px;
	}

	header .menu-btn:before {
		background-size: 18px auto;
	}

	header .menu-btn:after {
		background-size: contain;
	}

	header .btns .search-form {
		display: none;
	}

	.mess-btn span {
		display: none;
	}

	.mess-btn {
		background: #1C263C url(../img/tg-green-ic.svg) center center no-repeat;
		width: 50px;
		height: 50px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	header:not(.inner, .menu-open) .mess-btn img {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		margin: 0;
		display: block;
	}

	header:not(.inner, .menu-open) .mess-btn {
		background: #fff center center no-repeat;
	}

	.mess-btn img {
		left: 50%;
		transform: translate(-50%, -50%);
	}

}

@media all and (max-width: 780px) {
	.first-screen {
		min-height: 850px;
		max-height: 100dvh;
	}

	.first-screen:before {
		max-height: 410px;
		height: 410px;
		left: 10px;
		transform: none;
		min-height: 300px;
	}
}

@media all and (max-width: 700px) {
	.detail .prod-first-screen {
		padding-top: 27px;
	}

	.detail .prod-first-screen {
		min-height: 1px;
	}

	.detail .prod-first-screen .inf .btn .arr:after {
		filter: none;
	}

	.detail .prod-first-screen .inf .btn .arr {
		background: #fff;
	}

	.detail .prod-first-screen .pic {
		margin: 0 0 24px;
		min-width: 1px;
	}

	.detail .prod-first-screen .pic img {
		height: 294px;
		min-height: 294px;
		width: auto;
	}

	.detail .prod-first-screen .inf h1 {
		font-size: 32px;
		line-height: 110%;
		margin: 0 0 30px;
	}

	.detail .prod-first-screen .inf ul.chars li {
		margin: 0 14px 14px 0;
		font-size: 14px;
	}

	.detail .prod-first-screen .inf ul.chars {
		padding: 0 0 10px;
		margin: 0 -14px 0px 0;
		width: calc(100% + 14px);
	}

	.bottom-connect-block {
		margin-bottom: 120px;
	}

	.popup.right .into {
		left: auto;
		width: 100%;
		max-width: 100%;
		right: 0;
		transition: bottom 0.3s ease;
		top: auto;
		bottom: -100dvh;
	}

	.popup.right.visible .into {
		bottom: 0;
	}

	.popup.right .into .tg-subs-block.small {
		border-radius: 20px 20px 0 0;
		position: relative;
	}

	.popup.right .into .tg-subs-block.small .btns {
		position: relative;
		bottom: auto;
		left: auto;
		width: 100%;
	}

	.popup.right .into .close {
		top: 30px;
	}

	.popup.girl .into .tg-subs-block.small,
	.popup.girl2 .into .tg-subs-block.small,
	.popup.man2 .into .tg-subs-block.small{
		padding: 100px 50px;
		position: fixed;
		border-radius: 0;
		top: 0;
		left: -9999px;
		bottom: 0;
		width: 100%;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.popup.girl .into .tg-subs-block.small:after {
		background: url(../img/tg-girl.webp) bottom center/auto 360px no-repeat, url(../img/tg-rounds-mob.svg) bottom -30px center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.popup.girl2 .into .tg-subs-block.small:after {
		background: url(../img/tg-girl2.webp) bottom center/auto 360px no-repeat, url(../img/tg-rounds-mob.svg) bottom -30px center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.popup.man2 .into .tg-subs-block.small:after {
		background: url(../img/tg-man2.png) bottom center/auto 360px no-repeat, url(../img/tg-rounds-mob.svg) bottom -30px center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.popup.visible.girl .into .tg-subs-block,
	.popup.visible.girl2 .into .tg-subs-block,
	.popup.visible.man2 .into .tg-subs-block {
		left: 0;
		opacity: 1;
	}

	.popup.visible.girl .into,
	.popup.visible.girl2 .into,
	.popup.visible.man2 .into {
		position: static;
	}

	.popup.visible.girl .into .close,
	.popup.visible.girl2 .into .close,
	.popup.visible.man2 .into .close {
		top: 105px;
	}

	.popup.girl .into .tg-subs-block.small,
	.popup.girl2 .into .tg-subs-block.small,
	.popup.man2 .into .tg-subs-block.small {
		padding: 100px 50px;
		position: fixed;
		border-radius: 0;
		top: 0;
		left: -9999px;
		bottom: 0;
		width: 100%;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.popup.girl .into .tg-subs-block.small:after {
		background: url(../img/tg-girl.webp) bottom center/auto 360px no-repeat, url(../img/tg-rounds-mob.svg) bottom -30px center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.popup.girl2 .into .tg-subs-block.small:after {
		background: url(../img/tg-girl2.webp) bottom center/auto 360px no-repeat, url(../img/tg-rounds-mob.svg) bottom -30px center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.popup.man2 .into .tg-subs-block.small:after {
		background: url(../img/tg-man2.png) bottom center/auto 360px no-repeat, url(../img/tg-rounds-mob.svg) bottom -30px center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.popup.visible.girl .into .tg-subs-block,
	.popup.visible.girl2 .into .tg-subs-block,
	.popup.visible.man2 .into .tg-subs-block {
		left: 0;
		opacity: 1;
	}

	.popup.visible.girl .into,
	.popup.visible.girl2 .into,
	.popup.visible.man2 .into{
		position: static;
	}

	.popup.visible.girl .into .close,
	.popup.visible.girl2 .into .close,
	.popup.visible.man2 .into .close {
		top: 105px;
	}

	@media all and (max-height: 850px) {
		.popup.girl .into .tg-subs-block.small,
		.popup.girl2 .into .tg-subs-block.small,
		.popup.man2 .into .tg-subs-block.small{
			padding: 30px;
		}

		.popup.visible.girl .into .close,
		.popup.visible.girl2 .into .close,
		.popup.visible.man2 .into .close {
			top: 36px;
		}

		.popup.visible.girl,
		.popup.visible.girl2,
		.popup.visible.man2 {
			min-height: 700px;
		}
	}


	.popup.smart .into .tg-subs-block.small {
		padding: 100px 50px;
		position: fixed;
		border-radius: 0;
		top: 0;
		left: -9999px;
		bottom: 0;
		width: 100%;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.popup.smart .into .tg-subs-block.small:after {
		background: url(../img/tg-girl.webp) bottom center/auto 360px no-repeat, url(../img/tg-rounds-mob.svg) bottom -30px center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.popup.smart.girl2 .into .tg-subs-block.small:after {
		background: url(../img/tg-girl2.webp) bottom center/auto 360px no-repeat, url(../img/tg-rounds-mob.svg) bottom -30px center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.popup.visible.smart .into .tg-subs-block {
		left: 0;
		opacity: 1;
	}

	.popup.visible.smart .into {
		position: static;
	}

	.popup.visible.smart .into .close {
		top: 105px;
	}

	.popup.smart .into .tg-subs-block.small {
		background-size: 380px auto;
		padding: 100px 50px;
		position: fixed;
		border-radius: 0;
		top: 0;
		left: -9999px;
		bottom: 0;
		width: 100%;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.popup.visible.smart .into .tg-subs-block {
		left: 0;
		opacity: 1;
	}

	.popup.visible.smart .into {
		position: static;
	}

	.popup.visible.smart .into .close {
		background: none;
		top: 105px;
	}

	@media all and (max-height: 850px) {
		.popup.smart .into .tg-subs-block.small {
			padding: 30px;
		}

		.popup.visible.smart .into .close {
			top: 36px;
		}

		.popup.visible.smart {
			min-height: 700px;
		}
	}

	.popup.pics .into .tg-subs-block.small {
		padding: 100px 50px;
		position: fixed;
		border-radius: 0;
		top: 0;
		left: -9999px;
		bottom: 0;
		width: 100%;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.popup.pics .into .tg-subs-block.small:after {
		background: url(../img/tg-girl.webp) bottom center/auto 360px no-repeat, url(../img/tg-rounds-mob.svg) bottom -30px center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.popup.girl2.pics .into .tg-subs-block.small:after {
		background: url(../img/tg-girl2.webp) bottom center/auto 360px no-repeat, url(../img/tg-rounds-mob.svg) bottom -30px center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.popup.visible.pics .into .tg-subs-block {
		left: 0;
		opacity: 1;
	}

	.popup.visible.pics .into {
		position: static;
	}

	.popup.visible.pics .into .close {
		top: 105px;
	}

	.popup.pics .into .tg-subs-block.small {
		background-size: 380px auto;
		padding: 100px 50px;
		position: fixed;
		border-radius: 0;
		top: 0;
		left: -9999px;
		bottom: 0;
		width: 100%;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.popup.pics .into .tg-subs-block .pics {
		width: 140%;
		left: -20%;
	}

	.popup.visible.pics .into .tg-subs-block {
		left: 0;
		opacity: 1;
	}

	.popup.visible.pics .into {
		position: static;
	}

	.popup.visible.pics .into .close {
		background: none;
		top: 105px;
	}

	@media all and (max-height: 850px) {
		.popup.pics .into .tg-subs-block.small {
			padding: 30px;
		}

		.popup.visible.pics .into .close {
			top: 36px;
		}

		.popup.visible.pics {
			min-height: 700px;
		}
	}


	.popup .into .tg-subs-block p {
		font-size: 16px;
	}

	.popup .into .tg-subs-block .btns {
		margin-top: 40px;
	}

	.popup .into .tg-subs-block,
	.popup .into .tg-subs-block.small {
		text-align: left;
	}

	.popup .into .tg-subs-block h2 {
		text-align: left;
		font-size: 34px;
		line-height: 110%;
		margin: 0 0 24px;
	}

	.popup .into .tg-subs-block.small {
		padding: 30px;
	}

	.popup .into .close {
		top: 30px;
		right: 30px;
		width: 30px;
		height: 30px;
		background: none;
	}

	.no-search-results.p404 h1 {
		font-size: 100px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 24px;
	}

	.no-search-results.p404 .btns {
		margin-top: 40px;
	}

	.no-search-results.p404 .btns .btn {
		width: calc(50% - 5px);
	}

	.regulations-block {
		padding-bottom: 30px;
		position: relative;
		z-index: 3;
	}

	.regulations-block .spoiler-block+.spoiler-block {
		margin-top: 30px;
	}

	.regulations-block .spoiler-block .title {
		background: rgba(255, 255, 255, 0.1);
	}

	.regulations-block .spoiler-block {
		background: none;
	}

	.repair-warranty-block .block {
		font-size: 14px;
	}

	.repair-warranty-block .block .title {
		font-size: 24px;
		margin: 0 0 14px;
	}

	.tg-subs-block.connect.tg-only .txt {
		width: 100%;
	}

	.tg-subs-block.connect.tg-only h2 {
		margin-bottom: 8px;
	}

	.tg-subs-block.connect.tg-only {
		padding-bottom: 340px;
		background: url(../img/iphone-bg.webp) bottom center/330px auto no-repeat, url(../img/tg-rounds-mob.svg) bottom center/100% auto no-repeat;
		background-color: #BAE00B;
	}

	.service .prod-first-screen.with-bg {
		padding-bottom: 50px;
	}

	.service .prod-first-screen.with-bg .inf h1 {
		min-height: 80px;
		margin-bottom: 90vw;
	}

	.service .prod-first-screen.with-bg .top {
		position: relative;
		z-index: 5;
	}

	.service .prod-first-screen .inf .top ul {
		font-size: 16px;
	}

	.service .prod-first-screen .inf .top ul li {
		margin: 0 0 8px;
	}

	.prod-first-screen .bg {
		display: none;
	}

	.prod-first-screen .pic.bg {
		display: block;
		top: 20px;
		left: auto;
		height: 105vw;
		position: absolute;
		width: 200vw;
		max-width: 200vw;
		right: -20px;
		left: auto;
		transform: none;
		border-radius: 0;
		background-size: contain;
		background-position: bottom right;
	}

	.prod-first-screen .pic.bg img {
		display: none;
	}

	.service .terms-block {
		margin-bottom: 40px;
	}

	.spoiler-block .hidden-content ul li {
		display: block;
		min-height: 1px;
	}

	.spoiler-block .hidden-content ul:last-child {
		padding-bottom: 12px;
	}

	.rent-blocks {
		margin-bottom: 40px;
	}

	.rent-blocks .block .pic {
		margin-bottom: 14px;
	}

	.rent-blocks .block .title,
	.rent-blocks .block .price {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.rent-blocks .block ul li {
		max-width: 200px;
		font-size: 14px;
		padding: 0 0 0 56px;
	}

	.rent-blocks .block ul li .ic {
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}

	.rent-blocks .block ul li .ic img {
		max-width: 20px;
	}

	.service .prod-first-screen .pic {
		margin-bottom: 30px;
	}

	.service .prod-first-screen {
		padding-top: 120px;
	}

	.tg-subs-block.space:before {
		border-top: 300px solid #fff;
		top: auto;
		content: '';
		display: block;
		position: absolute;
		z-index: -1;
		bottom: 0;
		height: 260px;
		background: #1C263C;
		width: 100vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.tg-subs-block.space {
		margin-bottom: -360px;
	}

	.delivery-page .categories-list .block {
		width: 280px;
		min-width: 280px;
		height: 150px;
	}

	.delivery-page .categories-list .block .pic {
		height: 150px;
	}

	.delivery-page .map {
		height: 240px;
	}

	.delivery-page .map img {
		transform: translateX(-38%);
	}

	.spoiler-block .hidden-content ul li {
		padding-left: 36px;
	}

	.spoiler-block .hidden-content ul li:before {
		width: 20px;
		height: 20px;
		border-width: 6px;
	}

	.spoiler-block {
		background: none;
		padding: 0px;
		border-radius: 0;
	}

	.spoiler-block .title {
		border-radius: 10px;
		background: #F2F2F2;
		padding: 20px 46px 20px 20px;
		font-size: 20px;
	}

	.spoiler-block .title:after {
		right: 20px;
	}

	.diagnostics-block .txt h2 {
		font-size: 24px;
		margin: 0 0 14px;
	}

	.warranty-page h3 {
		letter-spacing: 0;
	}

	.diagnostics-block {
		margin-bottom: 40px;
	}

	.diagnostics-block .txt .dealers-block .block {
		width: 100%;
		max-width: 100%;
		padding: 0;
		border-radius: 0;
		border: 0;
		background: none;
	}

	.diagnostics-block .txt .dealers-block .block+.block {
		margin: 14px 0 0 0;
	}

	.diagnostics-block .txt .dealers-block .block .title {
		font-size: 18px;
		margin: 0 0 8px;
	}

	.diagnostics-block .txt .dealers-block {
		display: block;
	}

	.warranty-page .periods .block {
		font-size: 14px;
	}

	.warranty-page .periods .block .t {
		color: rgba(28, 38, 60, 0.6);
	}

	.warranty-page .top {
		margin-bottom: 30px;
	}

	.warranty-page .top .quote-block {
		padding: 30px;
	}

	.warranty-page .top .quote-block .author .photo {
		width: 60px;
		height: 60px;
		margin: 0 14px 0 0;
	}

	.warranty-page .top .quote-block .author .inf {
		width: calc(100% - 74px);
	}

	.projects-page .projects-list .proj-block.btn {
		display: none;
	}

	.projects-page .text-descr {
		width: 100%;
		position: relative;
		top: auto;
		right: auto;
		max-width: 100%;
		margin: 0 0 40px;
	}

	h1 br {
		display: none;
	}

	.projects-page .projects-list {
		padding: 0 0 10px;
		margin-right: 0;
		width: 100%;
	}

	.projects-page .projects-list .proj-block {
		width: 100%;
		margin: 0 0 30px;
	}

	.projects-page .projects-list .proj-block .inf {
		padding: 30px;
	}

	.projects-page .projects-list .proj-block .inf ul {
		font-size: 14px;
	}

	.projects-page .projects-list .proj-block .inf ul li {
		padding-left: 36px;
	}

	.projects-page .projects-list .proj-block .inf .title {
		font-size: 24px;
		line-height: 129%;
	}

	.projects-page .projects-list .proj-block .inf .region {
		font-size: 14px;
	}

	.projects-page .projects-list .proj-block .inf .btn {
		margin: 30px 0 0 0;
		padding: 16px;
		line-height: 129%;
	}

	.projects-page .projects-list .proj-block .inf ul li:before {
		width: 20px;
		height: 20px;
		border-width: 6px;
	}

	.tg-subs-block.girl .btns .btn.tg,
	.tg-subs-block.girl .btns .btn.wa,
	.tg-subs-block.girl2 .btns .btn.tg,
	.tg-subs-block.girl2 .btns .btn.wa,
	.tg-subs-block.man2 .btns .btn.tg,
	.tg-subs-block.man2 .btns .btn.wa,
	.tg-subs-block.space .btns .btn.tg,
	.tg-subs-block.space .btns .btn.wa {
		padding-left: 48px;
		background-position: left 20px center;
	}

	.contacts-block {
		margin: 0 0 40px;
	}

	.tg-subs-block.girl,
	.tg-subs-block.girl2,
	.tg-subs-block.man2 {
		margin-top: 0;
		margin-bottom: -360px;
	}

	.tg-subs-block.girl:before,
	.tg-subs-block.girl2:before,
	.tg-subs-block.man2:before {
		border-top: 300px solid #fff;
		bottom: 0px;
		top: auto;
	}

	.service+.tg-subs-block.girl.darkborder:before,
	.service+.tg-subs-block.girl2.darkborder:before,
	.service+.tg-subs-block.man2.darkborder:before {
		border-color: #1C263C;
	}

	.contacts-block .block .title {
		font-size: 24px;
		margin: 0 0 8px;
		letter-spacing: -1px;
		line-height: 129%;
	}

	.contacts-block .block {
		font-size: 14px;
		background: #F2F2F2;
		position: relative;
		left: auto;
		bottom: auto;
		border-radius: 10px 10px 0 0;
		padding: 20px;
		width: 100%;
		max-width: 100%;
	}

	.contacts-block .block a {
		font-size: 14px;
	}

	.about-page .mob-wrap {
		overflow: hidden;
		margin: 0 0 40px;
		border-radius: 20px;
		background: #1C263C;
		padding: 30px 30px 1px;
	}

	.about-page .projects-list .proj-block .inf .title {
		color: #fff;
	}

	.about-page .projects-list .proj-block {
		color: rgba(255, 255, 255, 0.6);
	}

	.about-page .mob-wrap h2 {
		color: #fff;
		text-align: center;
	}

	.staff-list .block:first-child .inf .name,
	.staff-list .block:nth-child(2) .inf .name {
		font-size: 24px;
	}

	.staff-list .block:first-child,
	.staff-list .block:nth-child(2) {
		width: calc(50% - 10px);
	}

	.staff-list .block .photo {
		margin: 0 0 10px;
	}

	.staff-list .block {
		font-size: 10px;
	}

	.staff-list .block .inf .name {
		font-size: 14px;
		line-height: 129%;
	}

	.staff-list .block .inf a {
		font-size: 10px;
	}

	.staff-list {
		padding-bottom: 16px;
	}

	.flex-title {
		margin: 0 0 24px;
		display: block;
	}

	.flex-title h2 {
		max-width: 100%;
		width: 100%;
	}

	.content .flex-title h2 {
		margin: 0 0 14px;
	}

	.flex-title .descr {
		max-width: 100%;
	}

	.reasons-list {
		padding-top: 0;
	}

	.about-page .darkblue-bg:before {
		display: none;
	}

	.about-page .darkblue-bg {
		margin: 0 0 40px;
		border-radius: 20px;
		background: #1C263C;
		padding: 30px;
	}

	.desktop-block {
		display: none;
	}

	.mobile-block {
		display: block;
	}

	.text-descr {
		margin: 0px 0 24px;
	}

	.about-page .cat-blocks .cat-block.sub .title span,
	.service-page .cat-blocks .cat-block.sub .title span,
	.cat-blocks.parts .cat-block.sub .title span {
		display: inline;
	}

	.bottom-connect-block:before {
		display: none;
	}

	.prod-first-screen:before {
		border-radius: 0 0 20px 20px;
	}

	.prod-first-screen .inf .bottom .btn {
		width: 100%;
		max-width: 400px;
	}

	.prod-first-screen .inf .bottom .btn .arr:after {
		filter: none;
	}

	.prod-first-screen .inf .bottom .btn .arr {
		background: #fff;
	}

	.prod-first-screen .inf .bottom ul li {
		margin: 0 14px 14px 0;
	}

	.prod-first-screen .inf .bottom ul {
		padding-bottom: 16px;
		margin-right: 14px;
		width: calc(100% + 14px);
	}

	.prod-first-screen .pic {
		height: auto;
		min-height: auto;
		width: 434px;
		margin: 17px auto 0;
	}

	.prod-first-screen .pic img {
		max-height: 99999px;
	}

	.prod-first-screen .inf {
		display: flex;
		flex-direction: column;
		width: 100%;
		padding: 0;
	}

	.prod-first-screen .inf .bottom {
		font-size: 14px;
		order: 2;
		padding-top: 14px;
		padding-bottom: 57px;
	}

	.prod-first-screen {
		margin-bottom: 40px;
		height: auto;
		max-height: 99999px;
	}

	.no-search-results {
		font-size: 16px;
		padding-top: 140px;
	}

	.no-search-results h1 {
		letter-spacing: -1px;
		font-size: 34px;
		margin: 0 0 24px;
	}

	.no-search-results .pics .pic {
		margin: 0 5px;
	}

	.no-search-results .pics {
		width: calc(100vw + 250px);
	}

	.catalog-page .filter-col #slider {
		margin-top: 30px;
	}

	.catalog-page .filter-col {
		top: 80px;
		height: calc(100dvh - 80px);
		padding: 30px 20px 76px;
	}

	.catalog-page .filter-col.open {
		top: 80px;
		height: calc(100dvh - 80px);
	}

	.catalog-page .right-content {
		margin-bottom: 30px;
	}

	.categories-list .block {
		width: 100%;
		margin: 0 0 14px;
	}

	.inner-content {
		padding-top: 110px;
	}

	.inner-content h1 {
		font-weight: 500;
		font-size: 34px;
		margin: 0 0 30px;
	}

	.inner-content h1:not(.small) span {
		color: inherit;
	}

	.darkblue-bg {
		margin-bottom: 30px;
	}

	.see-all {
		margin-bottom: 30px;
	}

	.projects-list .proj-block {
		font-size: 14px;
	}

	.projects-list .proj-block .pic:before {
		padding-top: 60%;
	}

	.projects-list .proj-block .inf {
		padding: 0;
	}

	.projects-list .proj-block .inf .title {
		font-size: 24px;
		margin: 0 0 8px;
	}

	.projects-list.owl-carousel {
		margin-top: 0;
		margin-bottom: 14px;
	}

	.categories-list.owl-carousel {
		margin-bottom: 24px;
		margin-top: 0;
	}

	.categories-list .block {
		height: 160px;
	}

	.cat-blocks .cat-block:not(.sub):hover span.more,
	.cat-blocks .cat-block:not(.sub).active span.more {
		color: #fff;
	}

	.cat-blocks .cat-block:not(.sub):hover span,
	.cat-blocks .cat-block:not(.sub).active span {
		color: #fff;
	}

	.all {
		padding: 0 20px;
	}

	.cat-blocks {
		margin-right: 0;
		width: 100%;
		justify-content: space-between;
	}

	.cat-blocks .cat-block.sub .pic {
		border-radius: 10px 10px 0 0;
	}

	.about-page .cat-blocks .cat-block.sub .pic,
	.service-page .cat-blocks .cat-block.sub .pic {
		height: 47vw;
	}

	.cat-blocks.parts .cat-block.sub .pic {
		padding: 20px 10px;
		height: 36vw;
	}

	.cat-blocks.parts .cat-block.sub .title {
		padding-right: 20px;
	}

	.cat-blocks.parts .cat-block.sub .pic img {
		max-width: 80%;
		max-height: 80%;
	}

	.cat-blocks .cat-block.sub .title span {
		display: none;
	}

	.cat-blocks .cat-block.sub .title:before {
		content: attr(data-mob-title);
	}

	.cat-blocks .cat-block.sub .title {
		padding-top: 0;
		padding-bottom: 0;
		height: 60px;
		display: flex;
		align-items: center;
	}

	.cat-blocks .cat-block {
		margin: 0 0 12px;
		width: calc(50% - 6px);
	}

	.cat-blocks .cat-block .desktoponly {
		display: none;
	}

	.first-screen {
		margin: 0 0 30px;
	}

	.first-screen h1 {
		font-size: 40px;
		letter-spacing: -1px;
	}

	.cat-blocks .cat-block .bg {
		background: #F2F2F2;
	}

	.cat-blocks .cat-block {
		font-size: 20px;
		padding: 20px;
		color: #1C263C;
		background: linear-gradient(152.64deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
	}

	.cat-blocks .cat-block:hover,
	.cat-blocks .cat-block.active {
		background: linear-gradient(152.64deg, #1C263C 8.23%, #4C67A2 91.77%);
	}

	.cat-blocks .cat-block .bg .pic img {
		transform: translateX(50px);
	}

	.cat-blocks .cat-block:hover .bg .pic img,
	.cat-blocks .cat-block.active .bg .pic img {
		transform: scale(1.15) translateX(50px);
	}

	.cat-blocks .cat-block .bg .pic {
		padding-top: 75px;
	}

	.cat-blocks.owl-carousel {
		width: calc(100% - 80px);
	}

	.cat-blocks .cat-block.sub {
		min-height: 1px;
		color: #fff;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}

	.cat-blocks .cat-block.sub .btn {
		width: 40px;
		height: 40px;
	}

	.cat-blocks .cat-block.sub .btn:after {
		background-size: 16px auto;
	}

	.cat-blocks .cat-block.sub .title {
		padding: 20px 60px 20px 20px;
		font-size: 14px;
	}

	.cat-blocks {
		padding: 0 0 18px;
	}

	.content h2 {
		font-weight: 500;
		letter-spacing: 0;
		line-height: 129%;
		font-size: 28px;
		margin: 0 0 24px;
	}

	.garia-via {
		margin-bottom: 30px;
		border-radius: 20px;
		padding: 30px;
		background: #1C263C;
	}

	.content .garia-via h2 {
		color: #fff;
		font-size: 28px;
	}

	.garia-via .video {
		border-radius: 5px;
		margin: 0 0 30px;
		height: calc(100vw - 110px);
	}

	.garia-via .video:after {
		width: 60px;
		height: 60px;
		background-size: 18px auto;
	}

	.garia-via .txt {
		padding: 0;
		font-size: 14px;
	}

	.garia-via .txt ul li+li {
		margin-top: 14px;
	}

	.garia-via .txt ul li {
		padding: 0 0 0 38px;
	}

	.garia-via .txt ul li:before {
		width: 20px;
		height: 20px;
		border-width: 6px;
	}

	.darkblue-bg .tg-subs-block {
		margin-top: 203px;
	}

	.tg-subs-block.man:after {
		top: 0;
		max-width: 100%;
		width: 100%;
		background: #BAE00B;
	}

	.tg-subs-block.connect {
		margin-top: 0;
	}

	.tg-subs-block.connect:before {
		display: none;
	}

	.tg-subs-block {
		z-index: 5;
		margin: 263px 0 60px;
		min-height: 1px;
		padding: 40px 30px 30px;
		background: #BAE00B;
	}

	.tg-subs-block .man {
		z-index: 5;
		transition: top 0.3s ease;
		width: 393px;
		height: 274px;
		content: '';
		display: block;
		position: absolute;
		left: 50%;
		top: -253px;
		transform: translateX(-50%);
		background: url(../img/tg-block-man.webp) top center/contain no-repeat;
	}

	.tg-subs-block.scrolled .man {
		top: -219px;
	}

	.tg-subs-block:before {
		transition: all 0.3s ease;
		z-index: -1;
		content: '';
		display: block;
		position: absolute;
		width: 393px;
		bottom: 100%;
		left: 50%;
		transform: translateX(-50%);
		height: 274px;
		bottom: 100%;
		max-height: 253px;
		background: url(../img/tg-block-man-down.webp) top center/100% auto no-repeat;
	}

	.tg-subs-block.scrolled:before {
		max-height: 220px;
	}

	.tg-subs-block .txt {
		font-size: 14px;
		width: 100%;
		padding: 0;
	}

	.tg-subs-block>* {
		position: relative;
		z-index: 2;
	}

	.tg-subs-block .txt br {
		display: none;
	}

	.tg-subs-block .txt h2 {
		font-size: 24px;
		margin: 0 0 14px;
	}

	.tg-subs-block .btns {
		position: relative;
		margin: 40px 0 0 0;
		left: auto;
		bottom: auto;
	}

	.tg-subs-block.connect:not(.tg-only):after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		border-radius: 20px;
		background: #BAE00B;
	}

	.btn {
		line-height: 60px;
		font-size: 14px;
		padding: 0 20px;
	}

	.darkblue-bg:before {
		top: -180px;
	}

	.services-block {
		padding: 0 0 36px;
	}

	.services-block .serv-item {
		margin: 0 0 24px;
		font-size: 14px;
	}

	.services-block .serv-item .pic {
		margin: 0 0 10px;
	}

	.services-block .serv-item .inf {
		padding: 30px;
	}

	.services-block .serv-item .title {
		font-size: 24px;
		margin: 0 0 14px;
	}

	.services-block .serv-item .inf .btn {
		position: relative;
		bottom: auto;
		left: auto;
		margin: 24px 0 0 0;
		width: 100%;
	}

	.tg-subs-block.connect:not(.tg-only) p {
		display: none;
	}

	.tg-subs-block.connect {
		padding: 40px 30px 30px;
		min-height: 1px;
	}

	.tg-subs-block.connect:not(.tg-only) {
		background: #BAE00B;
	}

	.tg-subs-block.connect h2 {
		margin: 0;
	}

	.tg-subs-block.connect .btns {
		margin-top: 24px;
	}

	.tg-subs-block.connect .btns .btn {
		padding-left: 48px;
	}

	.tg-subs-block.connect .btns .btn.tg,
	.tg-subs-block.connect .btns .btn.wa {
		background-position: left 20px center;
	}

	footer:before,
	footer.inner:before,
	footer:not(.inner):before {
		top: 0;
		z-index: 2;
		position: relative;
		height: 480px;
		margin: -242px -25px 60px;
		width: calc(100% + 50px);
		content: '';
		display: block;
		background: url(../img/footer-mob-bg.webp) center center/cover no-repeat;
	}

	footer.no-bg:before {
		display: none;
	}

	footer {
		font-size: 14px;
		padding: 60px 0 20px;
	}

	footer .cols {
		margin: 0;
	}

	footer .cols .right {
		flex-wrap: wrap;
	}

	footer .cols .right .col {
		margin: 0 0 30px;
		width: 50%;
	}

	footer .cols.bottom .right {
		flex-direction: column;
		font-size: 12px;
	}

	footer .cols.bottom .right .col {
		margin-top: 10px;
		order: 2;
		margin: 0;
		width: 100%;
	}

	footer .cols.bottom .right .col+.col {
		order: 1;
		margin-bottom: 10px;
	}

	.up-btn {
		width: 65px;
		height: 65px;
		right: 25px;
		bottom: 25px;
	}

	.up-btn:after {
		background-size: 28px auto;
	}
}

@media all and (max-width: 500px) {
	.tg-subs-block.space:after {
		background: #1C263C url(../img/connect-space-bg-mob.webp) bottom center/100% auto no-repeat;
	}

	.brands-block .brands-list .block {
		min-width: 1px;
		margin-right: -1px;
		border-width: 1px;
		margin-bottom: -1px;
		height: 108px;
	}

	.brands-block .brands-list {
		border-width: 1px;
	}

	.brands-block .brands-list .block img {
		max-height: 70px;
	}

	.brands-block {
		margin: 0 0 40px;
	}
}


@media all and (max-width: 460px) {
	.prod-first-screen .pic {
		margin: 0 0 0 0px;
	}
}

@media all and (max-width: 380px) {
	.service .prod-first-screen .btns {
		display: block;
	}

	.service .prod-first-screen .inf .bottom .btn {
		width: 100%;
		max-width: 100%;
	}

	.service .prod-first-screen .inf .bottom .btn+.btn {
		margin-top: 12px;
	}

	.service .prod-first-screen .inf .bottom .btn.opacity {
		text-align: left;
		padding: 0 20px;
	}
}
