/***************************************************              GENERAL RESET STYLES             ***************************************************/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: normal;
}

*:focus {
	outline: none;
}

body {
	line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

nav ul {
	list-style: none;
}

ol,
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

strong,
b {
	font-weight: 600;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	border-style: none;
	width: 100%;
	height: auto;
}

form fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

input,
textarea,
select {
	vertical-align: middle;
	padding: 0;
	box-sizing: border-box;
	resize: none;

	border: 1px solid transparent;
	color: #000c49;
	background-color: #fff;
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
	color: #000c49;
	font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
	color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-background-clip: text;
	-webkit-text-fill-color: #fff;
	transition: background-color 5000s ease-in-out 0s;
	box-shadow: inset 0 0 20px 20px transparent;
}

.container {
	display: block;
	position: relative;
	/* overflow: hidden; */
	width: 2200px;
	margin: 0 auto;
	height: 100%;
}

header,
main,
footer,
section {
	display: block;
	position: relative;
	width: 100%;
}

body {
	background-color: #d4d4d4;
	position: relative;
}

/* lenis reset */
html {
	scroll-behavior: auto !important;
}

html.lenis {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}
/* lenis reset */

/* swup transition */
html.is-changing .transition-main {
	transition: transform 400ms ease-in-out;
}

html.is-animating.is-leaving .transition-main {
	transform: translateY(calc(1 * 5vh * var(--overlay-direction, 1)));
}

html.is-animating.is-rendering .transition-main {
	transform: translateY(calc(-1 * 5vh * var(--overlay-direction, 1)));
}

.transition-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background-color: var(--body-color);
	opacity: 0;
	transform: translate3d(0, calc(-1 * 100% * var(--overlay-direction, 1)), 0);
	pointer-events: none;
}

.bcs-wrap {
	opacity: 0;
	transition: opacity 400ms ease-in-out;
}
.bcs-wrap.active {
	opacity: 1;
}

html.is-changing .transition-overlay {
	transition: transform 400ms ease-in-out;
	opacity: 1;
}
html.is-animating .transition-overlay {
	transform: translate3d(0, 0, 0);
}

html.is-rendering .transition-overlay {
	transform: translate3d(0, calc(var(--overlay-direction, 1) * 100%), 0);
}

html.to-back {
	--overlay-direction: -1;
}
/* swup transition */

/* common styles */

:root {
	--main-white: #eee;
	--body-color: #d4d4d4;
	--main-dark: #1c1c1c;
	--main-red: #cd0118;
	--grey-text: #aaa;
	--orbitron: "Orbitron", sans-serif;
	--main-transition-ease: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	--gap-32: 32px;
}

span {
	font: inherit;
}

