/* ------------------------------------------------------------------------ */

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
	background-color: transparent;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a {
	color: inherit;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: 400;
}

svg {
	display: block;
}

/* ---------------------------------------------------------------------------- */

:root {
	--txt-black: #1c1e22;
	--txt-dark-blue: #33394a;
	--txt-dark-grey: #7f838e;
	--txt-medium-blue: #a3a9b7;
	--txt-grey: #c5c5c5;
	--txt-white: #fff;
	--base-black: #151a26;
	--base-dark-blue: #33394a;
	--base-medium-blue: #6e758a;
	--base-light-blue: #ebedf2;
	--base-white: #fff;
	--accent-yellow: #ffac00;
	--accent-dark-blue: #33394a;

	--font-family: "Golos", sans-serif;
	--second-family: "Onest", sans-serif;
	--font5: "Montserrat", sans-serif;
	--font7: "HelveticaNeueCyr", sans-serif;
}

body {
	font-family: var(--font-family);
	background: #f1f1f1;

	font-weight: 400;
	font-size: 18px;
	line-height: 120%;
	color: var(--txt-dark-blue);
}

.wrapper {
	overflow: hidden;
}

h1 {
	font-weight: 500;
	font-size: 56px;
	line-height: 106%;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--txt-white);
	font-family: var(--second-family);
}

h2,
.title-h2 {
	font-weight: 500;
	font-size: 44px;
	line-height: 120%;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--txt-dark-blue);
	font-family: var(--second-family);
}

.title-h2 {
	margin: 0px 0px 50px 0px;
	line-height: 106%;
}

.title-h2 span {
	color: var(--txt-dark-grey);
}

h2 span {
	color: var(--txt-dark-grey);
}

h3 {
	font-weight: 500;
	font-size: 24px;
	line-height: 106%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--txt-white);
	font-family: var(--second-family);
}

.container {
	max-width: 1376px;
	margin: 0 auto;
	padding: 0 72px;
}

.btn-main {
	display: inline-flex;
	align-items: center;
	gap: 30px;

	border-radius: 2px;
	padding: 4px 4px 4px 30px;
	background: var(--accent-yellow);

	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	text-align: center;
	color: var(--txt-black);
}

.btn-main span:first-child {
	width: 100%;
}

.btn-main span:last-child {
	border-radius: 2px;
	background: var(--txt-white);
	width: 44px;
	height: 44px;
	min-width: 44px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-dark-blue {
	display: inline-flex;
	align-items: center;
	gap: 30px;

	border-radius: 2px;
	padding: 4px 4px 4px 30px;
	background: var(--txt-dark-blue);

	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	text-align: center;
	color: var(--txt-white);
}

.btn-dark-blue span:last-child {
	border-radius: 2px;
	background: var(--txt-white);
	width: 44px;
	height: 44px;
	min-width: 44px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-light-blue {
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	text-align: center;
	color: var(--txt-dark-blue);

	display: block;
	border-radius: 2px;
	padding: 18px 30px;
	background: var(--base-light-blue);
}

section {
	margin: 0px 0px 80px 0px;
}

input {
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--base-black);
}

input::placeholder {
	color: var(--txt-grey);
}

.marg0 {
	margin: 0 !important;
}

/* .scroll {
	opacity: 0;
	translate: 0px 60px;
	transition: opacity 0.6s ease-in-out, translate 0.6s ease-in-out;
}

.scroll--active {
	opacity: 1;
	translate: 0px 0px;
}

@media (prefers-reduced-motion: reduce) {
	.scroll {
		transition: none;
	}
} */

/* -------------------------header------------------------- */

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;

	margin: 0px 0px 50px 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.header-main {
	position: unset;
	background: var(--txt-dark-blue);
}

.header__container {}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
}

.header__logo {}

.header__logo-img {
	max-width: 114px;
}

.header__main {
	padding: 25.5px 26px;
	border-left: 1px solid rgba(255, 255, 255, 0.05);
	border-right: 1px solid rgba(255, 255, 255, 0.05);

	display: flex;
	align-items: center;
	gap: 26px;
}

.social {
	display: flex;
	align-items: center;
	gap: 3px;
}

.social-item {}

.social-item-link {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 44px;
	height: 44px;
	min-width: 44px;

	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 2px;
}

.avito {
	width: 26px;
	height: 24px;
	min-width: 26px;
}

.wh {
	width: 24px;
	height: 24px;
	min-width: 24px;
}

.tg {
	width: 24px;
	height: 24px;
	min-width: 24px;
}

.header__menu {
	display: flex;
	align-items: center;
	gap: 23px;
}

.header__menu-btn {
	width: 44px;
	height: 44px;
	min-width: 44px;
	padding: 3px 0px 0px 0px;

	display: flex;
	align-items: center;
	justify-content: center;

	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.13);
	backdrop-filter: blur(10px);
}

.header__menu-btn-mob-box {
	display: none;
	gap: 3px;
}

.header__menu-btn-mob-box .social-item-link {
	display: none;
}

.menu-icon {
	width: 18px;
	height: 5px;
}

.header__list {
	display: flex;
	align-items: center;
	gap: 40px;
}

.header__item {}

.header__item-link {
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	color: var(--txt-white);
}

.header__right {
	display: flex;
	align-items: center;
	gap: 26px;
}

.header__tel {
	display: flex;
	flex-direction: column;
	gap: 2px;
	align-items: end;
	white-space: nowrap;
}

.header__tel-desc {
	display: flex;
	align-items: center;
	gap: 6px;

	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: rgba(255, 255, 255, 0.8);
}

.green-circle {
	width: 6px;
	height: 6px;
	min-width: 6px;
}

.header__tel-link {
	font-weight: 600;
	font-size: 18px;
	line-height: 130%;
	color: var(--txt-white);
	font-family: var(--second-family);
}

.header__link {
	width: 44px;
	height: 44px;
	min-width: 44px;

	display: flex;
	align-items: center;
	justify-content: center;

	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 2px;
}

.basket {
	width: 24px;
	height: 21px;
}

/* -------------------------preview------------------------- */

.page__preview {
	position: relative;
	z-index: 1;
	padding: 149px 0 50px 0;
	margin: 0px 0px 50px 0px;
}

.preview-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.preview__container {}

.preview__inner {
	min-height: 651px;

	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;
}

.preview__inner>div:first-child {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 43px;

	max-width: 608px;
	width: 100%;
}

.preview__inner>div:first-child p {
	display: none;
}

.arrow {
	width: 12px;
	height: 12px;
	min-width: 12px;
	fill: #1C1E22;
}

.preview__inner div:nth-child(2) {
	display: flex;
	align-items: end;
	gap: 40px;
	justify-content: space-between;
}

.preview__inner div:nth-child(2) p {
	max-width: 508px;
	width: 100%;

	font-weight: 400;
	font-size: 18px;
	line-height: 120%;
	color: var(--txt-white);
}

.preview-reviews {
	max-width: 504px;
	width: 100%;
	padding: 16px;

	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.13);

	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.preview-reviews div {
	max-width: 163px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
}

.preview-reviews img {
	width: 100%;
	max-width: 150px;
	height: 212px;
	object-fit: cover;
}

.preview-reviews div span:first-child {
	font-weight: 500;
	font-size: 24px;
	line-height: 106%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--txt-white);
	font-family: var(--second-family);
}

.preview-reviews-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;

	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 4px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.preview-reviews-icon svg {
	fill: #fff;
}

/* -------------------------advantages------------------------- */

.page__advantages {}

.advantages__container {}

.advantages__inner {}

.head {
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin: 0px 0px 50px 0px;
}

.head div:first-child {
	display: flex;
	align-items: center;
	gap: 24px;
}

.head div:first-child span:first-child {
	font-weight: 400;
	font-size: 20px;
	line-height: 106%;
	letter-spacing: -0.02em;
	color: var(--txt-grey);
	white-space: nowrap;
	font-family: var(--second-family);
}

.head div:first-child span:nth-child(2) {
	width: 100%;
	height: 1px;
	background-color: rgba(151, 156, 171, 0.3);
}

.head div:nth-child(2) {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.head div:nth-child(2) div {
	display: flex;
	flex-direction: column;
	align-items: start;
	max-width: 400px;
	min-width: 296px;
	width: 100%;
	gap: 20px;
	justify-content: space-between;
}

.head div:nth-child(2) div p span {
	font-weight: 500;
}

.head h2 {
	max-width: 712px;
}

.advantages__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 16px;
}

.advantages__card-video {
	grid-row: 1/-1;
}

.advantages__card-video-mob {
	display: none;
}

.advantages__card-video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.advantages__card {
	background: var(--txt-white);
	padding: 16px;
	min-height: 226px;

	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 20px;
	justify-content: space-between;
}

.advantages-card-img img {
	width: 100%;
	object-fit: cover;
	height: 230px;
}

.advantages__card>span:first-child {
	display: block;
	width: 100%;

	font-weight: 400;
	font-size: 24px;
	line-height: 106%;
	letter-spacing: -0.02em;
	color: var(--txt-dark-blue);
	font-family: var(--second-family);
}

.advantages__card span:first-child>span {
	color: var(--txt-dark-grey);
}