.section-margin {
	margin-top: 140px;
}
.section-margin-sm {
	margin-top: 70px;
}
.main-h2 {
	color: var(--main-dark);
	font-family: var(--orbitron);
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.main-p {
	color: var(--main-dark);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.main-p > span {
	font-weight: 600;
}
.main-btn {
	border-radius: 20px;
	width: 100%;
	padding: 25px 64px;
	background-color: var(--main-red);
	border: 1px solid var(--main-red);
	color: var(--main-white);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	transition: var(--main-transition-ease);
	overflow: hidden;
	outline: none;
	text-align: center;
}
.main-btn:hover {
	background-color: transparent;
	color: var(--main-red);
}
.main-btn.min-width {
	width: fit-content;
}
/* common styles */

/* header styles */
.header {
	position: absolute;
	top: 40px;
	z-index: 10;
}
.header__inner {
	padding: 0px 35px;
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
}
.header-nav-link {
	color: var(--main-dark);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	transition: var(--main-transition-ease);
	display: flex;
	align-items: center;
	gap: 6px;
}
.header-nav-link:hover {
	color: var(--main-red);
}
.header-nav {
	display: flex;
	align-items: center;
	gap: 56px;
}
.header-btns-right {
	display: flex;
	align-items: center;
	gap: 30px;
}
/* header styles */

/* hero styles */
.hero__inner {
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 20px;
	background-color: var(--main-white);
	padding: 70px 20px 50px;
	position: relative;
	height: calc(100vh - 40px);
}
.hero__inner-bg {
	position: absolute;
	width: calc(100% - 40px);
	height: auto;
	top: 50%;
	transform: translateY(-50%);
}
.hero-svg {
	position: relative;
	padding: 60px 0px;
	flex-shrink: 0;
}
.hero-svg img {
	opacity: 0;
	scale: 1.1;
}
.hero-center-img {
	position: absolute;
	top: 11vh;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	aspect-ratio: 850 / 455;
}
.hero-svg svg {
	width: 100%;
	height: auto;
	overflow: hidden;
}
.hero-svg path {
	transform-origin: 50% 50%;
	transform: translateY(101%);
}
.hero__inner-all {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.hero-r {
	display: flex;
	flex-direction: column;
	gap: 135px;
}
.hero-r-top {
	display: flex;
}
.hero-l-text {
	color: var(--main-dark);
	font-family: var(--orbitron);
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.hero-diagrams {
	max-width: 630px;
}
.hero-l {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.hero-r-bottom {
	display: flex;
	flex-direction: column;
	gap: var(--gap-32);
	max-width: 704px;
}
.hero-r-bottom > p {
	text-align: justify;
}
.hero-content {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	position: relative;
	z-index: 1;
	flex-grow: 1;
}
.hero-r-top {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 16px;
}
.hero-r-subtext {
	color: var(--grey-text);
	text-align: right;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 20px */
	text-transform: lowercase;
	max-width: 122px;
}
.hero-r-title {
	color: var(--main-red);
	font-family: var(--orbitron);
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	text-align: right;
}
/* hero styles */

/* world class */
.world-class__inner {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	position: relative;
}
.world-class-bg {
	position: absolute;
	top: 7.5%;
	left: -18%;
}
.world-class__l {
	display: flex;
	flex-direction: column;
	gap: var(--gap-32);
	max-width: 799px;
	padding-top: 35px;
}
.world-class__r {
	border-radius: 20px;
	border: 1px solid rgba(28, 28, 28, 0.1);
	background: rgba(238, 238, 238, 0.1);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 780px;
}
.world-class-title {
	color: var(--main-red);
	font-family: var(--orbitron);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}
.world-class__head {
	display: flex;
	flex-direction: column;
	gap: var(--gap-32);
}
.world-class__item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.world-class__item-title {
	color: var(--main-dark);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.world-class__list {
	display: flex;
	flex-direction: column;
	gap: var(--gap-32);
}
.world-class__foot {
	display: flex;
	flex-direction: column;
	gap: var(--gap-32);
}
.world-class__foot > p {
	color: var(--main-red);
}
/* world class */

/* vehicles */
.vehicles__inner {
	padding: 64px 30px;
	display: flex;
	flex-direction: column;
	gap: 64px;
	align-items: center;
	background-color: var(--main-white);
	border-radius: 20px;
}
.vehicles-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap-32) 20px;
	width: 100%;
}
.vehicles-grid__item {
	width: 100%;
	aspect-ratio: 850 / 293;
	overflow: hidden;
	position: relative;
	display: grid;
	place-content: center;
	cursor: pointer;
}
.vehicles-grid__item img {
	position: absolute;
	inset: 0;
	transition: var(--main-transition-ease);
}
.vehicles-grid__item:hover img {
	scale: 1.02;
}
.vehicles-grid__name {
	color: var(--main-white);
	font-family: var(--orbitron);
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}
.vehicles-grid__item:nth-child(1) {
	clip-path: url(#customClipPath1);
}
.vehicles-grid__item:nth-child(2) {
	clip-path: url(#customClipPath2);
}
.vehicles-grid__item:nth-child(3) {
	clip-path: url(#customClipPath3);
}
.vehicles-grid__item:nth-child(4) {
	clip-path: url(#customClipPath4);
}
/* vehicles */

/* comms */
.coms-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.coms-item {
	position: relative;
	padding: 64px 36px 36px 36px;
	border-radius: 20px;
	background-color: var(--main-white);
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.coms-item-title {
	color: var(--main-red);
	font-family: var(--orbitron);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}
.coms-icon {
	display: grid;
	place-content: center;
	position: absolute;
	left: 50%;
	top: calc(-46px);
	transform: translateX(-50%);
	width: 64px;
	height: 64px;
	border-radius: 60px;
	background-color: var(--main-white);
	border: 16px solid var(--body-color);
	box-sizing: content-box;
}
/* comms */

/* footer */
.footer {
	background-color: var(--main-dark);
}
.footer .header-nav-link {
	color: var(--main-white);
}
.footer .header-nav-link:hover {
	color: var(--main-red);
}
.footer-socilas {
	display: flex;
	align-items: center;
	gap: 8px;
}
.footer-bottom {
	background-color: #363636;
}
.footer-bottom__inner {
	padding: 12px 0px;
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: space-between;
}
.footer-top {
	background-color: var(--main-dark);
}
.footer__inner {
	padding: 64px 0px;
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
}
.footer-social {
	width: 43px;
	height: 43px;
	border: 1px solid var(--main-red);
	display: grid;
	place-content: center;
	border-radius: 40px;
	background-color: var(--main-red);
	color: var(--main-white);
	transition: var(--main-transition-ease);
}
.footer-social:hover {
	color: var(--main-red);
	background-color: var(--main-white);
}
.footer-bottom-link {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--main-white);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: var(--main-transition-ease);
}
a.footer-bottom-link:hover {
	color: var(--main-red);
}
.footer-payments {
	display: flex;
	align-items: center;
	gap: 20px;
}
/* footer */

/* prof tunning */
.prof-tuning__inner {
	padding-left: 36px;
	display: flex;
	gap: 70px;
}
.prof-tuning__texts {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.prof-tuning__l {
	display: flex;
	flex-direction: column;
	gap: var(--gap-32);
	width: 50%;
}
.prof-tuning__r {
	width: 50%;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.prof-tuning__r img {
	position: absolute;
	inset: 0;
	object-fit: cover;
	object-position: bottom;
	width: 100%;
	height: 100%;
}
/* prof tunning */

/* why us */
.why-us__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
}
.why-us__foot {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
	width: 100%;
}
.why-us__foot p {
	max-width: 760px;
}
.why-us-grid {
	width: 100%;
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr 1fr;
}
.why-grid-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 36px;
	border-radius: 20px;
	background-color: var(--main-white);
}
.why-grid-icon {
	display: grid;
	place-content: center;
	border-radius: 60px;
	border: 1px solid rgba(28, 28, 28, 0.1);
	width: 64px;
	height: 64px;
	flex-shrink: 0;
}
/* why us */

/* way */
.way-inner {
	display: flex;
	gap: 20px;
}
.way-list {
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 60px 35px;
	width: 50%;
	gap: var(--gap-32);
	background-color: var(--main-white);
}
.way-list-item {
	display: flex;
	gap: 64px;
	padding-bottom: var(--gap-32);
	position: relative;
}
.way-list-item:last-child {
	padding-bottom: 0;
}

.way-list-item::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 1px;
	height: 1px;
	width: 100%;
	background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill: none; stroke: %23C4C4C4; stroke-width: 8; stroke-dasharray: 8'/></svg>");
	background-size: cover;
	background-repeat: no-repeat;
}
.way-list-item:last-child::after {
	display: none;
}

.way-list-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: auto;
}
.way-list-title {
	color: var(--main-dark);
	font-size: 28px;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
}
.way-list-num {
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--main-red);
	font-family: var(--orbitron);
	font-size: 64px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	color: transparent;
	flex-shrink: 0;
	display: block;
	width: 134px;
	flex-shrink: 0;
}
.way-inner__l {
	position: relative;
	border-radius: 20px;
	background-color: var(--main-dark);
	width: 50%;
	padding: 35px;
}
.way-inner__content {
	position: relative;
	z-index: 2;
}
.way-title {
	color: var(--main-white);
}
.way-l-list {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 30px;
}
.way-l-block:nth-child(even) {
	align-self: flex-end;
	margin-right: 10px;
}
.way-l-block {
	border-radius: 16px;
	border: 2px solid rgba(238, 238, 238, 0.05);
	background: rgba(252, 252, 252, 0.05);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	width: fit-content;
	width: 305px;
}
.way-l-block-content {
	padding: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--main-white);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	border-radius: 8px;
	border: 1px solid rgba(238, 238, 238, 0.1);
}
.way-l-block-content svg {
	flex-shrink: 0;
}
.way-l-block {
	border-radius: 16px;
	border: 2px solid rgba(238, 238, 238, 0.05);
	background: rgba(252, 252, 252, 0.05);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	padding: 16px;
}
.way-inner__l > .line {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 100%;
}
.way-inner__l > .line svg {
	height: 100%;
}
.way-inner__l > .car {
	position: absolute;
	z-index: 1;
	inset: 0;
	display: grid;
	place-content: center;
}
.way-inner__l > .car img {
	max-width: 440px;
}
.way-l-block.block1 {
	margin-left: 100px;
}
.way-l-block.block3 {
	margin-left: 30px;
}
.way-l-block.block5 {
	margin-left: 100px;
}
/* way */

/* create */
.create__inner {
	display: flex;
	align-items: center;
	gap: 60px;
	border-radius: 20px;
	background-color: var(--main-dark);
	padding: 40px 60px 40px 40px;
	justify-content: space-between;
}
.create__img {
	width: 55%;
}
.create__content {
	width: 34%;
	display: flex;
	flex-direction: column;
	gap: var(--gap-32);
}
.create__content > h2,
.create__content > p {
	color: var(--main-white);
}
.create__content > .main-btn:hover {
	background-color: var(--main-white);
}
/* create */

/* price table */
.price-table__inner {
	display: flex;
	gap: 20px;
}
.price-table__fixed {
	position: sticky;
	top: 20%;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 36px;
	height: fit-content;
	background-color: var(--main-white);
	border-radius: 20px;
}
.price-text {
	color: var(--main-dark);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 12px;
}
.price-text.price {
	color: var(--main-red);
}
.price-table__l {
	width: 50%;
}
.price-table-line {
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-radius: 20px;
	background-color: var(--body-color);
    min-height: 50px;
}
.price-table-line.white {
	background-color: var(--main-white);
}
.price-table-line.red {
	background-color: var(--main-red);
}
.price-table-line.red .price-text {
	color: var(--main-white);
	font-size: 24px;
	font-family: var(--orbitron);
}
.price-table__r {
	width: 50%;
	padding: 36px;
	display: flex;
	flex-direction: column;
	gap: var(--gap-32);
	border-radius: 20px;
	border: 1px solid var(--main-red);
}
.price-table__wrap {
	display: flex;
	flex-direction: column;
	gap: var(--gap-32);
}
.price-table__list,
.price-table__cell {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.price-text__icon {
	width: 32px;
	height: 32px;
	aspect-ratio: 1/1;
	flex-shrink: 0;
}
/* price table */

/* breadcrumbs */
.bcs-wrap {
	padding-top: 90px;
}
.bcs-inner {
	padding: 0px 35px;
}
.rank-math-breadcrumb p {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #acaaaa;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.rank-math-breadcrumb p a,
.rank-math-breadcrumb p .separator {
	color: var(--main-dark);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.rank-math-breadcrumb p a {
	transition: var(--main-transition-ease);
}
.rank-math-breadcrumb p a:hover {
	opacity: 0.8;
}
/* breadcrumbs */

/* other hero */
.other-hero {
	margin-top: 32px;
}
.other-hero__inner {
	border-radius: 20px;
	background-color: var(--main-white);
	background-image: url("../images/other-hero.svg");
	background-repeat: no-repeat;
	background-size: calc(100% - 70px);
	background-position: center;
	position: relative;
}
.chip-files-hero {
}
.chip-files-hero .hero-svg {
	max-width: 1200px;
	margin: 0px auto;
	padding-bottom: 10px;
}
.chip-files-hero-img {
	max-width: 800px;
	display: block;
	margin: -30px auto 20px;
}
.other-hero__absolute-block {
	position: absolute;
	z-index: 1;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}
.chip-files1 {
	left: 40px;
	bottom: 36px;
}
.chip-files2 {
	right: 35px;
	top: 60%;
	transform: translateY(-50%);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	max-width: 305px;
}
.ecu-files-img {
	max-width: 800px;
	display: block;
	margin: 0px auto;
}
.ecu1 {
	max-width: 305px;
	bottom: 35px;
	left: 35px;
}
.pricelist-hero .hero-svg {
	padding-bottom: 60px;
	padding-top: 60px;
}
.price-hero-img {
	max-width: 800px;
	display: block;
	margin: 0px auto;
	margin-top: 20px;
}
.pricelist-hero svg {
	max-width: 550px;
	margin: 0px auto;
	display: block;
}
.pricelist-hero-block1 {
	max-width: 436px;
	color: var(--main-red);
	font-family: var(--orbitron);
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	-webkit-backdrop-filter: unset;
	backdrop-filter: unset;
	left: 120px;
	top: 50%;
	transform: translateY(-50%);
}
.pricelist-hero-block2 {
	color: var(--main-dark);
	font-family: var(--orbitron);
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	right: 52px;
	bottom: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	-webkit-backdrop-filter: unset;
	backdrop-filter: unset;
}
.pricelist-hero-block2__img {
	max-width: 341px;
	margin-right: 30px;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	border-radius: 20px;
	height: min-content;
}
/* other hero */

/* new */
.footer-mob-top {
	display: contents;
}

.mobile-price-block {
	display: none;
	margin-top: 20px;
}
.mpb__inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.mpb-title {
	color: var(--main-dark);
	font-family: var(--orbitron);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding-left: 20px;
}
.mpb-prices {
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-radius: 20px;
	border: 1px solid rgba(28, 28, 28, 0.1);
	background: rgba(252, 252, 252, 0.1);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	padding: 20px;
	width: 100%;
}
.mpb-prices__title {
	color: var(--main-red);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.mpb-prices__subtitle {
	color: var(--main-dark);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.mpb-prices__subtitle > span {
	color: var(--main-red);
}
.mpb-prices__texts {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.mpb-prices__texts p {
	color: var(--main-dark);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.mpb-prices__texts p span {
	font-weight: 500;
	color: var(--main-red);
}
.main-hero .hero-svg {
	padding-bottom: 20px;
}
.hero-r {
	height: 100%;
	gap: 20px;
	justify-content: space-between;
}
.viber-icon__wrap {
	position: fixed;
	top: 512px;
	right: 0;
	z-index: 11;
	display: flex;
	flex-direction:column;
	gap:3px;
}
.viber-icon {
	width: 44px;
	height: 44px;
	border-radius: 100px;
	border: 15px solid var(--body-color);
	background: var(--main-dark);
	display: grid;
	place-content: center;
	box-sizing: content-box;
	transition: var(--main-transition-ease);
}
.viber-icon:hover {
	opacity: 0.7;
}
.right-container {
	padding-right: calc(50vw - (1100px + 45px));
}
/* new */

/* header burger */
.header__burger {
	display: none;
	border-radius: 50%;
	background-color: var(--main-red);
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header__burger-lines {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 3px;
	width: 16px;
}
.header-cross {
	width: 20px;
	height: 20px;
	position: relative;
	display: none;
	opacity: 0;
}
.header-cross span {
	width: 100%;
	height: 2px;
	border-radius: 3px;
	display: block;
	background-color: var(--main-white);
	position: absolute;
	top: 50%;
}
.header-cross .line1 {
	transform: translateY(-50%) rotate(45deg) scaleX(0);
}
.header-cross .line2 {
	transform: translateY(-50%) rotate(-45deg) scaleX(0);
}
.header__burger-lines span {
	height: 2px;
	width: 100%;
	border-radius: 3px;
	display: block;
	background-color: #fff;
	transform-origin: left;
}
/* header burger */

/* mobile menu */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--body-color);
	z-index: 9;
	clip-path: inset(0% 0% 100% 0%);
	display: none;
}
.mobile-menu__inner {
	display: flex;
	background-color: var(--main-white);
	padding: 70px 20px 50px;
	margin-top: 10px;
	border-radius: 20px;
	height: calc(100% - 20px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
}
.mobile-menu__link {
	border-radius: 10px;
	border: 1px solid rgba(28, 28, 28, 0.1);
	padding: 10px;
	color: var(--main-dark);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 4px;
	width: 100%;
}
.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	margin-top: 20px;
}
/* mobile menu */

.text-page {
	padding-top: 80px;
	min-height: 70vh;
}

.pricelist-hero .other-hero__inner {
	background-position: bottom;
}