.advantages__card span:nth-child(2) {
	border: 1px solid #c9c8c6;
	border-radius: 2px;
	width: 43px;
	height: 43px;
	min-width: 43px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.dot-1 {}

.dot {
	min-width: 17px;
	width: 17px;
	height: 4px;
	fill: var(--txt-dark-blue);
}

.dot-2 {}

.dot-3 {}

.advantages-card-dark {
	background: var(--txt-dark-blue);
}

.advantages-card-dark .dot {
	fill: var(--txt-white);
}

.advantages-card-dark span:nth-child(2) {
	background: rgba(255, 255, 255, 0.13);
}

.advantages-card-dark span:first-child {
	color: var(--txt-white);
}

.dot-4 {
	height: 11px;
}

.dot-5 {
	height: 11px;
}

.dot-6 {
	height: 11px;
}



.advantages-brand .head div:nth-child(2) {
	flex-direction: column;
}

.advantages-brand__body {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.advantages-brand__body>div:first-child {
	max-width: 504px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 50px;
}

.advantages-brand__body .advantages__cards {
	max-width: 608px;
	display: flex;
	flex-direction: column;
}

.advantages-brand__body>div:first-child div:nth-child(2) {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 50px;
}

.advantages-brand .head {
	margin: 0px 0px 80px 0px;
}

.advantages-brand__body>div:first-child div:nth-child(2) p {
	max-width: 450px;
}

/* -------------------------equipment-catalog------------------------- */

.page__equipment-catalog {
	overflow: hidden;
}

.equipment-catalog__container {}

.equipment-catalog__inner {}

.swiper-equipment-catalog {
	width: 100%;
}

.swiper-equipment-catalog .swiper-slide {
	max-width: 400px;
	width: 100%;
	height: unset;
}

.equipment-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.swiper-equipment-card {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.swiper-equipment-card img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.swiper-equipment-card {
	min-height: 300px;
}

.swiper-equipment-card-status {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 100%;
	z-index: 2;

	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 4px;
}

.swiper-equipment-card-status span {
	border-radius: 2px;
	padding: 4px 8px 6px;

	font-weight: 400;
	font-size: 14px;
	line-height: 129%;
	color: var(--txt-white);
	font-family: var(--second-family);
}

.bg-red {
	background: #eb1c1c;
}

.bg-green {
	background: #229d10;
}

.bg-dark-blue {
	background: var(--txt-dark-blue);
}

.bg-blue {
	background: #325fe5;
}

.swiper-equipment-card-btn {
	position: absolute;
	top: calc(50% + 11px);
	transform: translateY(-50%);
	z-index: 2;

	width: 40px;
	height: 40px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper-equipment-card-btn-prev {
	left: 0;
}

.swiper-equipment-card-btn-next {
	right: 0;
}

.arrow-prev,
.arrow-next {
	width: 13px;
	height: 20px;
	min-width: 13px;
	fill: #fff;
}

.equipment-card>div:nth-child(2) {
	background: var(--txt-white);
	border-radius: 2px;
	padding: 16px;

	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: space-between;
	flex: 1 1 100%;
}

.equipment-card>div:nth-child(2)>div:first-child {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.equipment-card>div:nth-child(2)>div:first-child>span {
	font-weight: 500;
	font-size: 20px;
	line-height: 115%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--txt-dark-blue);
	font-family: var(--second-family);

	display: flex;
	flex-direction: column;
	gap: 4px;
}

.equipment-card>div:nth-child(2)>div:first-child>span>span {
	color: var(--txt-dark-grey);
}

.equipment-card>div:nth-child(2)>div:first-child ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.equipment-card>div:nth-child(2)>div:first-child ul li {
	display: flex;
	gap: 5px;
}

.equipment-card>div:nth-child(2)>div:first-child ul li span {
	font-weight: 400;
	font-size: 16px;
	line-height: 106%;
	color: var(--txt-dark-blue);
	white-space: nowrap;
}

.equipment-card>div:nth-child(2)>div:first-child ul li span:nth-child(3) {
	font-weight: 500;
}

.equipment-card>div:nth-child(2)>div:first-child ul li span:nth-child(2) {
	width: 100%;
	border-bottom: 1px solid rgba(191, 199, 209, 0.1);
}

.equipment-card>div:nth-child(2)>div:nth-child(2) {
	display: flex;
	align-items: center;
	gap: 8px;
}

.equipment-card .btn-main {
	width: 100%;
}

.equipment-card .btn-main span:first-child {
	display: block;
	width: 100%;
}

.equipment-card .btn-dark-blue {
	width: 52px;
	height: 52px;
	min-width: 52px;
	padding: 4px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.equipment-card .submit-request {
	max-width: unset;
	width: 100%;
	padding: 4px 4px 4px 30px;
}

.equipment-card .submit-request span:first-child {
	width: 100%;
}

.equipment-card .btn-dark-blue .wh {
	width: 28px;
	height: 28px;
	min-width: 28px;
}

/* -------------------------categories-equipment------------------------- */

.page__categories-equipment {
	background: var(--txt-dark-blue);
	padding: 60px 0 80px 0;
}

.categories-equipment-2 {
	padding: 0 0 80px 0;
}

.categories-equipment-3 {
	padding: 60px 0px 20px 0px;
}

.categories-equipment__container {}

.categories-equipment__inner {}

.categories-equipment__inner .head {
	gap: 100px;
}

.categories-equipment__inner .head h2 {
	color: var(--txt-white);
}

.categories-equipment__inner .head p {
	color: var(--txt-white);
}

.categories-equipment__inner .head h2 span {
	color: var(--txt-medium-blue);
}

.categories-equipment__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.categories-equipment__cards:not(:last-child) {
	margin: 0px 0px 60px 0px;
}

.categories-equipment-card-img {
	grid-column: 1/-1;
}

.categories-equipment-card-img img {
	width: 100%;
}

.categories-equipment__card {
	padding: 20px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	min-height: 350px;

	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
}

.categories-equipment__card::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;

	background-color: rgb(26, 27, 28, .7);
}

.categories-equipment__card>div:nth-child(2) {
	display: flex;
	align-items: center;
	gap: 24px;
}

.categories-equipment__card>div:nth-child(2) span {
	width: 55px;
	height: 55px;
	min-width: 55px;

	background: var(--accent-yellow);
	border-radius: 2px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.categories-equipment__card>div:nth-child(3) {
	display: flex;
	flex-direction: column;

	font-weight: 400;
	line-height: 106%;
	color: var(--txt-white);
}

.categories-equipment__card img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	object-fit: cover;
}

.truck {
	fill: none;
	width: 45px;
	height: 45px;
	min-width: 45px;
}



.request {
	background: var(--base-medium-blue);
	padding: 22px 16px 28px 25px;

	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.request__body {
	max-width: 483px;
	width: 100%;
	padding: 2.5px 0;

	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;
}

.request__body .head {
	gap: 40px;
	margin: 0;
}

.request__body>div:nth-child(2) {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.request__body>div:nth-child(2)>div:first-child {
	display: flex;
	flex-direction: column;
	gap: 30px;

	font-weight: 500;
	font-size: 20px;
	line-height: 115%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #cbd1e0;
	font-family: var(--second-family);
}

.request__body>div:nth-child(2)>div:first-child span {
	color: #eef6fc;
}

.request__body>div:nth-child(2)>div:nth-child(2) {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.request__body .header__tel {
	align-items: start;
}

.request__body .header__tel-link {
	font-family: var(--font5);
	font-weight: 600;
	font-size: 17px;
	line-height: 130%;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: var(--txt-white);
}

.request__body .header__tel-desc {
	gap: 8px;
}

.request__form {
	max-width: 600px;
	min-height: 588px;
	width: 100%;

	background: #f6f7fc;
	border-radius: 4px;
	padding: 16px;

	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;
}

.request__form>div:first-child {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.request__form>div:first-child>div {
	display: flex;
	align-items: center;
	gap: 20px;
}

.request__form>div:first-child>div span:first-child {
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	color: var(--txt-dark-blue);
}

.request__form>div:first-child>div span:nth-child(2) {
	font-weight: 400;
	font-size: 17px;
	line-height: 120%;
	color: var(--txt-dark-grey);
}

.request__form>div:first-child>div>div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.request__form>div:first-child p {
	font-weight: 500;
	font-size: 20px;
	line-height: 115%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--txt-dark-blue);
	font-family: var(--second-family);
}

.request__form>div:first-child p span {
	color: var(--txt-dark-grey);
}

.request__form>div:nth-child(2) {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.form-label {
	display: block;
	width: 100%;
}

.form-input {
	padding: 16px 24px;
	width: 100%;
	background: var(--base-light-blue);

	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--txt-black);
}

.form-input::placeholder {
	color: var(--txt-grey);
}

.dropdown {
	position: relative;
}

.dropdown__head {
	padding: 18px 24px;
	background: var(--base-light-blue);

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.dropdown__head-value {
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--txt-grey);

	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	word-break: break-all;
}

.dropdown__head-icon {
	transition: all .3s ease;
}

.dropdown-arrow {
	width: 7px;
	height: 4px;
	min-width: 7px;
}

.dropdown__content {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 100%;

	transform: translateY(-20px);
	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
}

.dropdown__list {
	background: var(--base-light-blue);
}

.dropdown__item {
	padding: 10px;
	cursor: pointer;
}

.dropdown__item:not(:last-child) {
	border-bottom: 1px solid #ccc;
}

.check {
	display: flex;
	align-items: start;
	gap: 10px;

	font-weight: 400;
	font-size: 13px;
	line-height: 123%;
	color: #a6a8ae;
}

.checkbox {}

.checkbox {
	appearance: none;
	-webkit-appearance: none;
}

.checkbox {
	appearance: none;
	border-radius: 1px;
	width: 16px;
	height: 16px;
	min-width: 16px;
	background: var(--base-light-blue);
	cursor: pointer;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	margin: 2px 0px 0px 0px;
}

.checkbox:checked {
	background-image: url("../img/check.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.request__form .btn-main span:first-child {
	width: 100%;
}

/* -------------------------service------------------------- */

.page__service {
	overflow: hidden;
}

.service__container {}

.service__inner {}

.service__inner .head {
	position: relative;
}

.service__inner .head h2 {
	padding: 0px 0px 74px 0px;
}

.service-btns {
	position: absolute;
	bottom: 0;
	left: 0;

	display: flex;
	align-items: center;
	gap: 6px;
}

.service-btns svg {
	fill: var(--txt-dark-blue);
	width: 10px;
	height: 16px;
	min-width: 10px;
}

.btn-slider {
	border-radius: 2px;
	width: 44px;
	height: 44px;
	min-width: 44px;
	background: var(--txt-white);

	display: flex;
	align-items: center;
	justify-content: center;
}

.service-btn-prev {}

.service-btn-next {}

.swiper-service {
	width: 100%;
}

.swiper-service .swiper-slide {
	height: unset;
	max-width: 608px;
}

.swiper-service img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* -------------------------stock------------------------- */

.page__stock {}

.stock__container {}

.stock__inner {}

.stock__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.stock__card {
	padding: 16px;
	min-height: 300px;
	position: relative;
	z-index: 1;

	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;
}

.stock__card::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	z-index: -1;
	background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.stock__card img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.stock__card span {
	width: 44px;
	height: 44px;
	min-width: 44px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: var(--txt-dark-blue);
	border-radius: 2px;
}

.stock__card span svg {
	fill: #fff;
}

.stock__card dl {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.stock__card dt {
	font-weight: 500;
	font-size: 20px;
	line-height: 115%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--txt-white);
	font-family: var(--second-family);
}

.stock__card dd {
	color: #d2d5de;
}

/* -------------------------spares------------------------- */

.page__spares {}

.spares__container {}

.spares__inner {}

.spares__body {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.spares__form {}

.spares__form label {
	border-radius: 4px;
	padding: 4px 4px 4px 24px;
	background: var(--txt-white);

	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.spares__form-btn {
	width: 44px;
	height: 44px;
	min-width: 44px;
	padding: 4px;
	border-radius: 2px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.search {
	width: 16px;
	height: 16px;
	min-width: 16px;
}

.spares__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}

.spares__card {
	background: var(--txt-white);
	padding: 16px;

	display: flex;
	flex-direction: column;
	gap: 17px;
	justify-content: space-between;
}

.spares__card>div {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.spares__card>div>div svg {
	width: 16px;
	height: 17px;
	min-width: 16px;
}

.spares__card>div img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.spares__card>div:first-child span {
	font-weight: 400;
	font-size: 17px;
	line-height: 120%;
	color: var(--txt-grey);
	font-family: var(--second-family);
}

.spares__card>div:first-child p {
	font-weight: 500;
	font-size: 17px;
	line-height: 120%;
	color: var(--txt-dark-blue);

	min-height: 65px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.spares__card>div:first-child>div {
	display: flex;
	align-items: start;
	gap: 8px;
}

.spares__card>div:first-child>div span {
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0.02em;
	color: #4da24c;
	font-family: var(--second-family);
}

.spares__card>div:nth-child(2) span {
	font-weight: 600;
	font-size: 17px;
	line-height: 120%;
	color: var(--txt-dark-blue);
	font-family: var(--second-family);
}

.spares__card-add {
	width: 100%;
	padding: 10px;

	font-weight: 400;
	font-size: 17px;
	line-height: 130%;
	color: var(--txt-black);
	text-align: center;
	justify-content: center;
	text-transform: unset;
}

.spares__card-curr {
	display: none;
	align-items: center;
	gap: 8px;
}

.spares__card-curr-box {
	max-width: 94px;
	min-width: 94px;
	padding: 9px 7px;
	border: 1px solid #eeedea;
	border-radius: 4px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
}

.spares__card-curr-decr,
.spares__card-curr-incr {
	width: 25px;
	height: 22px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.spares__card-curr-value {
	font-weight: 400;
	font-size: 17px;
	line-height: 130%;
	color: var(--txt-dark-blue);

	width: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.spares__card-curr-incr {}

.spares__card-curr-basket {
	width: 100%;
	padding: 10px;
	justify-content: center;

	font-weight: 400;
	font-size: 17px;
	line-height: 130%;
	color: var(--txt-white);
	text-transform: unset;
}

/* -------------------------our-addresses------------------------- */

.page__our-addresses {
	padding: 60px 0 80px 0;
	background: var(--txt-dark-blue);
}

.our-addresses-padd {
	padding: 60px 0px 20px 0px;
}

.our-addresses-padd-2 {
	padding: 0px 0px 80px 0px;
}

.our-addresses__container {}

.our-addresses__inner {}

.our-addresses__inner h2 {
	color: var(--txt-white);
	max-width: 711px;
	padding: 0px 0px 74px 0px;
	position: relative;
}

.our-addresses__inner h2 span {
	color: var(--txt-medium-blue);
}

.our-addresses__inner .head {
	position: relative;
}

.our-addresses__inner .head p {
	color: var(--txt-white);
}

/* -------------------------reviews------------------------- */

.page__reviews {
	padding: 0px 0px 80px 0px;
	background: var(--txt-dark-blue);
}

.reviews-2 {
	padding: 60px 0px 20px 0px;
}

.reviews__container {}

.reviews__inner {
	background: var(--base-medium-blue);
	padding: 16px;
	position: relative;
}

.reviews__inner>span {
	font-weight: 400;
	font-size: 20px;
	line-height: 106%;
	letter-spacing: -0.02em;
	color: #cbd1e0;
	font-family: var(--second-family);

	display: block;
	margin: 0px 0px 75px 0px;
}

.reviews__content {
	display: flex;
	gap: 40px;
}

.reviews__body {
	max-width: 384px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;
}

.reviews__body h2 span {
	color: #cbd1e0;
}

.reviews__body h2 {
	color: var(--txt-white);
}

.reviews__body h2 div {
	display: flex;
	align-items: center;
	gap: 12px;
	letter-spacing: -0.07em;
}

.reviews__body-row {}

.reviews__body>div:nth-child(2) {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.reviews__inner .service-btns {
	top: 16px;
	right: 16px;
	left: auto;
	bottom: auto;
}

.reviews__rating {
	display: flex;
	align-items: center;
	gap: 24px;
}

.reviews__rating>span {
	font-weight: 500;
	font-size: 64px;
	line-height: 120%;
	letter-spacing: -0.07em;
	text-transform: uppercase;
	color: var(--txt-white);
	font-family: var(--second-family);
}

.reviews__rating>div {
	display: flex;
	flex-direction: column;
	gap: 8px;

	font-weight: 500;
	font-size: 16px;
	line-height: 115%;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: #cbd1e0;
}

.reviews__rating>div>div {
	display: flex;
	align-items: center;
	gap: 4px;
}

.star {
	width: 20px;
	height: 20px;
	min-width: 20px;
}

.reviews__slider {
	width: 100%;
	max-width: 776px;
	overflow: hidden;
	margin: 4px 0px 0px 0px;
}

.swiper-reviews {}

.reviews__slide {
	padding: 16px 16px 100px 16px;
	background: #f6f7fc;
	border-radius: 4px;
	height: unset;

	display: flex;
	flex-direction: column;
	gap: 60px;

	position: relative;
	z-index: 1;
}

.reviews__slide>div:first-child {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.reviews__slide>div:first-child>div:first-child {
	display: flex;
	align-items: center;
	gap: 4px;
}

.reviews__slide>div:first-child>div:nth-child(2) {
	display: flex;
	align-items: start;
	gap: 8px;
}

.reviews__slide>div:first-child>div:nth-child(2) span {
	font-weight: 400;
	font-size: 17px;
	line-height: 120%;
	color: var(--txt-grey);
}

.reviews__slide>div:first-child>div:nth-child(2) span:first-child {
	font-weight: 500;
	font-size: 20px;
	line-height: 115%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--txt-dark-blue);
	font-family: var(--second-family);
}

.reviews__slide p {
	font-weight: 400;
	line-height: 123%;
	color: var(--txt-dark-blue);

	display: -webkit-box;
	-webkit-line-clamp: 13;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.reviews__slide-icon {
	position: absolute;
	bottom: 16px;
	right: 16px;
	border: 1px solid var(--base-medium-blue);
	border-radius: 4px;
	width: 44px;
	height: 44px;

	display: flex;
	align-items: center;
	justify-content: center;
}

/* -------------------------neman-buses------------------------- */

.page__neman-buses {
	position: relative;
	z-index: 1;
	padding: 60px 0 80px 0;
}

.page__neman-buses::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;

	background-color: rgb(26, 27, 28, .7);
}

.neman-buses-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	object-fit: cover;
}

.neman-buses__container {}

.neman-buses__inner {}

.neman-buses__inner .head {
	margin: 0;
	gap: 92px;
}

.neman-buses__inner .head h2 {
	color: var(--txt-white);
	line-height: 107%;
}

.neman-buses__inner .head div:nth-child(2) {
	flex-direction: column;
	gap: 104px;
}

.neman-buses__inner .head div:nth-child(2) div {
	max-width: 608px;
	gap: 40px;
}

.neman-buses__inner .head div:nth-child(2) div p {
	color: var(--txt-white);
	line-height: 123%;
}




/* -------------------------documentation------------------------- */

.page__documentation {}

.documentation__container {}

.documentation__inner {}

.documentation__inner .head {
	position: relative;
}

.documentation__inner .head h2 {
	padding: 0px 0px 74px 0px;
}

.documentation__slider {
	width: 100%;
	overflow: hidden;
}

.documentation__slide {
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: unset;
}

.documentation__slide img {
	max-height: 420px;
	width: 100%;
	object-fit: cover;
}

.documentation__slide span {
	font-weight: 400;
	font-size: 17px;
	line-height: 120%;
	color: var(--txt-medium-blue);
	font-family: var(--second-family);
}

/* -------------------------blog------------------------- */

.page__blog {}

.blog__container {}

.blog__inner {}

.blog__inner .head {
	margin: 0px 0px 40px 0px;
	gap: 24px;
}

.blog__tabs {
	margin: 0px 0px 40px 0px;
	border-radius: 2px;

	display: inline-flex;
}

.blog__tab {
	padding: 18px 16px;
	cursor: pointer;
	transition: all .2s ease;
	background: var(--base-medium-blue);

	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--txt-white);
}

.blog__tab:last-child {
	border-radius: 0 2px 2px 0;
}

.blog__tab--active {
	border-radius: 2px;
	background: var(--txt-dark-blue);
}

.blog__slider {
	width: 100%;
}

.swiper-blog {}

.swiper-blog .swiper-slide {
	height: unset;
	max-width: 400px;
}

.blog__card {
	background: var(--txt-white);
	padding: 16px;
	height: 100%;

	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: space-between;
}

.blog__card>div:first-child {
	display: flex;
	flex-direction: column;
	gap: 16px;

	font-weight: 400;
	font-size: 20px;
	line-height: 106%;
	letter-spacing: -0.02em;
	color: var(--txt-dark-blue);
	font-family: var(--second-family);
}

.blog__card>div:first-child img {
	width: 100%;
	height: 276px;
	object-fit: cover;
}

.blog__card>div:nth-child(2) {
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 16px;
}

.blog__card>div:nth-child(2)>div {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	flex-wrap: wrap;

	font-weight: 400;
	font-size: 16px;
	line-height: 106%;
	letter-spacing: -0.02em;
	color: var(--txt-medium-blue);
	font-family: var(--second-family);
}

.blog__card>div:nth-child(2)>span {
	border-radius: 2px;
	width: 44px;
	height: 44px;
	min-width: 44px;
	background: var(--base-medium-blue);

	display: flex;
	align-items: center;
	justify-content: center;
}

.blog__card>div:nth-child(2)>span svg {
	fill: #fff;
}

/* -------------------------faq------------------------- */

.page__faq {}

.faq__container {}

.faq__inner {}

.faq__body {
	display: flex;
	align-items: start;
	gap: 16px;
}

.faq__video {
	max-width: 400px;
	width: 100%;
}

.faq__video img {
	width: 100%;
}

.faq__accordions {
	max-width: 816px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 8px;
}

.faq__accordion {
	background: var(--txt-white);
}

.faq__accordion-head {
	padding: 12px 12px 12px 16px;

	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: space-between;
}

.faq__accordion-head span {
	font-weight: 400;
	font-size: 20px;
	line-height: 106%;
	letter-spacing: -0.02em;
	color: var(--txt-dark-blue);
	font-family: var(--second-family);
}

.faq__accordion-head div {
	width: 44px;
	height: 44px;
	min-width: 44px;
	background: var(--base-light-blue);
	border-radius: 2px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.faq__accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}

.faq__accordion-content div {
	padding: 12px 12px 12px 16px;
}

.faq__accordion-content p {
	font-weight: 400;
	font-size: 18px;
	line-height: 106%;
	letter-spacing: -0.02em;
	color: var(--txt-dark-blue);
}

/* -------------------------request------------------------- */

.page__request {}

.request__container {}

.request__inner {
	background: var(--base-medium-blue);
	padding: 20px;
}

.request__inner .head {
	gap: 40px;
	margin: 0px 0px 40px 0px;
}

.request__inner .head h2 {
	color: var(--txt-white);

	max-width: 500px;
}

.request__inner .head div:nth-child(2) div {
	max-width: 596px;
}

.request__inner .head div:nth-child(2) div p {
	font-weight: 500;
	font-size: 20px;
	line-height: 115%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #cbd1e0;
	font-family: var(--second-family);
}

.request__inner .request__form {
	max-width: unset;
	min-height: unset;
}

.request__inner .request__form>div:first-child {
	flex-direction: row;
	gap: 16px;
}

.request__inner .form-label {
	max-width: 276px;
}

.request__inner .check {
	max-width: 276px;
}

/* -------------------------map------------------------- */

.map {
	width: 100%;
	min-height: 450px;
}

/* -------------------------footer------------------------- */

.footer {
	background: var(--txt-dark-blue);
	padding: 40px 0 12px 0;
}

.footer__container {}

.footer__inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.footer__top {}

.footer__logo {}

.footer__logo-img {}

.footer__main {
	display: flex;
	align-items: start;
	gap: 40px;
	justify-content: space-between;

	position: relative;
}

.footer__box {
	max-width: 270px;

	display: flex;
	flex-direction: column;
	gap: 24px;
}

.footer__box .header__tel {
	align-items: start;
}

.footer__box .header__tel-link {
	font-size: 24px;
}

.footer__box .header__tel-desc {
	gap: 8px;
	padding: 0px 0px 0px 7px;
}

.footer__box-email {
	font-weight: 400;
	font-size: 20px;
	line-height: 130%;
	color: #f3f5fa;
}

.footer__box-desc {
	display: flex;
	flex-direction: column;
	gap: 24px;

	font-weight: 400;
	font-size: 15px;
	color: #f3f5fa;
	line-height: 122%;
}

.footer__box .btn-main span:first-child {
	width: 100%;
}

.footer__box-desc-pos {
	position: absolute;
	bottom: 0;
	left: 366px;
	max-width: 270px;
}

.footer__columns {
	max-width: 865px;
	width: 100%;

	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px;
}

.footer__column {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.footer-column-1 {
	max-width: 270px;
	width: 100%;
}

.footer-column-2 {}

.footer-column-3 {
	max-width: 296px;
	width: 100%;
}

.footer__column ul {
	display: flex;
	flex-direction: column;
	gap: 16px;

	font-weight: 400;
	line-height: 130%;
	color: #f3f5fa;
}

.footer__column .social {
	flex-direction: row;
	gap: 4px;
}

.footer__column .social-item-link {
	border-radius: 4px;
	border: none;
}

.footer__column .social-item:nth-child(1) .social-item-link {
	background: #f3f5fa;
}

.footer__column .social-item:nth-child(2) .social-item-link {
	background: #25d366;
}

.footer__column .social-item:nth-child(3) .social-item-link {
	background: #31a6e1;
}

.social-item {}

.social-item-link {}

.footer__bot {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 7px 0px 0px 0px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;

	font-weight: 400;
	font-size: 15px;
	color: #e4e7ec;
}

.footer__bot-text {}

.footer__bot-link {}

.footer__bot-link-img {}

/* -------------------------pagination------------------------- */

.pagination {
	margin: 0px 0px 24px 0px;
}

.pagination__container {}

.pagination__inner {}

.pagination__inner ul {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-family: var(--second-family);
}

.pagination__inner ul li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pagination__inner ul li:not(:last-child)::after {
	content: '|';

	font-weight: 400;
	font-size: 20px;
	line-height: 106%;
	letter-spacing: -0.02em;
	color: var(--txt-dark-blue);
}

.pagination__inner ul li a {
	font-weight: 400;
	font-size: 20px;
	line-height: 106%;
	letter-spacing: -0.02em;
	color: var(--txt-dark-grey);
}

.pagination__inner ul li span {
	font-weight: 400;
	font-size: 20px;
	line-height: 106%;
	letter-spacing: -0.02em;
	color: var(--txt-dark-blue);
}

/* -------------------------page-blog------------------------- */

.page-blog__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.page-blog__inner .btn-light-blue {
	margin: 24px 0px 0px 0px;
	width: 100%;
}

/* -------------------------catalog------------------------- */

.page__catalog {}

.catalog__container {}

.catalog__inner {}

.catalog__nav {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
	margin: 0px 0px 50px 0px;
}

.catalog__nav a {
	background: var(--txt-white);
	padding: 8px;

	display: flex;
	align-items: center;
	gap: 16px;
}

.catalog__nav a img {
	width: 70px;
	height: 70px;
	object-fit: cover;
}

.catalog__nav a span {
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	color: var(--txt-dark-blue);
}

.catalog__banner {
	position: relative;
	margin: 0px 0px 60px 0px;
}

.catalog__banner picture>img {
	width: 100%;
	min-height: 170px;
	object-fit: cover;
}

.catalog__banner>img {
	width: 100%;
	min-height: 240px;
	object-fit: cover;
}

.catalog__banner-box {
	position: absolute;
	bottom: 10px;
	left: 10px;
	z-index: 2;

	width: 100%;
	max-width: 292px;
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.13);
	padding: 13px 16px;

	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.catalog__banner-box>div:first-child {
	font-weight: 500;
	font-size: 17px;
	line-height: 106%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--txt-white);
	font-family: var(--second-family);

	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: space-between;
	padding: 3px 0;
}

.catalog__banner-box>div img {
	width: 97px;
	height: 97px;
	object-fit: cover;
}

.catalog__form {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0px 0px 24px 0px;
}

.catalog-search {
	border-radius: 4px;
	padding: 4px 4px 4px 24px;
	background: var(--txt-white);

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.catalog__form-body {
	border-radius: 4px;
	padding: 16px;
	background: var(--txt-white);

	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.catalog__form-body-box {
	grid-column: 2 span;
	background: var(--base-light-blue);

	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.catalog__form-body-box>label:first-child {
	padding: 15px 16px 15px 24px;
	position: relative;
}

.catalog__form-body-box>label:first-child::after {
	content: '';

	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 1px;
	height: 16px;

	background-color: var(--txt-grey);
}

.catalog__form-body .check {
	display: flex;
	align-items: center;
	gap: 10px;

	font-weight: 400;
	font-size: 17px;
	line-height: 106%;
	text-transform: uppercase;
	color: var(--txt-dark-blue);
}

.catalog__form-body .btn-dark-blue {
	padding: 18px;
	text-align: center;
	justify-content: center;
}

.catalog__form-body-box>label:last-child {
	padding: 15px 24px 15px 16px;
}

.catalog__form-body-box>label input {
	background-color: transparent;
	width: 100%;
}

.catalog__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
}

.catalog__bot {
	margin: 24px 0px 0px 0px;

	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

.catalog__bot .btn-light-blue {
	width: 100%;
}

.catalog__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
}

.catalog__pagination ul {
	display: flex;
	align-items: center;
}

.catalog__pagination ul li a {
	border-radius: 4px;
	width: 44px;
	height: 44px;
	min-width: 44px;

	display: flex;
	align-items: center;
	justify-content: center;

	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	color: var(--txt-dark-blue);
}

.catalog__pagination-btn {
	width: 44px;
	height: 44px;
	min-width: 44px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.catalog__pagination-btn .arrow-prev {
	fill: var(--txt-dark-blue);
	width: 10px;
	height: 16px;
	min-width: 10px;
}

.active {
	background: var(--base-light-blue);
}

.catalog__pagination-btn .arrow-next {
	fill: var(--txt-dark-blue);
	width: 10px;
	height: 16px;
	min-width: 10px;
}

/* -------------------------leasing------------------------- */

.leasing__inner .head {
	gap: 0;
}

.leasing__inner .head div:nth-child(2) div {
	gap: 40px;
}

.leasing__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
}

/* -------------------------leasing-partners------------------------- */

.page__leasing-partners {
	background: var(--txt-dark-blue);
	padding: 60px 0 80px 0;
}

.leasing-partners__container {}

.leasing-partners__inner {}

.leasing-partners__inner .head h2 {
	color: #fff;
}

.leasing-partners__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 16px;
	margin: 0px 0px 82px 0px;
}

.leasing-partners__card {}

.leasing-partners__card img {
	width: 100%;
}

.leasing-partners__desc {
	font-weight: 400;
	font-size: 15px;
	line-height: 127%;
	color: var(--txt-medium-blue);
	font-family: var(--font7);

	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* -------------------------contact-us------------------------- */

.page__contact-us {}

.contact-us__container {}

.contact-us__inner {}

.contact-us__inner .head h2 {
	color: var(--txt-white);
}

.form-label-row {
	grid-column: 1/-1;
}

.form-label-box {
	display: flex;
}

.form-label-box .form-label {
	position: relative;
}

.form-label-box .form-label:first-child .form-input {
	padding: 16px 16px 16px 24px;
}

.form-label-box .form-label:first-child::after {
	content: '';

	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 1px;
	height: 16px;

	background-color: var(--txt-grey);
}

.form-label-box .form-label:last-child .form-input {
	padding: 16px 24px 16px 16px;
}

/* -------------------------banner------------------------- */

.banner {
	margin: 0px 0px 80px 0px;
}

/* -------------------------preview-img------------------------- */

.page__preview-img {}

.preview-img__container {}

.preview-img__inner {}

.preview-img__inner img {
	width: 100%;
}

/* -------------------------best-technologies------------------------- */

.page__best-technologies {}

.best-technologies__container {}

.best-technologies__inner {}

.best-technologies__inner .head {
	gap: 24px;
	margin: 0px 0px 40px 0px;
}

.best-technologies__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.best-technologies__card {
	background: var(--txt-white);
	padding: 16px;

	display: flex;
	flex-direction: column;
	gap: 16px;
}

.best-technologies__card img {
	width: 100%;
	height: 276px;
	object-fit: cover;
}

.best-technologies__card dl {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.best-technologies__card dt {
	font-weight: 500;
	font-size: 20px;
	line-height: 115%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--txt-dark-blue);
	font-family: var(--second-family);
}

.best-technologies__card dd {
	font-weight: 400;
	line-height: 122%;
	color: var(--txt-dark-blue);
}

.best-technologies__card dd strong {
	font-weight: 600;
}

/* -------------------------about-series------------------------- */

.page__about-series {}

.about-series__container {}

.about-series__inner {}

.about-series__img {
	margin: 0px 0px 16px 0px;
}

.about-series__img img {
	width: 100%;
}

.about-series__inner .head h2 {
	max-width: unset;
}

/* -------------------------in-stock-catalog------------------------- */

.page__in-stock-catalog {}

.in-stock-catalog__container {}

.in-stock-catalog__inner {}

.in-stock-catalog__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
	margin: 0px 0px 24px 0px;
}

/* ------------------------services------------------------- */

.page__services {
	margin: 0px 0px 160px 0px;
}

.services__container {}

.services__inner {}

.services__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

/* -------------------------media------------------------- */

@media(max-width:1382px) {
	.header .header__item:not(:first-child) {
		display: none;
	}

	.header__main {
		width: 100%;
		padding: 25.5px 15.5px;
		gap: 15.5px;
	}

	.header__inner {
		gap: 15.5px;
	}

	.header__right {
		gap: 15.5px;
	}

	.container {
		padding: 0 44px;
	}
}

@media(max-width:960px) {
	.container {
		max-width: 904px;
	}
}

@media(max-width:1240px) {
	h1 {
		font-size: 48px;
	}

	.preview__inner>div:first-child {
		max-width: 504px;
		gap: 40px;
	}

	.preview__inner {
		min-height: unset;
		gap: 78px;
	}

	.preview-reviews {
		max-width: 296px;
	}

	.preview-reviews div span:first-child {
		font-size: 22px;
	}

	.preview-reviews>div:first-child {
		max-width: 94px;
	}

	.head div:nth-child(2) div {
		max-width: 296px;
	}






	.advantages__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.advantages-card-dark {
		grid-column: 1/-1;
	}

	.head div:first-child span:first-child {
		font-size: 18px;
	}

	.head {
		gap: 60px;
		margin: 0px 0px 40px 0px;
	}

	.head h2 {
		max-width: 504px;
	}

	h2,
	.title-h2 {
		font-size: 40px;
	}

	.title-h2 {
		margin: 0px 0px 40px 0px;
	}

	body {
		font-size: 16px;
	}

	.advantages__card>span:first-child {
		font-size: 22px;
	}







	.categories-equipment__inner .head {
		gap: 50px;
	}

	.categories-equipment__card {
		min-height: 240px;
		gap: 60px;
	}

	h3 {
		font-size: 22px;
	}

	.categories-equipment__card>div:nth-child(2) span {
		width: 48px;
		height: 48px;
		min-width: 48px;
	}

	.truck {
		width: 39px;
		height: 39px;
		min-width: 39px;
	}

	.categories-equipment__card>div:nth-child(2) {
		gap: 16px;
	}

	.categories-equipment__card>div:nth-child(3) {
		gap: 16px;
		line-height: 118%;
	}

	.request {
		flex-direction: column;
		gap: 40px;
		padding: 22px 25px 28px;
	}

	.request__form {
		max-width: unset;
		min-height: 516px;
	}

	.request__body {
		max-width: unset;
		flex-direction: row;
		padding: 0;
	}

	.request__body>div:nth-child(2) {
		max-width: 363px;
		gap: 30px;
	}

	.request__body>div:nth-child(2)>div:first-child span {
		display: none;
	}






	.stock__card {
		min-height: 260px;
	}





	.spares__card>div img {
		height: 217px;
	}

	.spares__card:nth-child(n+7) {
		display: none;
	}






	.page__our-addresses {
		padding: 60px 0;
	}

	.reviews__content {
		flex-direction: column;
	}

	.reviews__body>div:first-child {
		padding: 0px 197px 0px 0px;
	}

	.reviews__body {
		max-width: unset;
	}

	.reviews__inner .service-btns {
		position: unset;
	}

	.reviews__body {
		position: relative;
	}

	.reviews__rating {
		position: absolute;
		top: 0;
		right: 0;

		flex-direction: column;
		align-items: start;
		max-width: 181px;
		gap: 20px;
	}

	.reviews__rating>span {
		line-height: 100%;
	}

	.reviews__inner {
		padding: 22px 25px 28px;
	}

	.reviews__inner>span {
		margin: 0px 0px 60px 0px;
	}

	@media(min-width:741px) {
		.reviews__inner h2 {
			font-size: 44px;
		}
	}

	.reviews__body-row {
		display: flex;
		align-items: end;
		justify-content: space-between;
	}

	.reviews__slider {
		margin: 0;
		max-width: unset;
	}

	.reviews__slide>div:first-child>div:nth-child(2) span:first-child {
		font-size: 18px;
	}

	.reviews__slide>div:first-child>div:nth-child(2) span {
		font-size: 16px;
	}

	.reviews__slide {
		gap: 50px;
		min-height: 500px;
	}

	.reviews__slide p {
		line-height: 120%;
	}

	.reviews__slide-icon {
		bottom: 29px;
	}





	.neman-buses__inner .head {
		gap: 70px;
	}

	.neman-buses__inner .head div:nth-child(2) {
		gap: 59px;
	}

	.neman-buses__inner .head h2 {
		max-width: 608px;
		line-height: 120%;
	}






	.documentation__inner .head div:nth-child(2) {
		flex-direction: column;
		gap: 16px;
	}

	.documentation__inner .head h2 {
		padding: 0;
		max-width: unset;
	}

	.documentation__inner .head div:nth-child(2) div {
		flex-direction: row;
		max-width: unset;
		padding: 0px 0px 84px 0px;
	}

	.documentation__inner .head div:nth-child(2) div a {
		min-width: 324px;
	}

	.documentation__slide {
		max-width: 296px;
	}

	.documentation__slider {
		overflow: unset;
	}

	.documentation__slide span {
		font-size: 15px;
	}

	.documentation__inner .head {
		margin: 0px 0px 16px 0px;
	}






	.faq__video {
		max-width: 296px;
	}

	.faq__video img {
		height: 536px;
		object-fit: cover;
	}

	.faq__accordion-head span {
		font-size: 18px;
	}

	.faq__accordion-head {
		padding: 8px 10px 8px 12px;
	}






	.request__inner .head div:nth-child(2) div {
		max-width: 286px;
		min-width: unset;
	}

	.request__inner .head div:nth-child(2) {
		gap: 40px;
	}

	.request__inner .request__form>div:first-child {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.request__inner .form-label,
	.request__inner .check {
		max-width: unset;
	}





	.footer-column-3 {
		max-width: 163px;
	}

	.footer-column-1 {
		max-width: 171px;
	}

	.footer__columns {
		gap: 20px;
	}

	.footer__box-desc-pos {
		left: 309px;
	}





	.pagination__inner ul li a,
	.pagination__inner ul li span {
		font-size: 18px;
	}

	.pagination__inner ul li,
	.pagination__inner ul {
		gap: 8px;
	}





	.catalog__nav {
		margin: 0px 0px 40px 0px;
	}

	.catalog__banner-box>div:first-child {
		font-size: 15px;
		padding: 0;
	}

	.catalog__banner-box {
		max-width: 260px;
		padding: 10px;
	}

	.catalog__banner-box>div img {
		width: 80px;
		height: 80px;
	}

	.catalog__form-body {
		grid-template-columns: repeat(3, 1fr);
	}

	.catalog__form-body .btn-dark-blue {
		grid-column: 1/-1;
	}

	.catalog__cards .swiper-equipment-card img {
		height: 300px;
	}

	.catalog__cards .equipment-card>div:nth-child(2)>div:first-child>span {
		font-size: 20px;
	}





	.categories-equipment-3 {
		padding: 60px 0 0 0;
	}





	.leasing__inner .head div:nth-child(2) {
		flex-direction: column;
		gap: 40px;
	}

	.leasing__inner .head div:nth-child(2) div {
		max-width: unset;
		gap: 24px;
	}

	.leasing__inner .head h2 {
		max-width: unset;
	}

	.leasing__inner .btn-main {
		width: 100%;
	}

	.leasing__inner .advantages-card-dark {
		grid-column: unset;
	}

	.leasing__inner .advantages__card {
		min-height: 191px;
	}

	.leasing__inner .head div:nth-child(2) div p {
		max-width: unset;
	}






	.leasing-partners__inner .head h2 {
		max-width: unset;
	}

	.leasing-partners__cards {
		margin: 0px 0px 60px 0px;

		grid-template-columns: repeat(3, 1fr);
	}





	.contact-us__inner .request__body .head {
		gap: 16px;
	}

	.contact-us__inner .request__form {
		gap: 60px;
	}





	.reviews-2 {
		padding: 60px 0 0 0;
	}





	.advantages-brand__body {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.advantages-brand .head {
		margin: 0px 0px 60px 0px;
	}

	.advantages-brand__body>div:first-child {
		gap: 40px;
		max-width: unset;
	}

	.advantages-brand__body>div:first-child div:nth-child(2) {
		gap: 24px;
	}

	.advantages-brand__body>div:first-child div:nth-child(2) a {
		width: 100%;
	}

	.advantages-brand__body .btn-dark-blue span:first-child {
		width: 100%;
	}

	.advantages-brand__body .advantages__cards {
		gap: 8px;
	}

	.advantages-card-img img {
		height: 240px;
	}

	.advantages-brand .advantages__card {
		min-height: 240px;
	}

	.our-addresses-padd {
		padding: 60px 0 0 0;
	}

	.best-technologies__inner .head h2 {
		max-width: unset;
	}

	.best-technologies__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.best-technologies__card:first-child {
		grid-column: 1/-1;
	}

	.best-technologies__card:first-child img {
		height: 588px;
	}








	.leasing__cards .advantages-card-dark {
		grid-column: unset;
	}

	.faq-2 .faq__body {
		align-items: stretch;
	}

	.faq-2 .faq__video img {
		height: 100%;
	}





	.our-addresses-padd-2 {
		padding: 0px 0px 80px 0px;
	}






	.in-stock-catalog__cards .swiper-equipment-card img {
		height: 300px;
	}

	.in-stock-catalog__cards .swiper-equipment-card {
		height: 300px;
		min-height: 300px;
	}

	.in-stock-catalog__cards .equipment-card>div:nth-child(2)>div:first-child>span {
		font-size: 20px;
	}

	.in-stock-catalog__cards .equipment-card:nth-child(n+5) {
		display: none;
	}






	.services__cards .stock__card {
		min-height: 300px;
	}

	.page__services {
		margin: 0px 0px 80px 0px;
	}

}

@media(max-width:960px) {
	.swiper-equipment-catalog .swiper-slide {
		max-width: 300px;
	}

	.catalog__cards .swiper-equipment-card {
		min-height: 300px;
	}

	.swiper-equipment-card img {
		height: 225px;
	}

	.swiper-equipment-card {
		min-height: 225px;
	}

	.equipment-card>div:nth-child(2)>div:first-child>span {
		font-size: 18px;
	}

	.equipment-card .btn-main {
		padding: 4px 4px 4px 22px;
		gap: 22px;
	}





	.swiper-blog .swiper-slide {
		max-width: 360px;
	}

	.blog__card>div:first-child img {
		height: 246px;
	}
}

@media(max-width:840px) {
	.header .header__list {
		display: none;
	}

	.header__main {
		justify-content: center;
		gap: 29px;
		padding: 17.5px 29px;
	}

	.header__inner {
		gap: 29px;
	}

	.header__right {
		gap: 29px;
	}

	.container {
		padding: 0 19px;
	}

	.header {
		margin: 0px 0px 40px 0px;
	}





	.page__preview {
		padding: 129px 0px 50px 0px;
		margin: 0px 0px 37px 0px;
	}

	.preview__inner>div:first-child {
		max-width: 448px;
	}

	.preview__inner div:nth-child(2) {
		gap: 16px;
	}

	.preview-reviews {
		max-width: 216px;
		flex-direction: column;
		gap: 80px;
	}

	.preview-reviews>div:first-child {
		flex-direction: row;
		gap: 10px;
		justify-content: space-between;
		width: 100%;
		max-width: unset;
	}

	.preview__inner {
		gap: 0px;
	}

	.preview__inner>div:nth-child(2) {
		margin: -12px 0px 0px 0px;
	}

	.preview-reviews div:nth-child(2) {
		max-width: unset;
	}

	.preview-reviews img {
		height: 150px;
		width: 100%;
		max-width: unset;
	}







	.head div:nth-child(2) {
		flex-direction: column;
		gap: 30px;
	}

	.head h2 {
		max-width: unset;
	}

	.head div:nth-child(2) div {
		max-width: unset;
		min-width: unset;
		flex-direction: row;
	}

	.head .btn-dark-blue {
		white-space: nowrap;
	}

	.head div:nth-child(2) div p {
		max-width: 363px;
	}

	.advantages__card {
		min-height: 186px;
	}





	.categories-equipment__inner .head div:nth-child(2) {
		gap: 16px;
	}

	.categories-equipment__inner .head div:nth-child(2) p {
		max-width: unset;
	}

	.categories-equipment__card:nth-child(3),
	.categories-equipment__card:nth-child(4) {
		grid-column: 1/-1;
	}

	.request__body {
		flex-direction: column;
		gap: 40px;
	}

	.categories-equipment__inner .head {
		gap: 24px;
	}

	.request__body>div:nth-child(2) {
		max-width: unset;
	}

	.request__form {
		min-height: 496px;
	}





	.service__inner .head h2,
	.our-addresses__inner h2 {
		padding: 0;
	}

	.service__inner .head div:nth-child(2) div,
	.our-addresses__inner .head div:nth-child(2) div {
		flex-direction: column;
		padding: 0px 116px 0px 0px;
	}

	.service__inner .head div:nth-child(2) div p,
	.our-addresses__inner .head div:nth-child(2) div p {
		max-width: unset;
	}

	.service__inner .service-btns,
	.our-addresses__inner .service-btns {
		left: auto;
		right: 0;
	}

	.service__inner .head div:nth-child(2),
	.our-addresses__inner .head div:nth-child(2) {
		gap: 16px;
	}

	.swiper-service .swiper-slide {
		max-width: 550px;
	}







	.stock__card {
		min-height: 240px;
	}






	.spares__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.spares__inner .head {
		gap: 50px;
	}

	.spares__inner .head div:nth-child(2) {
		gap: 16px;
	}

	.spares__card>div img {
		height: 284px;
	}

	.spares__card:nth-child(n+5) {
		display: none;
	}




	.reviews__slide {
		max-width: 360px;
	}

	.reviews__slider {
		overflow: unset;
	}

	.reviews__inner {
		overflow: hidden;
	}





	.page__neman-buses {
		padding: 60px 0 70px 0;
	}

	.neman-buses__inner .head {
		gap: 60px;
	}

	.neman-buses__inner .head div:nth-child(2) {
		gap: 79px;
	}

	.neman-buses__inner .head div:nth-child(2) div p,
	.neman-buses__inner .head div:nth-child(2) div {
		max-width: unset;
	}






	.blog__inner .head div:nth-child(2) div {
		display: none;
	}

	.blog__inner .head h2 {
		max-width: 504px;
	}

	.swiper-blog .swiper-slide {
		max-width: 320px;
	}

	.blog__card>div:first-child img {
		height: 216px;
	}

	.blog__tabs {
		display: flex;
		overflow: auto;
	}

	.blog__tabs::-webkit-scrollbar {
		display: none;
	}

	.blog__tab {
		white-space: nowrap;
	}






	.request__inner .head div:nth-child(2) div,
	.request__inner .head div:nth-child(2) div p {
		max-width: unset;
	}





	.footer__box-desc-pos {
		position: unset;
	}

	.footer__columns {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 5px 20px;
	}

	.footer-column-3 {
		grid-column: 2/3;
		grid-row: 1/2;
		margin: 0px 0px 0px auto;
	}

	.footer .social-item-link {
		width: 40px;
		height: 40px;
		min-width: 40px;
	}

	.footer__bot>* {
		flex: 1 1 46%;
	}

	.footer__bot-text {
		order: 3;
	}

	.footer__bot-link-img {
		order: 4;

		display: flex;
		justify-content: end;
	}

	.footer__bot-link:nth-child(3) {
		text-align: right;
	}

	.footer__bot {
		gap: 12px;
	}







	.page-blog__cards {
		grid-template-columns: repeat(2, 1fr);
	}





	.catalog__banner-box>div:last-child {
		display: none;
	}

	.catalog__banner-box {
		max-width: 146px;
		padding: 8.5px 10px;
	}

	.catalog__banner-box>div:first-child {
		gap: 21px;
	}

	.catalog__banner {
		margin: 0px 0px 50px 0px;
	}

	.catalog__form-body {
		grid-template-columns: repeat(2, 1fr);
	}

	.catalog__form-body-box {
		grid-column: unset;
	}

	.catalog__cards .swiper-equipment-card img {
		height: 250px;
	}

	.catalog__cards .swiper-equipment-card {
		min-height: 250px;
	}






	.contact-us__inner .request__body .head {
		gap: 24px;
	}







	.page__leasing .head .btn-dark-blue {
		white-space: unset;
	}







	.advantages-brand__body {
		grid-template-columns: repeat(1, 1fr);
		gap: 40px;
	}

	.advantages-brand__body .advantages__cards {
		max-width: unset;
	}

	.advantages-brand__body>div:first-child div:nth-child(2) p {
		max-width: unset;
	}

	.advantages-brand .advantages__card {
		min-height: 220px;
	}

	.advantages-card-img img {
		height: 220px;
	}

	.categories-equipment__inner .head div:nth-child(2) {
		flex-direction: column;
	}

	.best-technologies__card:first-child img {
		height: 486px;
	}

	.best-technologies__card img {
		height: 225px;
	}





	.categories-equipment-2 .categories-equipment__cards {
		grid-template-columns: repeat(1, 1fr);
	}

	.categories-equipment-2 .categories-equipment-card-img img {
		min-height: 240px;
		object-fit: cover;
	}

	.categories-equipment-2 {
		padding: 60px 0px;
	}

	.in-stock-catalog__cards .swiper-equipment-card img,
	.in-stock-catalog__cards .swiper-equipment-card {
		height: 250px;
		min-height: 250px;
	}





}

@media(max-width:768px) {
	.container {
		max-width: 718px;
	}
}

@media(max-width:740px) {
	.header__menu {
		display: none;
	}

	.header .header__link {
		display: none;
	}

	.header .social-item:last-child {
		display: none;
	}

	.header__menu-btn-mob-box {
		display: flex;
	}







	.page__preview {
		padding: 107px 0 40px 0;
		margin: 0px 0px 30px 0px;
	}

	.preview__inner>div:nth-child(2) {
		flex-direction: column;
		margin: 0;
		align-items: stretch;
		gap: 105px;
	}

	.preview__inner>div:first-child {
		gap: 24px;
		max-width: unset;
	}

	.preview__inner>div:first-child p {
		display: block;
		font-weight: 400;
		line-height: 120%;
		color: var(--txt-white);
	}

	.preview__inner div:nth-child(2) p {
		display: none;
	}

	.preview__inner {
		gap: 105px;
	}

	.preview-reviews {
		max-width: unset;
		flex-direction: row;
	}

	.preview-reviews img {
		width: 150px;
		height: 108px;
	}

	.preview-reviews>div:first-child {
		flex-direction: column;
	}

	h1 {
		font-size: 44px;
	}

	.page__preview .btn-main {
		width: 100%;
	}

	.preview-reviews {
		gap: 10px;
	}






	.head div:nth-child(2) div {
		flex-direction: column;
	}

	.head .btn-dark-blue {
		width: 100%;
	}

	.head .btn-dark-blue span:first-child {
		width: 100%;
	}

	.head div:nth-child(2) div p {
		max-width: unset;
	}

	.advantages__card-video {
		display: none;
	}

	.advantages__card-video-mob {
		display: block;
		padding: 0 19px;
		margin: 0px 0px 16px 0px;
	}

	.advantages__card-video img {
		max-height: 668px;
	}

	.advantages__cards {
		display: flex;
		overflow: auto;
		padding: 0 19px;
		gap: 8px;
	}

	.advantages__card {
		min-height: 180px;
		min-width: 260px;
	}

	.advantages__container {
		padding: 0 !important;
	}

	.advantages__inner .head {
		padding: 0 19px;
	}

	.advantages__cards::-webkit-scrollbar {
		display: none;
	}

	h2,
	.title-h2 {
		font-size: 30px;
	}

	.title-h2 {
		margin: 0px 0px 30px 0px;
	}

	.head {
		gap: 50px;
	}

	.advantages__card>span:first-child {
		font-size: 20px;
	}






	.page__categories-equipment {
		padding: 50px 0;
	}

	.categories-equipment-3 {
		padding: 50px 0 0 0;
	}

	.categories-equipment-2 {
		padding: 0px 0px 50px 0px;
	}

	.categories-equipment__cards {
		grid-template-columns: repeat(1, 1fr);
	}

	.categories-equipment__inner .head {
		gap: 50px;
	}

	.request__body>div:nth-child(2)>div:first-child {
		display: none;
	}

	.categories-equipment__inner .head,
	.request__body {
		gap: 24px;
	}

	.request {
		padding: 22px 20px 28px;
	}

	.request__form {
		min-height: unset;
		gap: 60px;
	}

	.request__form>div:nth-child(2) {
		grid-template-columns: repeat(1, 1fr);
	}

	.request__form>div:first-child>div img {
		width: 64px;
		height: 64px;
		object-fit: cover;
	}

	.request__form>div:first-child>div {
		gap: 16px;
	}

	.request__form>div:first-child>div span:first-child {
		font-size: 16px;
	}

	.request__form>div:first-child>div span:nth-child(2) {
		font-size: 15px;
	}

	.request__form>div:first-child p {
		font-size: 18px;
	}





	.service__inner .head div:nth-child(2) div {
		padding: 0;
	}

	.service__inner .service-btns {
		display: none;
	}

	.service__inner .head {
		margin: 0px 0px 32px 0px;
		position: unset;
	}

	.service__inner {
		padding: 0px 0px 176px 0px;
		position: relative;
	}

	.service__inner .head div:nth-child(2) div {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}

	.swiper-service .swiper-slide {
		max-width: 360px;
	}





	.stock__cards {
		grid-template-columns: repeat(1, 1fr);
	}






	.spares__card>div img {
		height: 141px;
	}

	.spares__card {
		padding: 14px;
	}

	.spares__card>div:first-child span {
		font-size: 13px;
	}

	.spares__card>div:first-child p {
		font-size: 15px;
		min-height: 54px;
	}

	.spares__card-curr {
		flex-direction: column;
	}

	.spares__card-curr-box {
		max-width: unset;
		min-width: unset;
		width: 100%;
	}





	.our-addresses__inner .service-btns {
		display: none;
	}

	.our-addresses__inner .head div:nth-child(2) div {
		padding: 0;
	}

	.our-addresses__inner .btn-main {
		width: 100%;
	}

	.btn-main span {
		width: 100%;
	}

	.reviews__content {
		padding: 0px 0px 68px 0px;
		position: relative;
	}

	.reviews__body {
		position: unset;
	}

	.reviews__content .btn-dark-blue {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}

	.btn-dark-blue span:first-child {
		width: 100%;
	}

	.reviews__body>div:first-child {
		padding: 0;
	}

	.reviews__rating {
		position: unset;
	}

	.reviews__body>div:nth-child(2) {
		flex-direction: row-reverse;
		align-items: end;
		justify-content: space-between;
		gap: 16px;
	}

	.reviews__inner {
		padding: 22px 20px 28px;
	}

	.reviews__body h2 div img {
		max-width: 41px;
	}

	.reviews__inner>span {
		margin: 0px 0px 24px 0px;
	}

	.reviews__rating {
		max-width: 226px;
		flex-direction: row;
		gap: 20px;
	}

	.reviews__rating>span {
		font-size: 60px;
	}

	.reviews__rating>div {
		font-size: 13px;
	}

	.reviews__slide {
		max-width: 320px;
	}






	.page__neman-buses {
		padding: 50px 0 60px 0;
	}

	.neman-buses__inner .head div:nth-child(2) {
		gap: 42px;
	}






	.documentation__inner .head div:nth-child(2) div a {
		display: none;
	}

	.documentation__inner .head div:nth-child(2) div {
		padding: 0;
	}

	.documentation__inner .head div:nth-child(2) div p {
		padding: 0px 117px 0px 0px;
	}

	.documentation__inner .service-btns {
		left: auto;
		right: 0;
	}

	.documentation__inner .head {
		margin: 0px 0px 40px 0px;
	}





	.blog__tab {
		font-size: 15px;
		padding: 16px 12px;
	}

	.blog__inner .head {
		margin: 0px 0px 30px 0px;
	}

	.blog__tabs {
		margin: 0px 0px 30px 0px;
	}

	.swiper-blog .swiper-slide {
		max-width: 280px;
	}

	.blog__card>div:first-child img {
		height: 189px;
	}

	.blog__card>div:first-child {
		font-size: 15px;
	}

	.blog__card {
		gap: 10px;
		padding: 14px;
	}






	.faq__body {
		flex-direction: column;
	}

	.faq__video img {
		width: 100%;
		height: 670px;
	}

	.faq__video {
		max-width: unset;
	}






	.request__inner .head div:nth-child(2) div {
		display: none;
	}

	.request__inner .request__form>div:first-child {
		grid-template-columns: repeat(1, 1fr);
		gap: 8px;
	}





	.map {
		min-height: 550px;
	}





	.footer__logo-img {
		max-width: 131px;
	}

	.footer__main {
		flex-direction: column;
		gap: 30px;
		position: relative;
	}

	.footer__box .header__tel-link {
		font-size: 20px;
	}

	.footer__column .social {
		position: absolute;
		top: 0;
		right: 0;
	}

	.footer__box {
		max-width: unset;
	}

	.footer-column-3 {
		grid-column: unset;
		grid-row: unset;
		max-width: unset;
	}

	.footer__columns {
		gap: 30px;
	}

	.footer-column-2 {
		max-width: 94px;
		margin: 0px 0px 0px auto;
	}




	.page-blog__cards {
		gap: 8px;
	}

	.blog__card>div:nth-child(2)>div {
		font-size: 14px;
	}





	.pagination {
		margin: 0px 0px 20px 0px;
	}

	.catalog__nav {
		grid-template-columns: repeat(1, 1fr);
		gap: 8px;
		margin: 0px 0px 30px 0px;
	}

	.catalog__nav a img {
		width: 50px;
		height: 50px;
	}

	.catalog__nav a span {
		font-size: 16px;
	}

	.catalog__banner {
		margin: 0px 0px 80px 0px;
	}

	.catalog__form-body {
		grid-template-columns: repeat(1, 1fr);
	}

	.catalog__pagination {
		gap: 0px;
		justify-content: space-between;
		width: 100%;
	}

	.catalog__pagination ul li:nth-child(4) {
		display: none;
	}





	.leasing__inner .head div:nth-child(2) {
		gap: 30px;
	}

	.leasing__inner .head {
		margin: 0px 0px 30px 0px;
	}

	.leasing__inner .advantages__card {
		min-height: 180px;
	}

	.leasing__cards {
		gap: 8px;
	}







	.page__leasing-partners {
		padding: 50px 0;
	}

	.page__leasing-partners .head {
		margin: 0px 0px 32px 0px;
	}

	.leasing-partners__cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.leasing-partners__desc {
		font-size: 14px;
	}






	.reviews-2 {
		padding: 50px 0px 0px 0px;
	}





	.advantages-brand .advantages-brand__body>div:first-child {
		padding: 0 19px;
		gap: 30px;
	}

	.advantages-brand__body {
		gap: 30px;
	}

	.advantages-brand .advantages__card {
		min-height: 240px;
	}

	.advantages-card-img img {
		height: 240px;
	}

	.best-technologies__cards {
		grid-template-columns: repeat(1, 1fr);
	}

	.best-technologies__card:first-child img,
	.best-technologies__card img {
		height: 258px;
	}






	.our-addresses-padd-2 {
		padding: 0px 0px 50px 0px;
	}

	.our-addresses-padd-3 {
		padding: 60px 0px;
	}

	.in-stock-catalog__cards .swiper-equipment-card img,
	.in-stock-catalog__cards .swiper-equipment-card {
		height: 282px;
		min-height: 282px;
	}







	.services__cards {
		grid-template-columns: repeat(1, 1fr);
	}

	.services__cards .stock__card {
		min-height: 250px;
	}
}

@media(max-width:600px) {
	.header__main {
		padding: 11.5px 10.5px;
	}

	.header__inner {
		gap: 10.5px;
	}

	.header__right {
		gap: 10.5px;
	}

	.header__tel-desc {
		font-size: 12px;
	}

	.header__tel-link {
		font-size: 16px;
	}







	.catalog__cards {
		display: flex;
		flex-direction: column;
	}

	.catalog__cards .swiper-equipment-card img {
		height: 280px;
	}

	.catalog__cards .swiper-equipment-card {
		min-height: 280px;
	}
}

@media(max-width:414px) {
	.catalog__banner-box>div:last-child {
		display: block;
	}

	.catalog__banner-box {
		width: calc(100% - 20px);
		max-width: unset;
		padding: 10px;
	}
}

@media(max-width:413px) {
	.header .header__main {
		display: none;
	}

	.header__right {
		padding: 11.5px 0;
	}

	.header__logo {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0px 13px 0px 0px;
		border-right: 1px solid rgba(255, 255, 255, 0.05);
	}

	.header__inner {
		align-items: stretch;
	}

	.header__right {
		gap: 13px;
	}

	.header__menu-btn-mob-box .social-item-link {
		display: flex;
	}

	section {
		margin: 0px 0px 70px 0px;
	}

	h2,
	.title-h2 {
		font-size: 28px;
	}





	body {
		font-size: 16px;
	}

	h1 {
		font-size: 38px;
	}

	.btn-main {
		padding: 4px 4px 4px 22px;
		gap: 22px;
	}





	.request__form {
		padding: 14px;
	}

	.request__form>div:first-child>div span:nth-child(2) {
		font-size: 13px;
	}

	.request {
		padding: 20px 16px 22px 16px;
	}

	.request__form>div:first-child>div {
		gap: 12px;
	}

	.request__form>div:first-child>div img {
		width: 60px;
		height: 60px;
	}

	.request__form>div:first-child p {
		font-size: 16px;
	}





	.swiper-service .swiper-slide {
		max-width: 322px;
	}

	.service__inner {
		padding: 0px 0px 195px 0px;
	}





	.spares__card>div img {
		height: 115px;
	}

	.btn-light-blue {
		padding: 18px;
	}

	.spares__card-add {
		padding: 10px;
	}





	.reviews__inner .service-btns {
		display: none;
	}

	.reviews__inner {
		padding: 20px 16px 22px;
	}

	.reviews__slide {
		max-width: 270px;
	}





	.documentation__inner .head div:nth-child(2) div p {
		padding: 0;
	}

	.documentation__inner .head div:nth-child(2) {
		padding: 0px 0px 84px 0px;
	}

	.documentation__inner .head {
		margin: 0px 0px 16px 0px;
	}

	.documentation__inner .service-btns {
		right: auto;
		left: 0;
	}





	.faq__video img {
		height: 570px;
	}




	.request__inner {
		padding: 20px 16px;
	}





	.map {
		min-height: 500px;
	}





	.footer__box .header__tel-link {
		font-size: 16px;
	}





	.page-blog__cards {
		grid-template-columns: repeat(1, 1fr);
	}






	.header {
		margin: 0px 0px 30px 0px;
	}

	.pagination {
		margin: 0px 0px 16px 0px;
	}

	.catalog__banner {
		margin: 0px 0px 40px 0px;
	}

	.catalog__cards .swiper-equipment-card img {
		height: 240px;
	}

	.catalog__cards .swiper-equipment-card {
		min-height: 240px;
	}






	.best-technologies__card:first-child img,
	.best-technologies__card img {
		height: 216px;
	}

	.advantages-brand .advantages__card {
		min-height: 260px;
	}

	.advantages-card-img img {
		height: 260px;
	}





	.in-stock-catalog__cards .swiper-equipment-card img,
	.in-stock-catalog__cards .swiper-equipment-card {
		height: 240px;
		min-height: 240px;
	}
}