:root {
	--max-container: 1740px;
	--font: 'Montserrat', sans-serif;
	--primary: #282F2F;
	--secondary: #EF2222;
	--gray: #798383;
	--green: #3DBF00;
	--bg-box: #F8F7F7;
	--bg-box-gray: #EFEFEF;
	--bg-box-dark: #2E3138;
	--font-dark: #282F2F;
	--font-gray: #8E8E89;
	--border: #CED7D9;
	--bg-dark: #222222;
	--bg-card: #fff
}

html {
	width: 100%;
	height: 100%;
	box-sizing: border-box
}

*,
:after,
:before {
	box-sizing: inherit
}

body {
	width: 100%;
	min-width: 320px;
	margin: 0;
	padding: 0;
	font-family: var(--font);
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: normal;
	color: var(--primary);
	background: #fff;
	transition: background .4s
}

body.noscroll {
	overflow: hidden
}

.wrap {
	width: 100%;
	overflow-x: hidden
}

.container {
	max-width: var(--max-container);
	margin: 0 auto;
	padding: 0 10px
}

img {
	max-width: 100%;
	height: auto
}

a,
a:focus,
button,
button:focus,
input,
input:focus {
	outline: 0;
	text-decoration: none
}

.fancybox__container {
	z-index: 9000
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray)
}

.form-group input {
	width: 100%;
	height: 64px;
	padding: 0 20px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: #fff;
	font-family: var(--font);
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	color: var(--primary)
}

.form-group input:placeholder-shown {
	background: #fff
}

.form-group input::placeholder {
	background: #fff;
	color: var(--font-dark)
}

.form-group input:focus {
	border-color: var(--font-dark);
	background: #fff
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill:hover {
	-webkit-text-fill-color: var(--font-dark);
	-webkit-transition: background-color 5000s ease-in-out;
	transition: background-color 5000s ease-in-out
}

.form-group textarea {
	width: 100%;
	min-height: 180px;
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: 0 0;
	font-family: var(--font);
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	color: var(--primary);
	resize: vertical;
	outline: 0
}

.form-group textarea:focus {
	border-color: var(--primary)
}

.form-group__double {
	position: relative;
	display: flex;
	width: 100%;
	height: 64px;
	border: 1px solid var(--border);
	border-radius: 10px
}

.form-group__double .select2 {
	width: 50%;
	padding-left: 30px
}

.form-group__double .select2-container--default .select2-selection--single {
	border: none
}

.form-group__double .select2.select2-container:first-of-type {
	border-right: 1px solid var(--border)
}

.form-group__double input {
	width: 50%;
	height: 100%;
	padding-left: 50px;
	padding-right: 10px;
	border: none;
	background: 0 0;
	border-radius: 9px 0 0 9px
}

.form-group__double input:focus {
	background: 0 0
}

.form-group__double input:nth-child(2) {
	border-left: 1px solid var(--border);
	border-radius: 0 9px 9px 0
}

.form-group__double:has(input:focus) {
	border-color: var(--primary)
}

.form-group__double::before {
	content: ' от';
	position: absolute;
	z-index: 1;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 400;
	font-size: 16px;
	color: var(--gray)
}

.form-group__double::after {
	content: ' до';
	position: absolute;
	z-index: 1;
	left: calc(50% + 20px);
	top: 50%;
	transform: translateY(-50%);
	font-weight: 400;
	font-size: 16px;
	color: var(--gray)
}

.form-group__section {
	position: relative;
	width: 50%;
	height: 100%;
	border: none;
	border-radius: 9px 0 0 9px
}

.form-group__section input {
	width: 100%;
	border-radius: 9px 0 0 9px
}

.form-group__section:nth-child(2) {
	border-left: 1px solid var(--border);
	border-radius: 0 9px 9px 0
}

.form-group__section:nth-child(2) input {
	border: none;
	border-radius: 0 9px 9px 0
}

.form-group__dropdown {
	display: none;
	position: absolute;
	z-index: 100;
	left: 0;
	right: 0;
	top: calc(100% + 1px);
	margin-top: 5px;
	padding: 10px;
	border: 1px solid var(--border);
	border-radius: 10px;
	width: 100%;
	background: var(--bg-card)
}

.form-group__dropdown span {
	display: block;
	padding: 5px 10px;
	margin-right: 10px;
	font-family: var(--font);
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.1;
	color: var(--primary);
	white-space: nowrap;
	border-radius: 10px;
	cursor: pointer;
	transition: .3s linear
}

.form-group__dropdown span:hover {
	background: var(--secondary);
	color: #fff
}

.form-range {
	padding-bottom: 25px;
	padding-left: 20px;
	padding-right: 20px
}

.form-range .irs--flat .irs-line {
	top: 29px;
	height: 3px;
	background: #eeebde
}

.form-range .irs--flat .irs-bar {
	top: 29px;
	height: 3px;
	background-color: var(--secondary)
}

.form-range .irs--flat .irs-handle {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: var(--secondary)
}

.form-range .irs--flat .irs-handle>i {
	display: none !important
}

.form-range .irs--flat .irs-from,
.form-range .irs--flat .irs-single,
.form-range .irs--flat .irs-to {
	top: 40px;
	padding: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray);
	background-color: transparent
}

.form-range .irs--flat .irs-from:before,
.form-range .irs--flat .irs-max,
.form-range .irs--flat .irs-min,
.form-range .irs--flat .irs-single:before,
.form-range .irs--flat .irs-to:before {
	display: none
}

.form-range--lg {
	padding-bottom: 10px
}

.form-range--lg .irs--flat .irs-from,
.form-range--lg .irs--flat .irs-single,
.form-range--lg .irs--flat .irs-to {
	display: none
}

.form-range--lg .irs-grid-text {
	font-size: 12px
}

.form-checkbox {
	display: flex;
	flex-wrap: wrap
}

.form-checkbox label {
	display: block;
	position: relative;
	padding-left: 32px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--primary);
	cursor: pointer
}

.form-checkbox label a {
	color: #ef2222;
	text-decoration: underline
}

.form-checkbox label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	border: 2px solid var(--border);
	background-color: transparent
}

.form-checkbox input {
	display: none
}

.form-checkbox input:checked+label::before {
	background-color: var(--secondary);
	background-image: url(../img/icons/checkmark-outline.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px;
	border-color: var(--secondary)
}

.form-code {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	padding-top: 18px
}

.form-code label {
	display: block;
	width: 316px;
	margin: 0 auto 8px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(78, 78, 78, .7);
	text-align: left
}

.form-code__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 316px;
	margin: 0 auto 30px
}

.form-code__grid input {
	width: 100%;
	height: 64px;
	padding: 0 20px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: 0 0;
	font-family: var(--font);
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	color: var(--primary);
	text-align: center
}

.form-code__grid input:focus {
	border-color: var(--font-dark)
}

.form-code span {
	align-self: center;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	color: var(--font-dark)
}

.form-file {
	width: 290px
}

.form-file input[type=file] {
	display: none
}

.form-file label {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
	width: 100%;
	height: 78px;
	border: 1px solid var(--secondary);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	transition: .3s linear
}

.form-file label span {
	font-weight: 400;
	font-size: 18px;
	color: var(--secondary);
	transition: .3s linear
}

.form-file label i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--secondary);
	transition: .3s linear
}

.form-file label i svg {
	width: 20px;
	height: 20px;
	stroke: #fff;
	transition: .3s linear
}

.form-file label:hover {
	background: var(--secondary)
}

.form-file label:hover span {
	color: #fff
}

.form-file label:hover i {
	background: #fff
}

.form-file label:hover i svg {
	stroke: var(--secondary)
}

.form-file .filename {
	margin: 20px 0 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.3;
	font-style: italic;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.form-price .form-group__double {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0
}

.form-price .form-range {
	margin-top: -2px;
	padding: 0
}

.form-price .form-range .irs--flat {
	height: 3px !important;
	margin-left: -7px;
	margin-right: -7px
}

.form-price .form-range .irs--flat .irs-bar {
	top: 0
}

.form-price .form-range .irs--flat .irs-line {
	top: 1px;
	height: 1px;
	background: 0 0
}

.form-price .form-range .irs--flat .irs-handle {
	top: -7px
}

.form-price .form-range .irs-from,
.form-price .form-range .irs-grid,
.form-price .form-range .irs-single,
.form-price .form-range .irs-to {
	display: none !important
}

.header {
	position: relative;
	z-index: 1000;
	min-height: 158px
}

.header--hfull .navbar {
	background-color: transparent
}

.header--hfull .city__icon svg {
	fill: #fff
}

.header--hfull .city__select span {
	color: #fff
}

.header--hfull .city__select svg {
	fill: #fff
}

.header--hfull .city__select:hover span {
	color: var(--primary)
}

.header--hfull .city__select:hover svg {
	fill: var(--primary)
}

.header--hfull .top-menu__link {
	color: #fff
}

.header--hfull .top-menu__link:hover {
	color: rgba(255, 255, 255, .6)
}

.header--hfull .top-menu .nav__dropdown-toggle {
	color: #fff
}

.header--hfull .top-menu .nav__dropdown-toggle:hover {
	color: rgba(255, 255, 255, .6)
}

.header--hfull .top-menu .nav__dropdown-toggle::after {
	background: url(../img/icons/chevron-white.svg) center/contain no-repeat
}

.header--hfull .nav__dropdown-toggle {
	color: #fff
}

.header--hfull .nav__dropdown-toggle:hover {
	color: rgba(255, 255, 255, .6)
}

.header--hfull .nav__dropdown-toggle::after {
	background: url(../img/icons/chevron-white.svg) center/contain no-repeat
}

.header--hfull .toggle-theme svg {
	fill: #fff
}

.header--hfull .toggle-theme:hover svg {
	fill: rgba(255, 255, 255, .6)
}

.header--hfull .t-social__link {
	border-color: #fff
}

.header--hfull .t-social__link svg {
	fill: #fff
}

.header--hfull .t-social__link:hover {
	border-color: rgba(255, 255, 255, .6)
}

.header--hfull .t-social__link:hover svg {
	fill: rgba(255, 255, 255, .6)
}

.header--hfull .logo svg {
	fill: #fff
}

.header--hfull .logo span {
	color: #fff
}

.header--hfull .logo:hover svg {
	fill: #fff
}

.header--hfull .menu__link,
.header--hfull .menu__link.open {
	color: #fff
}

.header--hfull .menu__link svg,
.header--hfull .menu__link.open svg {
	fill: #fff
}

.header--hfull .menu__link.open:hover,
.header--hfull .menu__link:hover {
	color: rgba(255, 255, 255, .6)
}

.header--hfull .msgs>a {
	border-color: #fff
}

.header--hfull .msgs>a svg {
	fill: #fff;
	transition: .3s linear
}

.header--hfull .msgs>a:hover {
	border-color: rgba(255, 255, 255, .6)
}

.header--hfull .msgs>a:hover svg {
	fill: rgba(255, 255, 255, .6)
}

.header--hfull .office__icon svg {
	fill: #fff
}

.header--hfull .office__tel,
.header--hfull .office__text {
	color: #fff
}

.header--hfull .office__text span {
	color: #fff !important
}

.header--hfull .office:hover .office__icon svg {
	fill: rgba(255, 255, 255, .6)
}

.header--hfull .navbar.fixed {
	background-color: var(--secondary)
}

.top {
	position: relative;
	z-index: 2000
}

.top__wrap {
	padding: 15px 0;
	border-bottom: 1px solid rgba(206, 215, 217, .5)
}

.top__row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	align-items: center
}

.top__left {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 2 - 20px)
}

.top__center {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 6 - 20px)
}

.top__right {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 4 - 20px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 30px
}

.top .logo {
	display: none
}

.city {
	display: flex;
	align-items: center
}

.city__icon {
	flex: none;
	width: 15px;
	height: 15px;
	margin-right: 8px
}

.city__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: var(--secondary)
}

.city__select {
	display: flex;
	align-items: center;
	text-decoration: none
}

.city__select span {
	margin-right: 6px;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: var(--primary);
	transition: .3s linear
}

.city__select svg {
	width: 8px;
	height: 8px;
	fill: var(--primary);
	transition: .3s linear
}

.city__select:hover span {
	color: var(--secondary)
}

.city__select:hover svg {
	fill: var(--secondary)
}

.top-menu {
	display: flex;
	gap: 20px
}

.top-menu__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex !important;
	align-items: center;
	column-gap: 20px
}

.top-menu__link {
	display: block;
	font-size: 14px;
	line-height: 17px;
	color: var(--gray);
	text-decoration: none;
	transition: .3s linear
}

.top-menu__link:hover {
	color: #707070
}

.top-menu .nav__dropdown-toggle {
	display: block;
	font-size: 14px;
	line-height: 17px;
	color: var(--gray);
	text-decoration: none;
	font-weight: 400;
	transition: .3s linear
}

.top-menu .nav__dropdown-toggle:hover {
	color: #707070
}

.more-dropdown {
	display: none;
	position: absolute;
	z-index: 100;
	top: calc(100% + 18px);
	left: 0;
	min-width: 144px;
	padding: 10px 20px;
	background: #fff;
	border: 1px solid #ced7d9;
	border-radius: 10px
}

.more-dropdown a {
	display: block;
	padding: 5px 0;
	white-space: nowrap;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--font-dark);
	transition: .3s linear
}

.more-dropdown a:hover {
	color: var(--secondary)
}

.t-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 10px;
	justify-content: flex-end
}

.t-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid var(--gray);
	border-radius: 50%;
	transition: .3s linear
}

.t-social__link svg {
	width: 15px;
	height: 15px;
	fill: var(--gray);
	transition: .3s linear
}

.t-social__link:hover {
	border-color: var(--secondary)
}

.t-social__link:hover svg {
	fill: var(--secondary)
}

.navbar {
	padding: 14px 0;
	background: #fff;
	transition: background .4s
}

.navbar.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%
}

.navbar .container {
	position: relative
}

.navbar__row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	align-items: center
}

.navbar__left {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 2 - 20px)
}

.navbar__right {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 4 - 20px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end
}

.navbar__center {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 6 - 20px)
}

.navbar__private {
	position: relative;
	margin-left: 15px
}

.navbar__order {
	margin-left: 40px
}

.navbar__contacts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 15px
}

.navbar__contacts:nth-child(2) {
	margin-left: 40px
}

.navbar--twotel .navbar__center {
	width: calc(100% / 12 * 4.5 - 20px)
}

.navbar--twotel .navbar__right {
	width: calc(100% / 12 * 5.5 - 20px)
}

.logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 20px
}

.logo svg {
	width: 40px;
	height: 40px;
	fill: var(--secondary);
	transition: .3s linear
}

.logo span {
	font-weight: 600;
	font-size: 22px;
	color: var(--primary);
	letter-spacing: -.4px
}

.logo:hover svg {
	fill: var(--primary)
}

.menu {
	display: flex;
	gap: 20px
}

.menu__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex !important;
	align-items: center;
	column-gap: 20px
}

.menu__item:has(.more-dropdown) {
	position: relative
}

.menu__link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 4px;
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	color: var(--primary);
	transition: color .3s
}

.menu__link svg {
	width: 8px;
	height: 8px;
	fill: var(--primary);
	transition: .3s linear
}

.menu__link.open,
.menu__link:hover {
	color: var(--secondary)
}

.menu__link.open svg {
	transform: rotateX(180deg)
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	padding: 14px 20px;
	background: var(--secondary);
	border: 1px solid var(--secondary);
	border-radius: 60px;
	font-weight: 600;
	font-size: 16px;
	line-height: 17px;
	color: #fff;
	white-space: nowrap;
	cursor: pointer;
	transition: .3s linear
}

.btn:hover {
	background: #fff;
	color: var(--secondary)
}

.btn--green {
	border-color: #3dbf00;
	background-color: #3dbf00
}

.btn--green:hover {
	color: #3dbf00
}

.btn--tg {
	border-color: #08c;
	background-color: #08c
}

.btn--tg:hover {
	color: #08c
}

.btn--yt {
	border-color: #cd201f;
	background-color: #cd201f
}

.btn--yt:hover {
	color: #cd201f
}

.whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(174, 179, 179, .3);
	border-radius: 50%;
	transition: .3s linear
}

.whatsapp svg {
	width: 18px;
	height: 18px;
	fill: var(--green)
}

.whatsapp:hover {
	border-color: var(--green)
}

.office {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 10px
}

.office__icon {
	width: 16px;
	height: 16px
}

.office__icon svg {
	width: 100%;
	height: 100%;
	fill: #798383;
	transition: .3s linear
}

.office__tel {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.4;
	color: var(--primary)
}

.office__text {
	margin: 0;
	font-weight: 400;
	font-size: 10px;
	line-height: 1.4;
	color: var(--primary)
}

.office__text span {
	margin-left: 3px
}

.office__text span.green {
	color: var(--green)
}

.office__text span.red {
	color: var(--secondary)
}

.office:hover .office__icon {
	border-color: var(--primary)
}

.office:hover .office__icon svg {
	fill: var(--primary)
}

.footer__wrap {
	padding: 0 100px;
	background: var(--bg-box);
	border-radius: 0px 0px 0 0
}

.bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0;
	border-top: 1px solid #eeebde
}

.bottom__left {
	width: 35%
}

.bottom__right {
	width: 35%;
	text-align: right
}

.bottom__text {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray)
}

.bottom__text a {
	color: var(--gray);
	text-decoration: underline;
	transition: .3s linear
}

.bottom__text a:hover {
	color: var(--secondary)
}

.platform {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	row-gap: 6px
}

.platform__text {
	margin: 0;
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--primary)
}

.platform__logo {
	display: block;
	width: 172px;
	height: 26px
}

.platform__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.f-top {
	padding: 40px 0 30px;
	border-bottom: 1px solid #eeebde
}

.f-top__row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	align-items: center;
	row-gap: 30px
}

.f-top__left {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 3.8 - 20px)
}

.f-top__center {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 6.7 - 20px)
}

.f-top__right {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 1.5 - 20px);
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end
}

.footerbar {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	row-gap: 30px;
	padding: 50px 0
}

.footerbar__left {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 3.8 - 20px)
}

.footerbar__right {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 8.2 - 20px)
}

.footerbar .t-social {
	justify-content: flex-start;
	margin-bottom: 25px
}

.footerbar .t-social__link {
	width: 40px;
	height: 40px
}

.footerbar .t-social__link svg {
	width: 20px;
	height: 20px
}

.footerbar__text {
	max-width: 404px;
	margin: 0 0 30px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray)
}

.footerbar__btns {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 17px
}

.footerbar__order {
	width: 145px
}

.footerbar .city {
	display: none
}

.f-menu {
	display: grid;
	grid-template-columns: repeat(4, auto);
	justify-content: start;
	column-gap: 130px;
	row-gap: 40px
}

.f-menu__section {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	row-gap: 15px
}

.f-menu__title {
	margin: 0;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: var(--primary);
	transition: .3s linear
}

.f-menu__title:hover {
	color: var(--secondary)
}

.f-menu__list {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	row-gap: 12px
}

.f-menu__link {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: var(--gray);
	transition: .3s linear
}

.f-menu__link:hover {
	color: var(--secondary)
}

.f-contacts {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 15px;
	margin-bottom: 30px
}

.f-contacts__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 10px;
	row-gap: 20px
}

.f-contacts .office__info {
	width: calc(100% - 26px);
	max-width: 240px;
	min-width: 154px
}

.f-contacts .whatsapp {
	width: 40px;
	height: 40px
}

.f-contacts .whatsapp svg {
	width: 20px;
	height: 20px
}

.login-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: #fff;
	border: 1px solid var(--secondary);
	border-radius: 50%;
	transition: .3s linear
}

.login-btn svg {
	width: 20px;
	height: 20px;
	fill: var(--secondary);
	transition: .3s linear
}

.login-btn:hover {
	background: var(--secondary)
}

.login-btn:hover svg {
	fill: #fff
}

.menu-btn {
	display: none;
	column-gap: 8px;
	width: 92px;
	height: 36px;
	border: 1px solid var(--secondary);
	border-radius: 20px;
	background: #fff
}

.menu-btn span {
	font-weight: 600;
	font-size: 12px;
	color: var(--secondary)
}

.menu-btn__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px
}

.menu-btn__icon svg {
	width: 19px;
	height: 19px;
	stroke: var(--secondary)
}

.mobile-menu {
	position: fixed;
	z-index: 8000;
	top: 0;
	left: -105%;
	width: 100%;
	height: 100vh;
	overflow-y: auto;
	background: #fff;
	transition: .3s linear
}

.mobile-menu.open {
	left: 0
}

.mobile-menu__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid rgba(206, 215, 217, .5)
}

.mobile-menu .logo svg {
	width: 36px;
	height: 36px
}

.mobile-menu .logo span {
	font-size: 20px
}

.mobile-menu__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 1px solid #ced7d9;
	border-radius: 0px
}

.mobile-menu__close svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: var(--primary)
}

.mobile-menu__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 48px;
	padding: 40px 0;
	border-top: 1px solid rgba(206, 215, 217, .5)
}

.mobile-menu .t-social__link {
	width: 40px;
	height: 40px
}

.mobile-menu .t-social__link svg {
	width: 20px;
	height: 20px
}

.mobile-menu__btns {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 20px;
	padding: 30px 0;
	border-top: 1px solid rgba(206, 215, 217, .5)
}

.mobile-menu__btns .btn {
	width: 130px;
	height: 40px
}

.mobile-menu .login-btn {
	column-gap: 10px;
	width: 172px;
	height: 40px;
	border-radius: 20px
}

.mobile-menu .login-btn span {
	font-weight: 600;
	font-size: 12px;
	color: var(--secondary)
}

.mobile-nav {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 30px;
	padding: 40px 0 50px
}

.mobile-nav__list {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 20px
}

.mobile-nav__list:nth-child(2) .mobile-nav__link {
	font-weight: 400;
	color: var(--gray)
}

.mobile-nav__link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 12px;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.4;
	color: var(--primary)
}

.mobile-nav__link svg {
	width: 16px;
	height: 16px;
	fill: var(--primary);
	transition: .3s linear
}

.mobile-nav__link.open svg {
	transform: rotateX(180deg)
}

.mob-dropdown {
	display: none
}

.mob-dropdown__link {
	display: block;
	margin-top: 12px;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.4;
	color: var(--gray)
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
	z-index: 9000;
	overflow-y: auto;
	display: none
}

.modal__inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 560px;
	padding: 100px 75px;
	border-radius: 0px;
	background: #fff;
	z-index: 9999
}

.modal__inner .btn {
	width: 100%;
	height: 75px;
	margin: 30px 0 25px;
	font-size: 18px;
	cursor: pointer
}

.modal__inner .form-checkbox {
	justify-content: center
}

.modal__inner .form-checkbox label {
	color: var(--font-dark)
}

.modal__inner .form-group label {
	color: rgba(78, 78, 78, .7)
}

.modal__inner .form-group input:focus,
.modal__inner .form-group textarea:focus {
	border-color: var(--font-dark)
}

.modal__title {
	margin: 0 0 22px;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3;
	text-align: center;
	color: var(--font-dark)
}

.modal__text {
	margin: 0 -20px 40px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	color: var(--font-dark)
}

.modal__text:last-child {
	margin-bottom: 0
}

.modal__inputs {
	display: grid;
	grid-template-columns: 100%;
	row-gap: 20px;
	margin-bottom: 40px
}

.modal__btns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px;
	margin-bottom: 25px;
	margin-top: -20px
}

.modal__btns .btn {
	margin: 0
}

#js-modal-city .modal__inner {
	width: 850px
}

.close-btn,
.close-btn:focus,
.close-btn:hover {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	border: 1px solid #eeebde;
	border-radius: 50%;
	cursor: pointer;
	transition: .3s linear
}

.close-btn svg,
.close-btn:focus svg,
.close-btn:hover svg {
	width: 26px;
	height: 26px;
	stroke: var(--font-dark)
}

.close-btn:focus:hover,
.close-btn:hover,
.close-btn:hover:hover {
	border-color: var(--font-dark)
}

.city-search form {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	width: 100%;
	margin-bottom: 40px
}

.city-search form input {
	width: calc(100% - 152px);
	height: 64px;
	padding: 0 20px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #dcdcdc;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5
}

.city-search form .btn {
	width: 132px;
	height: 64px;
	margin: 0;
	border-radius: 45px;
	font-weight: 600;
	font-size: 18px;
	cursor: pointer
}

.city-search__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 10px;
	row-gap: 10px;
	max-height: 330px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--secondary) #e2e8ed
}

.city-search__list::-webkit-scrollbar {
	width: 3px;
	height: 5px
}

.city-search__list::-webkit-scrollbar-track {
	background: #e2e8ed
}

.city-search__list::-webkit-scrollbar-thumb {
	background-color: var(--secondary);
	border-radius: 0;
	border: none
}

.city-search__link {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--font-dark);
	transition: .3s linear
}

.city-search__link strong {
	font-weight: 600
}

.city-search__link:hover {
	color: var(--secondary)
}




.first-left {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(100% / 12 * 6.3 - 20px);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px
}

.first-left__title {
    margin: 0 0 40px;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.15;
    color: var(--primary)
}

.first-left__title span {
    display: block;
    color: var(--secondary)
}

.first-left__text {
    max-width: 475px;
    margin: 0 0 60px;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--primary)
}

.first-left__text strong {
    font-weight: 700
}

.first-left .btn {
    height: 78px;
    font-size: 20px
}

.first-right {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(100% / 12 * 5.7 - 20px);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    height: 672px;
    padding: 35px 30px;
    background: url(../img/img-first.jpg) center/cover no-repeat
}

.first-menu {
    display: grid;
    grid-template-columns: repeat(3,178px);
    gap: 20px
}

.first-menu__link {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 1;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 30px;
    background: rgba(40,47,47,.55);
    transition: .3s linear
}

.first-menu__link svg {
    display: block;
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
    fill: #fff;
    transition: .3s linear
}

.first-menu__link span {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.25;
    color: #fff;
    transition: .3s linear
}

.first-menu__link:hover {
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none
}

.first-menu__link:hover svg {
    fill: var(--secondary)
}

.first-menu__link:hover span {
    color: var(--secondary)
}

.first-menu--dark .first-menu__link {
    border-color: var(--primary);
    background-color: transparent
}

.first-menu--dark .first-menu__link svg {
    fill: var(--primary)
}

.first-menu--dark .first-menu__link span {
    color: var(--primary)
}

.first-menu--dark .first-menu__link:hover {
    border-color: transparent;
    background: #2e3138;
    -webkit-backdrop-filter: none;
    backdrop-filter: none
}

.first-menu--dark .first-menu__link:hover svg {
    fill: #fff
}

.first-menu--dark .first-menu__link:hover span {
    color: #fff
}




.section-title {
	margin: 0 0 60px;
	font-weight: 700;
	font-size: 50px;
	line-height: 1.2;
	color: var(--primary)
}

.section-title--inner {
	font-size: 45px
}

.section-title--sm {
	font-size: 36px;
	margin-bottom: 40px
}

.section-title:last-child {
	margin-bottom: 0
}

h1.section-title {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px 30px
}

h1.section-title .btn {
	padding: 20px 40px;
	font-size: 18px
}

.link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 14px
}

.link span {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	color: var(--secondary);
	transition: .3s linear
}

.link svg {
	position: relative;
	top: 0;
	left: 0;
	width: 22px;
	height: 22px;
	transform: rotate(135deg);
	fill: none;
	stroke: var(--secondary);
	transition: .3s linear
}

.link:hover svg {
	top: -3px
}

.link--down svg {
	transform: rotate(225deg)
}

.link--down:hover svg {
	top: 3px
}

@keyframes translateArrow {

	0%,
	100% {
		top: 0;
		left: 0
	}

	50% {
		top: -3px
	}
}

@keyframes translateArrowDown {

	0%,
	100% {
		top: 0;
		left: 0
	}

	50% {
		top: 4px;
		left: 4px
	}
}

.social {
	margin-bottom: 100px
}

.social__row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	row-gap: 20px
}

.social__left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 4 - 20px);
	border-radius: 0px;
	padding-left: 100px
}

.social__right {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 8 - 20px)
}

.social__title {
	margin: 0;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3;
	color: var(--font-dark)
}

.social__list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	row-gap: 20px
}

.social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 3 - 20px);
	aspect-ratio: 1;
	background: var(--secondary);
	border: 1px solid var(--secondary);
	border-radius: 0px;
	transition: .3s linear
}

.social__link svg {
	width: 40px;
	height: 40px;
	fill: #fff;
	transition: .3s linear
}

.social__link:hover {
	background: #fff
}

.social__link:hover svg {
	fill: var(--secondary)
}

.yt {
	margin-bottom: 100px
}

.yt .container {
	position: relative
}

.yt .btn {
	position: absolute;
	z-index: 10;
	right: 170px;
	top: 0;
	padding: 20px 40px;
	font-size: 18px
}

.yt-carousel {
	margin: 0 -10px
}

.yt-carousel .item {
	padding: 0 10px
}

.yt-carousel__item {
	position: relative;
	display: block
}

.yt-carousel__img {
	position: relative;
	height: 316px;
	border-radius: 0px;
	overflow: hidden
}

.yt-carousel__img img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.yt-carousel__img::before {
	content: '';
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 80px;
	height: 80px;
	background: url(../img/icons/logo-youtube.svg) center/contain no-repeat
}

.yt-carousel__img::after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(1, 1, 1, .2);
	opacity: 0;
	transition: .3s linear
}

.yt-carousel__img:hover::after {
	opacity: 1
}

.yt-carousel .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	top: -115px;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 1px solid #ced7d9;
	border-radius: 50%;
	background: 0 0;
	cursor: pointer;
	transition: .3s linear
}

.yt-carousel .slick-arrow:hover {
	border-color: var(--primary)
}

.yt-carousel .slick-arrow svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: var(--primary)
}

.yt-carousel .slick-arrow.prev {
	right: 90px
}

.yt-carousel .slick-arrow.next {
	right: 10px
}

.yt-carousel .slick-arrow.next svg {
	transform: rotate(180deg)
}

.yt-carousel__title {
	margin: 20px 0 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5;
	color: #010101
}

.faq {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	align-items: flex-start;
	margin-bottom: 50px
}

.faq__col {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 6 - 20px);
	align-items: flex-start
}

.faq__item {
	margin-bottom: 20px;
	padding: 40px;
	background: #fff;
	border-radius: 20px
}

.faq__item:last-child {
	margin-bottom: 0
}

.faq__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	cursor: pointer
}

.faq__header span {
	width: calc(100% - 53px);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.3;
	color: var(--font-dark)
}

.faq__header svg {
	position: relative;
	top: 0;
	left: 0;
	width: 26px;
	height: 26px;
	fill: none;
	stroke: var(--secondary);
	transform: rotate(-135deg);
	transition: .3s linear
}

.faq__header:hover svg {
	top: 3px
}

.faq__header.open svg {
	transform: rotate(-225deg)
}

.faq__header.open:hover svg {
	top: -3px
}

.faq__text {
	display: none;
	padding: 20px 100px 0 0
}

.faq__text p {
	margin: 0;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.5;
	color: var(--font-dark)
}

.advant {
	margin-bottom: 100px
}

.advant__grid {
	display: grid;
	grid-template-columns: 705px repeat(3, 1fr);
	grid-template-rows: repeat(2, 358px);
	grid-column-gap: 20px;
	grid-row-gap: 20px
}

.advant__area:first-child {
	grid-area: 1/1/2/2
}

.advant__area:nth-child(2) {
	grid-area: 1/2/2/3
}

.advant__area:nth-child(3) {
	grid-area: 1/3/2/4
}

.advant__area:nth-child(4) {
	grid-area: 1/4/2/5
}

.advant__area:nth-child(5) {
	grid-area: 2/2/3/3
}

.advant__area:nth-child(6) {
	grid-area: 2/3/3/4
}

.advant__area:nth-child(7) {
	grid-area: 2/4/3/5
}

.advant__area:nth-child(8) {
	grid-area: 2/1/3/2
}

.advant__title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;
	margin: 0;
	padding-left: 100px;
	padding-right: 100px;
	font-weight: 700;
	font-size: 50px;
	line-height: 61px;
	background: var(--bg-box);
	border-radius: 0px;
	color: var(--primary)
}

.advant__img {
	height: 100%;
	border-radius: 0px;
	overflow: hidden
}

.advant__img img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.advant__item {
	height: 100%;
	padding: 60px 38px;
	background: var(--bg-box);
	border-radius: 0px
}

.advant__icon {
	width: 40px;
	height: 40px;
	margin-bottom: 50px
}

.advant__icon svg {
	width: 100%;
	height: 100%;
	fill: var(--secondary)
}

.advant__name {
	margin: 0 0 14px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3;
	color: var(--primary)
}

.advant__desc {
	margin: 0;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.4;
	color: var(--primary)
}

.request {
	margin-bottom: 100px
}

.request__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 336px);
	grid-column-gap: 20px;
	grid-row-gap: 20px
}

.request__area:first-child {
	grid-area: 1/1/3/3
}

.request__area:nth-child(2) {
	grid-area: 1/3/2/4
}

.request__area:nth-child(3) {
	grid-area: 1/4/2/5
}

.request__area:nth-child(4) {
	grid-area: 2/3/3/5
}

.request__area:nth-child(4) .request__img {
	background: #24262c
}

.request__desc {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 100px 280px 100px 100px;
	background: var(--bg-box);
	border-radius: 0px
}

.request__title {
	margin: 0 0 30px;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.2;
	color: var(--primary)
}

.request__title span {
	color: var(--secondary)
}

.request__text {
	margin: 0 0 70px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5
}

.request .btn {
	width: 279px;
	height: 72px;
	font-size: 18px
}

.request__img {
	height: 100%;
	padding: 15px;
	background: var(--bg-box);
	border-radius: 0px;
	overflow: hidden
}

.request__img img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.scheme {
	margin-bottom: 100px
}

.scheme__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, auto);
	grid-column-gap: 20px;
	grid-row-gap: 20px
}

.scheme__area {
	border-radius: 0px;
	overflow: hidden
}

.scheme__area:first-child {
	grid-area: 1/1/2/2
}

.scheme__area:nth-child(2) {
	grid-area: 1/2/2/3
}

.scheme__area:nth-child(3) {
	grid-area: 1/3/2/4
}

.scheme__area:nth-child(4) {
	grid-area: 1/4/2/5
}

.scheme__area:nth-child(5) {
	grid-area: 2/1/3/2
}

.scheme__area:nth-child(6) {
	grid-area: 2/2/3/3
}

.scheme__area:nth-child(7) {
	grid-area: 2/3/3/5
}

.scheme__img {
	height: 100%
}

.scheme__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.scheme__step {
	height: 100%;
	padding: 64px;
	background: #fff
}

.scheme__icon {
	width: 40px;
	height: 40px;
	margin-bottom: 130px
}

.scheme__icon svg {
	width: 100%;
	height: 100%;
	fill: var(--secondary)
}

.scheme__title {
	margin: 0 0 14px;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: var(--font-dark)
}

.scheme__text {
	margin: 0;
	font-weight: 300;
	font-size: 20px;
	line-height: 1.4;
	color: var(--font-dark)
}

.s-request {
	height: 100%;
	padding: 84px 222px 84px 70px;
	background: var(--secondary)
}

.s-request__text {
	margin: 0 0 60px;
	font-weight: 700;
	font-size: 40px;
	line-height: 49px;
	color: #fff
}

.s-request__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 14px
}

.s-request__full-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 267px;
	height: 70px;
	background: #fff;
	border: 1px solid #fff;
	border-radius: 60px;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.1;
	color: #f33e3e;
	transition: .3s linear
}

.s-request__full-btn:hover {
	box-shadow: inset 0 4px 24px rgba(40, 47, 47, .2)
}

.s-request__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 271px;
	height: 70px;
	background: 0 0;
	border: 1px solid #fff;
	border-radius: 60px;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.1;
	color: #fff;
	transition: .3s linear
}

.s-request__btn:hover {
	background: #dc2222
}

.video-card {
	position: relative;
	display: block
}

.video-card__img {
	position: relative;
	height: auto;
	aspect-ratio: 1.7778;
	border-radius: 30px;
	overflow: hidden
}

.video-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.video-card__img::before {
	content: '';
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 80px;
	height: 80px;
	background: url(../img/icons/play.svg) center/contain no-repeat
}

.video-card__img::after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	background: rgba(1, 1, 1, .2);
	opacity: 0;
	transition: .3s linear
}

.video-card__img:hover::after {
	opacity: 1
}

.video-card__content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	z-index: 100;
	bottom: 20px;
	left: 20px;
	right: 20px
}

.video-card__date {
	display: block;
	padding: 10px 16px;
	background: #fff;
	border-radius: 30px;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.5;
	color: var(--font-dark)
}

.video-card__author {
	display: flex;
	flex-wrap: wrap;
	column-gap: 15px
}

.video-card__author img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover
}

.video-card__text {
	margin: 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	color: #fff
}

.video-card__text span {
	display: block;
	margin-top: 4px;
	font-weight: 400;
	font-size: 14px
}

.m-blog {
	margin-bottom: 100px
}

.m-blog__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 64px
}

.m-blog__header .section-title {
	margin-bottom: 0
}

.m-blog__nav {
	display: flex;
	gap: 20px
}

.m-blog__link {
	flex: none;
	display: block;
	padding: 14px 24px;
	gap: 10px;
	border: 1px solid #ced7d9;
	border-radius: 40px;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--gray);
	white-space: nowrap;
	transition: .3s linear
}

.m-blog__link.active {
	border-color: var(--secondary);
	background-color: var(--secondary);
	color: #fff
}

.m-blog__link.active:hover {
	color: #fff
}

.m-blog__link:hover {
	border-color: var(--secondary);
	color: var(--secondary)
}

.m-blog__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 50px
}

.preview {
	position: relative;
	display: block;
	border-radius: 0px;
	overflow: hidden
}

.preview__img {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0px
}

.preview__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.preview__img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0px;
	background: linear-gradient(180deg, rgba(40, 47, 47, 0) 0, rgba(40, 47, 47, .8) 100%);
	opacity: .8;
	transition: .3s linear
}

.preview__content {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	position: relative;
	z-index: 10;
	aspect-ratio: 1;
	padding: 40px
}

.preview__label {
	align-self: flex-start;
	display: block;
	padding: 8px 18px;
	background: #fff;
	border-radius: 40px;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	color: var(--secondary)
}

.preview__title {
	min-height: 72px;
	margin: auto 0 20px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	color: #fff
}

.preview__date {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: #fff
}

.preview:hover .preview__img::before {
	opacity: 1
}

.preview--red .preview__img::before {
	background: linear-gradient(180deg, rgba(239, 34, 34, .1) 0, rgba(40, 47, 47, .9) 100%)
}

.preview--bg .preview__content {
	padding: 30px 30px 25px
}

.preview__desc {
	margin-top: auto;
	padding: 20px;
	background: #fff;
	border-radius: 30px
}

.preview__desc .preview__date,
.preview__desc .preview__title {
	color: var(--primary)
}

.section {
	width: 100%
}

.section__footer {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px
}

.section__text {
	max-width: 800px;
	margin: 0 0 50px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--primary)
}

.section__text:last-child {
	margin-bottom: 0
}

.section__text p {
	margin: 0 0 30px
}

.section__text p:last-child {
	margin-bottom: 0
}

.section__text p span {
	color: var(--secondary)
}

.section__text p a {
	display: inline-block;
	color: var(--secondary);
	text-decoration: underline
}

.carousel {
	margin: 0 -10px
}

.carousel .slick-track {
	display: flex;
	align-items: stretch
}

.carousel .slick-slide {
	height: auto;
	padding: 0 10px
}

.carousel .slick-slide>div,
.carousel .slick-slide>div>div {
	height: 100%
}

.carousel .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	top: -120px;
	width: 60px;
	height: 60px;
	padding: 0;
	border: 1px solid #ced7d9;
	border-radius: 50%;
	background: 0 0;
	cursor: pointer;
	transition: .3s linear
}

.carousel .slick-arrow:hover {
	border-color: var(--primary)
}

.carousel .slick-arrow svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: var(--primary)
}

.carousel .slick-arrow.prev {
	right: 90px
}

.carousel .slick-arrow.next {
	right: 10px
}

.carousel .slick-arrow.next svg {
	transform: rotate(180deg)
}

.card {
	display: block !important;
	border: 1px solid var(--border);
	border-radius: 0px;
	overflow:hidden
}

.card__img {
	position: relative;
	z-index: 10;
	display: block;
	height: 316px;
	border-radius: 0px;
	overflow: hidden
}

.card__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.card__img::before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .2) 100%)
}

.card__label {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	top: 30px;
	left: 26px;
	padding: 5px 15px;
	background: #fff;
	border-radius: 20px;
	font-weight: 600;
	font-size: 14px;
	color: var(--secondary)
}

.card__rating {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	top: 30px;
	left: 26px;
	gap: 3px;
	width: 51px;
	height: 33px;
	background: #fff;
	border-radius: 20px
}

.card__rating svg {
	width: 14px;
	height: 14px;
	margin-bottom: 2px;
	fill: var(--secondary)
}

.card__rating span {
	font-weight: 600;
	font-size: 14px;
	color: var(--secondary)
}

.card__desc {
	margin-top: -60px;
	padding: 100px 35px 40px;
	background: var(--bg-card);
	border-radius: 0 0 0px 0px;
	transition: .3s linear
}

.card__car {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	column-gap: 20px;
	margin-bottom: 30px
}

.card__year {
	flex: none;
	padding-top: 3px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #8e8e89
}

.card__name {
	margin: 0;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.5;
	color: var(--font-dark);
	text-transform: uppercase
}

.card__name span {
	display: block;
	font-weight: 400;
	font-size: 16px;
	color: #8e8e89
}

.card__info {
	margin-bottom: 30px
}

.card__row {
	display: flex;
	justify-content: space-between
}

.card__row:first-child {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eeebde
}

.card__row:first-child .card__item span:nth-child(2) {
	font-size: 16px;
	color: var(--font-dark)
}

.card__item {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column
}

.card__item span {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.3;
	color: #8e8e89
}

.card__price {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 8px;
	position: relative
}

.card__price>p {
	margin: 0;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5;
	color: var(--secondary)
}

.card__price>span {
	position: relative;
	width: 15px;
	height: 15px;
	cursor: pointer
}

.card__price>span svg {
	width: 100%;
	height: 100%;
	fill: #eeebde;
	transition: .3s linear
}

.card__price>span:hover svg {
	fill: var(--font-dark)
}

.card:hover .card__desc {
	border-color: #8e8e89
}

.tooltipster-arrow {
	display: none
}

.tooltipster-sidetip {
	transform: translateX(-46%)
}

.tooltipster-sidetip .tooltipster-box {
	width: 190px;
	padding: 12px;
	background: #fff;
	border: 1px solid #ced7d9;
	border-radius: 15px
}

.tooltipster-sidetip .tooltipster-content {
	padding: 0;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.3;
	color: var(--primary)
}

.carousel-three {
	margin: 0 -10px
}

.carousel-three .slick-track {
	display: flex;
	align-items: stretch
}

.carousel-three .slick-slide {
	height: auto;
	padding: 0 10px
}

.carousel-three .slick-slide>div,
.carousel-three .slick-slide>div>div {
	height: 100%
}

.carousel-three .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	top: -120px;
	width: 60px;
	height: 60px;
	padding: 0;
	border: 1px solid #ced7d9;
	border-radius: 50%;
	background: 0 0;
	cursor: pointer;
	transition: .3s linear
}

.carousel-three .slick-arrow:hover {
	border-color: var(--primary)
}

.carousel-three .slick-arrow svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: var(--primary)
}

.carousel-three .slick-arrow.prev {
	right: 90px
}

.carousel-three .slick-arrow.next {
	right: 10px
}

.carousel-three .slick-arrow.next svg {
	transform: rotate(180deg)
}

.card-stock {
	display: block !important;
	border: 1px solid var(--border);
	border-radius: 0px;
	background: var(--bg-card)
}

.card-stock__img {
	position: relative;
	z-index: 10;
	display: block;
	height: 386px;
	border-radius: 0px;
	overflow: hidden
}

.card-stock__img img {
	display: block;
	mix-blend-mode: darken;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.card-stock__img::before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .2) 100%)
}

.card-stock__rating {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	bottom: 40px;
	left: 35px;
	gap: 3px;
	width: 51px;
	height: 33px;
	background: #fff;
	border-radius: 20px
}

.card-stock__rating svg {
	width: 14px;
	height: 14px;
	margin-bottom: 2px;
	fill: var(--secondary)
}

.card-stock__rating span {
	font-weight: 600;
	font-size: 14px;
	color: var(--secondary)
}

.card-stock__label {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	bottom: 40px;
	right: 35px;
	width: 112px;
	height: 33px;
	background: var(--secondary);
	border-radius: 30px;
	font-weight: 600;
	font-size: 14px;
	color: #fff
}

.card-stock__desc {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	row-gap: 30px;
	height: calc(100% - 326px);
	margin-top: -60px;
	padding: 100px 35px 40px;
	border-radius: 0 0 0px 0px;
	transition: .3s linear
}

.card-stock__name {
	grid-area: 1/1/2/2;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--font-dark)
}

.card-stock__price {
	grid-area: 1/2/2/3;
	margin: 0;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	text-align: right;
	color: var(--secondary)
}

.card-stock__info {
	grid-area: 2/1/3/3;
	align-self: end;
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px
}

.card-stock__info span {
	position: relative;
	font-weight: 400;
	font-size: 18px;
	line-height: 120%;
	color: #8e8e89
}

.card-stock__info span::after {
	content: '';
	position: absolute;
	right: -12px;
	top: calc(50% - 2px);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #8e8e89
}

.card-stock__info span:last-child::after {
	display: none
}

.card-row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 0px;
	position: relative
}

.card-row__img {
	display: block;
	width: 368px;
	height: 260px;
	border-radius: 0px;
	overflow: hidden
}

.card-row__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	mix-blend-mode: darken
}

.card-row__desc {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: calc(100% - 368px);
	padding: 55px 60px 55px 50px
}

.card-row__car {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	row-gap: 10px;
	width: 25%;
	padding-right: 40px;
	border-right: 1px solid #eeebde
}

.card-row__info {
	width: 43.46%;
	padding-left: 40px;
	padding-right: 40px;
	border-right: 1px solid #eeebde;
	display: grid;
	grid-template-columns: 68px 89px 1fr;
	column-gap: 20px;
	padding-top: 20px
}

.card-row__price {
	align-self: center;
	width: 31.54%;
	padding-left: 40px
}

.card-row__price>p:first-child {
	margin: 0 0 5px;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.5;
	color: var(--secondary)
}

.card-row__price>p:first-child span {
	margin-left: 30px;
	font-weight: 400;
	font-size: 18px;
	color: var(--font-dark)
}

.card-row__price>p:nth-child(2) {
	margin: 0 0 14px;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.5;
	color: var(--font-dark)
}

.card-row__price-toggle {
	position: relative
}

.card-row__price-toggle>span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 181px;
	height: 33px;
	background: var(--secondary);
	border: 1px solid var(--secondary);
	border-radius: 30px;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
	cursor: pointer;
	transition: .3s linear
}

.card-row__price-toggle>span:hover {
	background: #fff;
	color: var(--secondary)
}

.card-row__name {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5;
	color: var(--font-dark)
}

.card-row__age {
	display: flex;
	flex-wrap: wrap;
	column-gap: 28px
}

.card-row__age span {
	position: relative;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #8e8e89
}

.card-row__age span::after {
	content: '';
	position: absolute;
	right: -16px;
	top: calc(50% - 2px);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #8e8e89
}

.card-row__age span:last-child::after {
	display: none
}

.card-row__col {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 10px
}

.card-row__col span {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	color: #8e8e89
}

.card-row__fav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 10px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #8e8e89;
	transition: .3s linear
}

.card-row__fav svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: #8e8e89;
	transition: .3s linear
}

.card-row__fav:hover {
	color: var(--secondary)
}

.card-row__fav:hover svg {
	stroke: var(--secondary)
}

.card-row__fav.active {
	color: var(--secondary)
}

.card-row__fav.active svg {
	fill: var(--secondary);
	stroke: var(--secondary)
}

.card-row__del {
	position: absolute;
	z-index: 10;
	top: 30px;
	right: 40px;
	display: block;
	width: 30px;
	height: 30px
}

.card-row__del svg {
	width: 100%;
	height: 100%;
	stroke: #8e8e89;
	transition: .3s linear
}

.card-row__del:hover svg {
	stroke: var(--secondary)
}

.card-row--glry {
	padding: 20px
}

.card-row--glry .card-row__desc {
	width: calc(100% - 334px);
	padding-top: 7px;
	padding-bottom: 7px;
	padding-right: 0
}

.card-row--glry .card-row__info {
	width: 50%
}

.card-row--glry .card-row__price {
	width: 25%
}

.card-row__gallery {
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px;
	width: 334px
}

.card-row__gallery .card-row__img {
	width: calc(50% - 5px);
	height: 114px;
	border-radius: 30px
}

.filter {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: end;
	gap: 20px;
	margin-bottom: 50px;
	padding: 50px;
	background: var(--bg-card);
	border-radius: 0px
}

.filter--mb30 {
	margin-bottom: 30px
}

.filter .btn,
.filter .btn-border {
	height: 64px
}

.filter .form-checkbox {
	margin-bottom: 22px
}

.filter__full {
	grid-column-start: 1;
	grid-column-end: -1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: end;
	gap: 20px
}

.filter__full .form-range {
	grid-column-start: 2;
	grid-column-end: -1
}

.filter .btn {
	grid-column-start: -2;
	grid-column-end: -1;
	padding: 20px;
	font-size: 18px;
	line-height: 1.5
}

.filter .form-group label {
	color: rgba(78, 78, 78, .7)
}

.filter .form-checkbox label {
	color: var(--font-dark)
}

.filter__toggle {
	display: none
}

.filter__toggle span {
	border-bottom: 1px dashed var(--primary);
	font-size: 14px;
	color: var(--primary)
}

.select2 {
	width: 100% !important;
	display: block
}

.select2.select2-hidden-accessible {
	width: 1px !important
}

.select2 .selection {
	padding: 0;
	-webkit-backdrop-filter: none;
	backdrop-filter: none
}

.select2-container--default .select2-search--inline {
	float: none;
	vertical-align: bottom
}

.select2-container--default .select2-search--inline .select2-search__field {
	min-height: 24px;
	margin-top: 5px;
	margin-left: 5px;
	resize: none;
	height: 18px;
	vertical-align: middle;
	overflow: hidden
}

.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single {
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 20px;
	background-color: transparent
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 0;
	font-family: var(--font);
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--primary)
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #828ea2
}

.select2-container--default .select2-selection--multiple .select2-selection__arrow,
.select2-container--default .select2-selection--single .select2-selection__arrow {
	position: absolute;
	right: 18px;
	top: calc(50% - 5px);
	width: 14px;
	height: 14px;
	padding: 0;
	background: url(../img/icons/chevron.svg) center/contain no-repeat;
	transition: .27s ease-in-out;
	transform: rotateX(0)
}

.select2-container--default .select2-selection--multiple .select2-selection__arrow b,
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none !important
}

.select2-container--default .select2-selection--multiple {
	min-height: 64px;
	padding-top: 6px;
	padding-bottom: 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	margin: 2px 3px 2px 0;
	padding-left: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
	width: auto;
	padding-top: 3px;
	padding-bottom: 3px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	border: none;
	padding: 0 4px;
	background-color: transparent
}

.select2-container--default .select2-selection--single {
	height: 64px
}

.select2-container--default.select2-container--open .select2-selection__arrow {
	transform: rotateX(180deg)
}

.select2-container--default.select2-container--open .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--single {
	border-color: var(--font-dark);
	border-radius: 10px !important
}

.select2-container--default .select2-dropdown {
	z-index: 10;
	margin-top: 5px;
	padding: 10px;
	border: 1px solid var(--border);
	border-radius: 10px;
	width: 100%;
	background: var(--bg-card);
	-webkit-user-select: none;
	user-select: none
}

.select2-container--default .select2-results__options {
	-webkit-user-select: none;
	user-select: none;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--secondary) #e2e8ed
}

.select2-container--default .select2-results__options::-webkit-scrollbar {
	width: 3px;
	height: 5px
}

.select2-container--default .select2-results__options::-webkit-scrollbar-track {
	background: #e2e8ed
}

.select2-container--default .select2-results__options::-webkit-scrollbar-thumb {
	background-color: var(--secondary);
	border-radius: 0;
	border: none
}

.select2-container--default .select2-results__option {
	display: block;
	padding: 5px 10px;
	margin-right: 10px;
	font-family: var(--font);
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.1;
	color: var(--primary);
	white-space: nowrap;
	border-radius: 10px
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: var(--secondary);
	color: #fff
}

.brands {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 20px;
	max-width: 1130px
}

.brands__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex: none;
	column-gap: 20px;
	width: 210px;
	height: 90px;
	padding: 0 22px;
	background: var(--bg-card);
	border: 1px solid transparent;
	border-radius: 20px;
	font-weight: 400;
	font-size: 16px;
	color: var(--primary);
	transition: .3s linear
}

.brands__item img {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain
}

.brands__item:hover {
	border-color: var(--gray)
}

.filter-nowrap {
	margin-bottom: 50px
}

.filter-nowrap__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: end
}

.filter-nowrap__result {
	grid-column-start: 1;
	grid-column-end: 2;
	align-self: center
}

.filter-nowrap__result p {
	margin: 0;
	font-weight: 600;
	font-size: 16px;
	color: var(--primary)
}

.filter-nowrap__result p span {
	color: var(--secondary)
}

.filter-nowrap .btn {
	grid-column-start: -2;
	grid-column-end: -1;
	padding: 20px;
	font-size: 18px;
	line-height: 1.5
}

.filter-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px
}

.filter-menu__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px
}

.filter-menu__link {
	padding: 14px 24px;
	border: 1px solid #ced7d9;
	border-radius: 40px;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--gray);
	transition: .3s linear
}

.filter-menu__link.active {
	border-color: var(--secondary);
	background-color: var(--secondary);
	color: #fff
}

.filter-menu__link:hover {
	border-color: var(--secondary);
	color: var(--secondary)
}

.filter-menu__group {
	display: flex;
	flex-wrap: wrap;
	gap: 20px
}

.filter-menu__checkbox {
	border: 1px solid #ced7d9;
	border-radius: 10px
}

.filter-menu__checkbox label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 48px;
	padding: 0 14px 0 50px;
	font-weight: 400;
	font-size: 15px;
	color: var(--gray);
	cursor: pointer
}

.filter-menu__checkbox label::before {
	content: "";
	position: absolute;
	left: 14px;
	top: 12px;
	width: 24px;
	height: 24px;
	border: 1px solid #ced7d9;
	border-radius: 5px
}

.filter-menu__checkbox input {
	display: none
}

.filter-menu__checkbox input:checked+label::before {
	background-color: var(--secondary);
	background-image: url(../img/icons/checkmark-outline.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 19px;
	border-color: var(--secondary)
}

.filter-menu__checkbox:hover {
	border-color: var(--primary)
}

.filter-menu__checkbox:hover label {
	color: var(--primary)
}

.filter-menu__checkbox:hover label::before {
	border-color: var(--primary)
}

.hits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px
}

.hits__select {
	max-height: 410px;
	padding: 30px 20px 20px 35px;
	border: 1px solid var(--border);
	border-radius: 0px;
	background: var(--bg-card)
}

.hits__list {
	height: 100%;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--secondary) #e2e8ed
}

.hits__list::-webkit-scrollbar {
	width: 3px;
	height: 5px
}

.hits__list::-webkit-scrollbar-track {
	background: #e2e8ed
}

.hits__list::-webkit-scrollbar-thumb {
	background-color: var(--secondary);
	border-radius: 0;
	border: none
}

.hits__link {
	display: block;
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--font-dark);
	transition: .3s linear
}

.hits__link:first-child {
	font-weight: 600
}

.hits__link:hover {
	color: var(--secondary)
}

.hits__wrap {
	display: contents
}

.card-sm {
	display: flex;
	flex-direction: column;
	padding: 40px 35px;
	border: 1px solid var(--border);
	border-radius: 0px;
	background: var(--bg-card);
	transition: .3s linear
}

.card-sm__title {
	margin: 0 0 30px;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: var(--primary)
}

.card-sm__img {
	height: 180px;
	padding: 10px;
	border-radius: 0px;
	margin-top: auto;
	margin-bottom: 30px;
	background-color: transparent
}

.card-sm__img img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.card-sm__price {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 10px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5;
	color: var(--secondary)
}

.card-sm__price svg {
	position: relative;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	transform: rotate(135deg);
	fill: none;
	stroke: var(--secondary);
	transition: .3s linear
}

.card-sm__offers {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--font-gray)
}

.card-sm:hover .card-sm__price svg {
	top: -3px
}

.card-type {
	display: block;
	padding: 64px 45px 45px;
	background: var(--bg-card);
	border-radius: 0px
}

.card-type__img {
	height: 135px;
	margin-bottom: 30px
}

.card-type__img img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.card-type__title {
	margin: 0 0 14px;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: var(--primary)
}

.card-type__desc {
	margin: 0 0 40px;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.4;
	color: var(--primary)
}

.yt-card {
	position: relative;
	display: block
}

.yt-card__img {
	position: relative;
	height: auto !important;
	aspect-ratio: 1.7778;
	border-radius: 0px;
	overflow: hidden
}

.yt-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.yt-card__img::before {
	content: '';
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 80px;
	height: 80px;
	background: url(../img/icons/logo-youtube.svg) center/contain no-repeat
}

.yt-card__img::after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0px;
	background: rgba(1, 1, 1, .2);
	opacity: 0;
	transition: .3s linear
}

.yt-card__img:hover::after {
	opacity: 1
}

.yt-card__title {
	margin: 20px 0 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5;
	color: #010101
}

.dropdown {
	position: absolute;
	z-index: 1000;
	top: calc(100% + 5px);
	left: 10px;
	right: 10px;
	padding: 50px 60px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .1);
	border-radius: 0px;
	display: none
}

.dropdown__menu {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px
}

.dropdown__menu--six {
	grid-template-columns: repeat(6, 1fr)
}

.dropdown__link {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	row-gap: 16px
}

.dropdown__link span {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: var(--font-dark);
	transition: .3s linear
}

.dropdown__link:hover span {
	color: var(--secondary)
}

.dropdown__img {
	height: 122px
}

.dropdown__img img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.dropdown__grid {
	display: grid;
	grid-template-columns: 212px 1fr;
	column-gap: 30px
}

.drop-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 20px;
	margin-bottom: 40px
}

.btn-border {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	padding: 14px 20px;
	border: 1px solid var(--secondary);
	border-radius: 60px;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--secondary);
	background-color: #fff;
	white-space: nowrap;
	cursor: pointer;
	transition: .3s linear
}

.btn-border:hover {
	background-color: var(--secondary);
	color: #fff
}

.left-menu {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	row-gap: 22px
}

.left-menu__link {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: var(--secondary);
	transition: .3s linear
}

.left-menu__link:hover {
	color: var(--primary)
}

.tabbar {
	display: none;
	position: fixed;
	z-index: 5000;
	left: 0;
	bottom: -120%;
	width: 100%;
	padding: 10px 10px 15px;
	background: var(--secondary);
	transition: bottom .6s
}

.tabbar.open {
	bottom: 0
}

.tabbar__menu {
	display: flex;
	align-items: stretch;
	justify-content: space-between
}

.tabbar__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	row-gap: 5px
}

.tabbar__link svg {
	width: 25px;
	height: 25px;
	fill: #fff
}

.tabbar__link span {
	font-weight: 400;
	font-size: 12px;
	line-height: 15px;
	color: #fff
}

.box {
	margin-bottom: 100px
}

.box__title {
	margin: 0 0 50px;
	color: var(--primary);
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%
}

.box--mb20 {
	margin-bottom: 20px !important
}

.box--mb20:last-child {
	margin-bottom: 100px !important
}

.box__wrap {
	width: 100%;
	padding: 70px 60px;
	background: var(--bg-box);
	border-radius: 0px;
}

.box__wrap--main {
	padding: 100px
}

.box__wrap--main .carousel .slick-arrow,
.box__wrap--main .carousel-three .slick-arrow {
	top: -120px
}

.box__wrap--gray {
	background: var(--bg-box-gray)
}

.box__wrap--dark {
	background: var(--bg-box-dark)
}

.box__wrap--dark .section-title {
	color: #fff
}

.box__wrap--dark .carousel .slick-arrow svg,
.box__wrap--dark .carousel-three .slick-arrow svg {
	stroke: #fff
}

.box__wrap--dark .carousel .slick-arrow:hover,
.box__wrap--dark .carousel-three .slick-arrow:hover {
	border-color: var(--secondary)
}

.box__wrap--dark .link span {
	color: #fff
}

.box__wrap--dark .link svg {
	stroke: #fff
}

.box__wrap--first {
	padding: 40px
}

.box__wrap--tr {
	background-color: transparent;
	padding: 30px 0 0 !important
}

.box__wrap--tr .first-left {
	justify-content: flex-end;
	padding-left: 100px
}

.box__wrap--tr .first-right {
	padding: 0;
	background: 0 0;
	overflow: hidden
}

.box__wrap--tr .first-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.box__wrap--tr .first-menu__link {
	width: 220px;
	padding: 20px 25px 25px
}

.box__row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	row-gap: 40px
}

.box__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	align-items: stretch
}

.box__grid .first-left,
.box__grid .first-right {
	width: 100%;
	margin: 0;
}

.box__grid .first-left {
	height: 100%;
}

.box__column {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 100px
}

.box--social .box__wrap {
	padding: 0;
	overflow: hidden
}

.box--social .box__wrap img {
	align-self: end;
	display: block;
	width: 100%;
	height: 597px;
	object-fit: contain
}

.box__row--nm {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	column-gap: 20px
}

.box__sidebar {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;
	width: 440px
}

.box__sidebar .box__wrap {
	padding: 40px 35px 35px;
	border-radius: 40px
}

.box__sidebar .social__list {
	gap: 10px;
	margin: 0
}

.box__sidebar .social__link {
	width: calc((100% - 30px)/ 4);
	height: auto;
	aspect-ratio: 1;
	margin: 0;
	border-radius: 20px
}

.box__sidebar .social__link svg {
	width: 30px;
	height: 30px
}

.box__sidebar .link span {
	font-size: 16px
}

.box__sidebar .link svg {
	top: 2px;
	width: 16px;
	height: 16px
}

.box__sidebar .yt-card {
	width: auto !important
}

.box__sidebar .video-card,
.box__sidebar .yt-card__img,
.box__sidebar .yt-card__img::after {
	border-radius: 30px
}

.box__sidebar .preview {
	width: auto
}

.box__content {
	width: calc(100% - 460px)
}

.box__content .card-row__img {
	width: 250px;
	height: 172px
}

.box__content .card-row__desc {
	width: calc(100% - 250px);
	padding: 30px
}

.box__content .card-row__car {
	width: 29.9%;
	padding-right: 20px
}

.box__content .card-row__info {
	width: 42%;
	padding-left: 20px;
	padding-right: 20px;
	column-gap: 10px;
	padding-top: 16px;
	grid-template-columns: 46px 62px 1fr
}

.box__content .card-row__price {
	width: 28.1%;
	padding-left: 20px
}

.box__content .card-row__price>p:first-child {
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	font-size: 18px
}

.box__content .card-row__price>p:first-child span {
	margin-left: 0;
	font-size: 14px
}

.box__content .card-row__price>p:nth-child(2) {
	margin-bottom: 10px
}

.box__content .card-row__price-toggle>span {
	width: 152px;
	height: 30px;
	font-size: 12px
}

.box__content .card-row__name {
	column-gap: 10px;
	font-size: 18px
}

.box__content .card-row__age {
	column-gap: 20px
}

.box__content .card-row__age span {
	font-size: 12px
}

.box__content .card-row__age span::after {
	right: -12px
}

.box__content .card-row__col {
	row-gap: 6px
}

.box__content .card-row__col span {
	font-size: 12px
}

.box__content .card-row__fav {
	column-gap: 6px;
	font-size: 12px
}

.box__content .card-row__fav svg {
	width: 16px;
	height: 16px
}

.box__content .card-row__del {
	top: 20px;
	right: 20px;
	width: 24px;
	height: 24px
}

.box__content .card-row-carousel {
	width: 250px
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
	row-gap: 10px;
	column-gap: 10px
}

.breadcrumbs__item {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: var(--primary)
}

.breadcrumbs__link {
	color: var(--gray);
	transition: .3s linear
}

.breadcrumbs__link:hover {
	color: var(--secondary)
}

.breadcrumbs__link::after {
	content: '';
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-left: 10px;
	background: url(../img/icons/chevron.svg) center/contain no-repeat;
	transform: rotate(-90deg)
}

.attention {
	display: grid;
	grid-template-columns: 26px 1fr 26px;
	column-gap: 15px;
	margin-bottom: 20px;
	padding: 22px 30px;
	background: #f33e3e;
	border-radius: 20px
}

.attention__icon {
	width: 26px;
	height: 26px
}

.attention__icon svg {
	width: 100%;
	height: 100%;
	fill: #fff
}

.attention__text {
	margin: 3px 15px 0 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #fff
}

.attention__text a {
	color: #fff;
	text-decoration: underline
}

.attention__close {
	width: 26px;
	height: 26px;
	cursor: pointer
}

.attention__close svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: #fff
}

.looking {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 20px;
	row-gap: 10px
}

.looking__label {
	padding-right: 10px;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: var(--primary)
}

.looking__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 18px;
	gap: 10px;
	height: 54px;
	background: #fff;
	border-radius: 40px
}

.looking__item a {
	margin: 0;
	max-width: 339px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	color: var(--font-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.looking__del {
	flex: none;
	width: 26px;
	height: 26px;
	cursor: pointer
}

.looking__del svg {
	width: 100%;
	height: 100%;
	stroke: var(--font-dark);
	transition: .3s linear
}

.looking__del:hover svg {
	stroke: var(--gray)
}

.looking__add {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	background: #fff;
	border-radius: 50%;
	transition: .3s linear
}

.looking__add svg {
	width: 26px;
	height: 26px;
	stroke: var(--secondary);
	transition: .3s linear
}

.looking__add:hover {
	background: var(--secondary)
}

.looking__add:hover svg {
	stroke: #fff
}

.catalog__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px
}

.catalog__info {
	width: 352px
}

.catalog__info p {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5
}

.catalog__info p a {
	color: var(--secondary);
	text-decoration: underline
}

.catalog__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 60px
}

.catalog__qnt {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: var(--gray)
}

.catalog__qnt span {
	margin-left: 10px
}

.sort {
	width: 278px
}

.catalog-list {
	display: grid;
	grid-template-columns: 100%;
	row-gap: 20px
}

.car-brands {
	margin-bottom: 100px
}

.car-brands__title {
	margin: 0 0 50px;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3
}

.car-brands__row {
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 20px
}

.car-brands__link {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.33;
	color: var(--primary);
	transition: .3s linear
}

.car-brands__link:hover {
	color: var(--secondary)
}

.car-brands__link strong {
	font-weight: 600
}

.car-card {
	display: grid;
	grid-template-columns: repeat(2, calc(50% - 10px));
	grid-template-rows: repeat(3, auto);
	column-gap: 20px;
	row-gap: 30px;
	align-content: start
}

.car-card__header {
	grid-area: 1/2/2/3;
	padding-left: 40px
}

.car-card__header p {
	margin: 0 0 10px;
	font-weight: 400;
	font-size: 16px;
	line-height: 133%
}

.car-card__header p:last-child {
	margin-bottom: 0
}

.car-card__header p span {
	font-weight: 600;
	color: var(--secondary)
}

.car-card__left {
	grid-area: 1/1/4/2
}

.car-card__right {
	grid-area: 2/2/3/3
}

.car-card .section-title {
	margin-top: 0;
	font-size: 45px
}

.car-card__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 40px;
	row-gap: 30px
}

.car-card__footer p {
	width: 296px;
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray)
}

.car-card__btns {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 20px;
	margin-left: auto
}

.car-card__btns .btn {
	width: 262px;
	height: 64px;
	font-size: 18px
}

.car-card__fav {
	width: 40px;
	height: 40px
}

.car-card__fav svg {
	width: 100%;
	height: 100%;
	fill: transparent;
	stroke: var(--gray);
	transition: .3s linear
}

.car-card__fav:hover svg {
	fill: var(--secondary);
	stroke: var(--secondary)
}

.car-card__desc {
	margin-bottom: 40px;
	padding: 40px;
	border-radius: 0px;
	background: #fff
}

.car-card__desc p {
	margin: 0;
	color: var(--primary);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%
}

.car-card--two {
	grid-template-columns: 1fr 646px;
	margin-bottom: 30px
}

.car-card--two .car-card__header {
	grid-area: 1/1/2/2;
	padding-left: 0
}

.car-card--two .car-card__left {
	grid-area: 1/2/5/3
}

.car-card--two .car-card__right {
	grid-area: 2/1/3/2
}

.car-card--two .car-card__footer {
	grid-area: 3/1/4/2;
	padding: 0
}

.car-card--two .specifs {
	grid-template-columns: 100%;
	margin-bottom: 50px;
	padding: 20px 0 0;
	background: 0 0
}

.car-card--two .btn {
	width: 410px;
	height: 75px;
	font-size: 18px
}

.car-card__price {
	margin: 0 0 20px;
	color: var(--primary);
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%
}

.gallery__carousel {
	margin-bottom: 20px
}

.gallery__carousel .item {
	display: block !important
}

.gallery__carousel img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1.6288;
	object-fit: cover;
	border-radius: 0px;
	overflow: hidden
}

.gallery__carousel .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: 0 0;
	cursor: pointer;
	transition: .3s linear
}

.gallery__carousel .slick-arrow:hover {
	border-color: var(--primary)
}

.gallery__carousel .slick-arrow svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: var(--border)
}

.gallery__carousel .slick-arrow.prev {
	left: 20px
}

.gallery__carousel .slick-arrow.next {
	right: 20px
}

.gallery__carousel .slick-arrow.next svg {
	transform: rotate(180deg)
}

.gallery__thumbs .item {
	display: block !important
}

.gallery__thumbs .slick-slide {
	position: relative;
	margin-right: 10px;
	padding-left: 1px;
	padding-right: 10px
}

.gallery__thumbs .slick-slide img {
	display: block;
	width: auto;
	height: 186px;
	aspect-ratio: 1.35;
	border-radius: 0px;
	object-fit: cover
}

.gallery__thumbs .slick-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 1px;
	right: 10px;
	bottom: 0;
	border: 3px solid var(--gray);
	border-radius: 0px;
	opacity: 0;
	transition: .3s linear
}

.gallery__thumbs .slick-slide.slick-current::before {
	opacity: 1
}

.specifs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	background: #fff;
	border-radius: 0px;
	margin-bottom: 20px;
	padding: 40px
}

.specifs__col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px
}

.specifs__col span {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.33;
	color: var(--font-dark)
}

.specifs__col span:nth-child(even) {
	font-weight: 600
}

.specifs__item {
	display: flex;
	flex-wrap: wrap;
	flex-wrap: nowrap;
	gap: 30px
}

.specifs__item span {
	color: var(--primary);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 133%
}

.specifs__item span:first-child {
	flex: none;
	width: 140px;
	font-weight: 400
}

.car-price {
	position: relative;
	z-index: 10;
	margin: 0 40px 40px
}

.car-price__item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	align-items: center;
	margin-bottom: 20px
}

.car-price__item:last-child {
	margin-bottom: 0
}

.car-price__item::before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 2px;
	right: 2px;
	bottom: 4px;
	height: 0;
	border-bottom: 1px dashed var(--border)
}

.car-price__item span {
	padding-right: 12px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.33;
	color: var(--primary);
	background-color: var(--bg-box)
}

.car-price__item span:nth-child(2) {
	padding-left: 12px;
	padding-right: 0;
	font-weight: 600;
	color: var(--secondary)
}

.auction-list__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
	margin-bottom: 60px
}

.auction-list__toggle {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 6px;
	max-width: 520px;
	margin: 0 auto;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	color: var(--primary);
	transition: .3s linear
}

.auction-list__toggle svg {
	width: 16px;
	height: 16px;
	fill: var(--primary);
	transition: .3s linear
}

.auction-list__toggle:hover {
	color: var(--secondary)
}

.auction-list__toggle:hover svg {
	fill: var(--secondary)
}

.auction-list__wrap {
	max-width: 520px;
	max-height: 598px;
	margin: 0 auto 16px;
	overflow: hidden;
	transition: .3s linear
}

.auction-list__wrap.open {
	max-height: 2000px
}

.auction-list__item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	column-gap: 20px;
	position: relative;
	z-index: 10;
	margin-bottom: 16px
}

.auction-list__item:last-child {
	margin-bottom: 0
}

.auction-list__item::after {
	content: '';
	position: absolute;
	z-index: -1;
	left: 2px;
	right: 2px;
	bottom: 4px;
	height: 0;
	border-bottom: 1px dashed var(--border)
}

.auction-list__item span {
	padding-right: 12px;
	background-color: var(--bg-box);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	color: var(--primary)
}

.auction-list__item span:nth-child(2) {
	max-width: 340px;
	padding-right: 0;
	padding-left: 12px;
	text-align: right;
	color: var(--primary)
}

.price-breakdown--abs {
	display: none;
	position: absolute;
	z-index: 8900;
	top: calc(100% + 5px);
	left: 0;
	width: 844px;
	padding: 32px 48px;
	background: #fff;
	box-shadow: 0 4px 92px rgba(41, 45, 52, .1), 0 2px 24px rgba(41, 45, 52, .12);
	border-radius: 12px;
	transform: scale(.8);
	transform-origin: right top;
	color: var(--font-dark)
}

.price-breakdown--abs .price-breakdown__list,
.price-breakdown--abs .price-breakdown__price,
.price-breakdown--abs .price-breakdown__subtitle,
.price-breakdown--abs .price-breakdown__title,
.price-breakdown--abs .price-breakdown__total span {
	color: var(--font-dark)
}

.price-breakdown__close {
	display: none;
	position: absolute;
	top: 15px;
	right: 15px;
	width: 20px;
	height: 20px
}

.price-breakdown__close svg {
	width: 100%;
	height: 100%;
	fill: #36414f
}

.price-breakdown__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-wrap: nowrap;
	column-gap: 10px;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border)
}

.price-breakdown__title {
	max-width: 330px;
	margin: 0;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	color: var(--primary)
}

.price-breakdown__average {
	flex: none;
	margin: 0;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.25;
	color: var(--secondary)
}

.price-breakdown__section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border)
}

.price-breakdown__subtitle {
	grid-area: 1/1/2/2;
	margin: 0;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: var(--primary)
}

.price-breakdown__price {
	grid-area: 1/2/2/3;
	align-self: center;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	text-align: right;
	color: var(--primary)
}

.price-breakdown__price span:nth-child(2) {
	margin-left: 45px;
	font-weight: 400
}

.price-breakdown__desc {
	grid-area: 2/1/3/3
}

.price-breakdown__text {
	max-width: 420px;
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5
}

.price-breakdown__list {
	margin: 0 0 20px;
	padding: 0 0 0 10px;
	list-style: disc;
	max-width: 480px;
	list-style-position: inside
}

.price-breakdown__list:last-child {
	margin-bottom: 0
}

.price-breakdown__list li {
	position: relative;
	margin-bottom: 5px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5
}

.price-breakdown__list li:last-child {
	margin-bottom: 0
}

.price-breakdown__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	row-gap: 20px
}

.price-breakdown__footer .btn {
	width: 272px;
	height: 75px;
	font-size: 18px
}

.price-breakdown__total {
	display: flex;
	flex-wrap: wrap;
	align-items: center
}

.price-breakdown__total span {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.25;
	color: var(--primary)
}

.price-breakdown__total span:nth-child(2) {
	margin-left: 10px;
	font-weight: 600
}

.price-breakdown__disclaimer {
	margin-top: 40px
}

.price-breakdown__disclaimer p {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5
}

.calc-toggle {
	margin-bottom: 60px
}

.calc-toggle::after {
	display: none
}

.calc-toggle__row {
	display: flex;
	flex-wrap: wrap;
	flex-wrap: nowrap;
	gap: 20px;
	overflow-x: auto
}

.calc-toggle__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px 30px;
	border: 1px solid var(--secondary);
	border-radius: 60px;
	font-weight: 400;
	font-size: 16px;
	color: var(--secondary);
	background: var(--primary);
	transition: .3s linear
}

.calc-toggle__btn.active,
.calc-toggle__btn:hover {
	background-color: var(--secondary);
	color: #fff
}

.calc-toggle__btn span:nth-child(2) {
	display: none
}

.text {
	max-width: 665px;
	margin-bottom: 60px
}

.text p {
	margin: 0 0 20px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--primary)
}

.text p a {
	font-weight: 600;
	color: var(--secondary)
}

.exchange {
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 12px;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.6;
	color: var(--primary)
}

.exchange span:first-child {
	width: 100%;
	font-weight: 500
}

.exchange--row {
	row-gap: 0;
	margin-bottom: 40px
}

.exchange--row span:first-child {
	width: auto;
	margin-right: auto
}

.found {
	margin-bottom: 40px
}

.found__title {
	margin: 0 0 26px;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3;
	color: var(--secondary)
}

.found__desc {
	margin-bottom: 50px
}

.found__desc p {
	margin: 0 0 30px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--primary)
}

.found__desc p:last-child {
	margin-bottom: 0
}

.found__table {
	overflow-x: auto;
	padding-bottom: 10px
}

.found__table table {
	width: 580px;
	border-collapse: collapse
}

.found__table table th {
	width: 25%;
	padding-bottom: 12px;
	text-align: left;
	border-bottom: 1px solid #ced7d9;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	color: var(--primary)
}

.found__table table td {
	padding: 12px 0;
	border-bottom: 1px solid #ced7d9;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--primary)
}

.view-toggle {
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px
}

.view-toggle__item {
	display: block;
	width: 35px;
	height: 35px
}

.view-toggle__item svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: var(--gray);
	transition: .3s linear
}

.view-toggle__item.active svg,
.view-toggle__item:hover svg {
	stroke: var(--secondary)
}

.view-toggle__item:nth-child(2) svg {
	fill: var(--gray)
}

.view-toggle__item:nth-child(2).active svg,
.view-toggle__item:nth-child(2):hover svg {
	fill: var(--secondary)
}

.catalog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px
}

.catalog-grid--four {
	grid-template-columns: repeat(4, 1fr)
}

.card-moto {
	display: flex;
	flex-wrap: wrap;
	background: #fff;
	border-radius: 0px;
	overflow: hidden
}

.card-moto__left {
	position: relative;
	width: 369px
}

.card-moto__desc {
	width: calc(100% - 369px);
	padding: 30px 40px
}

.card-moto__fav {
	position: absolute;
	z-index: 10;
	top: 25px;
	left: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid #fff;
	border-radius: 50%;
	transition: .3s linear
}

.card-moto__fav svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: #fff;
	transition: .3s linear
}

.card-moto__fav:hover {
	border-color: var(--secondary)
}

.card-moto__fav:hover svg {
	stroke: var(--secondary)
}

.card-moto__img {
	display: block;
	height: 100%;
	border-radius: 0px;
	overflow: hidden
}

.card-moto__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
	display: block
}

.card-moto__name {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5;
	color: var(--font-dark)
}

.card-moto__age {
	display: flex;
	flex-wrap: wrap;
	column-gap: 28px;
	margin-bottom: 22px
}

.card-moto__age span {
	position: relative;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--font-gray)
}

.card-moto__age span::after {
	content: '';
	position: absolute;
	right: -16px;
	top: calc(50% - 2px);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--font-gray)
}

.card-moto__age span:last-child::after {
	display: none
}

.card-moto__info {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 6px;
	margin-bottom: 22px
}

.card-moto__info span {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	color: var(--font-gray)
}

.card-moto__price {
	margin: 0;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.5;
	color: var(--secondary)
}

.card-moto__price span {
	margin-left: 20px;
	font-weight: 400;
	font-size: 18px;
	color: var(--font-dark)
}

.filter-group {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 30px;
	padding: 50px;
	background: #fff;
	border-radius: 0px
}

.filter-group .filter {
	margin: 0;
	padding: 0;
	border-radius: 0;
	background-color: transparent
}

.filter-group__section {
	padding-bottom: 30px;
	border-bottom: 1px solid #ced7d9
}

.filter-group__section:last-child {
	padding-bottom: 0;
	border-bottom: none
}

.moto-brands {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, auto);
	gap: 20px;
	grid-auto-flow: column
}

.moto-brands__link {
	display: block;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.33;
	color: var(--font-dark)
}

.moto-brands__link span:first-child {
	display: inline-block;
	width: 170px;
	font-weight: 600;
	transition: .3s linear
}

.moto-brands__link:hover span:first-child {
	color: var(--secondary)
}

.moto-brands .link span {
	color: var(--font-dark);
	font-size: 16px
}

.moto-brands .link svg {
	width: 18px;
	height: 18px;
	stroke: var(--font-dark)
}

.moto-brands .link:hover span {
	color: var(--secondary)
}

.moto-brands .link:hover svg {
	stroke: var(--secondary)
}

.type-moto {
	display: flex;
	column-gap: 20px
}

.type-moto__link {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	row-gap: 10px
}

.type-moto__link span {
	font-weight: 600;
	font-size: 12px;
	line-height: 1.5;
	color: var(--font-dark);
	transition: .3s linear
}

.type-moto__link:hover span {
	color: var(--secondary)
}

.type-moto__img {
	height: 90px;
	padding: 10px;
	background: #f8f7f7;
	border-radius: 15px
}

.type-moto__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: darken
}

.car {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	position: relative;
	margin-bottom: 40px
}

.car--grid {
	display: grid;
	grid-template-columns: 645px 1fr;
	grid-template-rows: repeat(2, auto);
	gap: 20px
}

.car--grid .car__left {
	grid-area: 1/1/3/2;
	width: auto;
	margin: 0
}

.car--grid .car__right {
	grid-area: 1/2/2/3;
	width: auto;
	margin: 0
}

.car--grid .car__bottom {
	grid-area: 2/2/3/3;
	align-self: end
}

.car__left {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 7 - 20px)
}

.car__right {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 5 - 20px)
}

.car__title {
	margin: 0 0 50px;
	font-weight: 700;
	font-size: 45px;
	line-height: 1.3
}

.car__info {
	display: grid;
	grid-template-columns: 140px 1fr;
	column-gap: 30px;
	row-gap: 20px;
	margin-bottom: 50px
}

.car__info span {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.33
}

.car__info span:nth-child(even) {
	font-weight: 600
}

.car__price {
	margin: 0 0 50px;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.3
}

.car .btn {
	width: 410px;
	height: 75px;
	padding: 0;
	font-size: 18px
}

.car-gallery {
	border-radius: 0px;
	overflow: hidden;
	padding: 50px 40px;
	background: #fff
}

.car-gallery .item {
	display: flex;
	align-items: center;
	justify-content: center;
	display: flex !important;
	height: 385px;
	padding: 0 10px
}

.car-gallery .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px
}

.car-gallery .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: 0 0;
	cursor: pointer;
	transition: .3s linear
}

.car-gallery .slick-arrow:hover {
	border-color: var(--font-dark)
}

.car-gallery .slick-arrow svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: var(--font-dark)
}

.car-gallery .slick-arrow.prev {
	left: 10px
}

.car-gallery .slick-arrow.next {
	right: 10px
}

.car-gallery .slick-arrow.next svg {
	transform: rotate(180deg)
}

.car-gallery .slick-dots {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 8px;
	position: absolute;
	z-index: 10;
	left: 0;
	right: 0;
	bottom: 30px
}

.car-gallery .slick-dots li {
	display: block
}

.car-gallery .slick-dots li button {
	display: block;
	width: 7px;
	height: 7px;
	padding: 0;
	border: none;
	border-radius: 4px;
	font-size: 0;
	background: rgba(206, 215, 217, .5);
	transition: .3s linear
}

.car-gallery .slick-dots li.slick-active button {
	width: 54px
}

.car-other__title {
	margin: 0 0 30px;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.3;
	color: var(--primary)
}

.car-other__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px
}

.car-other__item {
	display: flex;
	align-items: center;
	column-gap: 40px;
	padding: 30px;
	background: #fff;
	border-radius: 0px;
	border: 1px solid transparent;
	transition: .3s linear
}

.car-other__item:hover {
	border-color: var(--secondary)
}

.car-other__img {
	width: 132px;
	height: 77px;
	padding: 5px;
	border-radius: 20px;
	background-color: #fff;
	overflow: hidden
}

.car-other__img img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.car-other__desc {
	width: calc(100% - 172px)
}

.car-other__name {
	margin: 0 0 6px;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.3;
	color: var(--font-dark)
}

.car-other__info p {
	margin: 0 0 6px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	color: var(--font-dark)
}

.car-other__info p:last-child {
	margin-bottom: 0
}

.car-other--sm .car-other__title {
	margin-bottom: 20px;
	font-size: 20px
}

.car-other .car-other__grid {
	grid-template-columns: repeat(2, 1fr)
}

.card-video__title {
	margin: 20px 0 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5;
	color: var(--primary)
}

.card-video__img {
	position: relative;
	height: 446px;
	border-radius: 0px;
	overflow: hidden
}

.card-video__img img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.card-video__img::before {
	content: '';
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 80px;
	height: 80px;
	background: url(../img/icons/play.svg) center/contain no-repeat
}

.card-video__img::after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(1, 1, 1, .2);
	opacity: 0;
	transition: .3s linear
}

.card-video__img:hover::after {
	opacity: 1
}

.gnr-sets__years {
	margin: 0 0 50px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--primary)
}

.gnr-sets__section {
	margin-bottom: 50px
}

.gnr-sets__section:last-child {
	margin-bottom: 0
}

.gnr-sets__subtitle {
	margin: 0 0 20px;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.25;
	letter-spacing: .03em;
	color: var(--primary)
}

.sets-carousel {
	margin-left: -10px;
	margin-right: 145px;
	margin-bottom: 20px
}

.sets-carousel .slick-track {
	margin-left: 0
}

.sets-carousel .item {
	padding: 0 10px
}

.sets-carousel .item a {
	display: block
}

.sets-carousel .item img {
	width: 100%;
	height: 152px;
	border-radius: 0px;
	object-fit: cover
}

.sets-carousel .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	bottom: 0;
	width: 50px;
	height: 50px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid #ced7d9;
	background: 0 0;
	cursor: pointer;
	transition: .3s linear
}

.sets-carousel .slick-arrow svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: var(--primary);
	transition: .3s linear
}

.sets-carousel .slick-arrow.prev {
	right: -60px
}

.sets-carousel .slick-arrow.next {
	right: -130px;
	transform: rotate(180deg)
}

.sets-carousel .slick-arrow:hover {
	border-color: var(--primary)
}

.sets-table {
	scrollbar-width: thin;
	scrollbar-color: var(--secondary) #e2e8ed
}

.sets-table::-webkit-scrollbar {
	width: 3px;
	height: 3px
}

.sets-table::-webkit-scrollbar-track {
	background: #e2e8ed
}

.sets-table::-webkit-scrollbar-thumb {
	background-color: var(--secondary);
	border-radius: 0;
	border: none
}

.sets-table table {
	width: 100%;
	border-collapse: collapse
}

.sets-table table th {
	text-align: left;
	padding: 0 10px 14px 2px;
	border-bottom: 1px solid #ced7d9;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.25;
	color: var(--primary);
	white-space: nowrap
}

.sets-table table th:first-child {
	padding-left: 0
}

.sets-table table td {
	vertical-align: top;
	padding: 14px 10px 14px 2px;
	border-bottom: 1px solid #ced7d9;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.25;
	color: var(--primary);
	white-space: nowrap
}

.sets-table table td:first-child {
	padding-left: 0;
	font-weight: 600;
	color: var(--secondary);
	text-transform: uppercase
}

.sets-table table td:last-child {
	padding-right: 0;
	padding-left: 20px
}

.sets-table table td:last-child a {
	display: block;
	width: 20px;
	height: 20px;
	margin-left: 50px
}

.sets-table table td:last-child a svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: var(--secondary);
	transition: .3s linear
}

.selection {
	display: grid;
	grid-template-columns: 100%;
	row-gap: 40px
}

.selection__title {
	margin: 0 0 30px;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.5;
	color: var(--primary)
}

.selection__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: stretch
}

.selection__grid--three {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px
}

.selection__radio {
	height: 100%
}

.selection__radio label {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	row-gap: 20px;
	height: 100%;
	position: relative;
	padding: 30px 30px 30px 100px;
	background: #fff;
	border-radius: 0px;
	border: 1px solid transparent;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.3;
	color: var(--font-dark);
	cursor: pointer
}

.selection__radio label::before {
	content: '';
	position: absolute;
	top: 30px;
	left: 30px;
	width: 40px;
	height: 40px;
	border: 1px solid var(--border);
	border-radius: 50%
}

.selection__radio input {
	display: none
}

.selection__radio input:checked+label {
	border-color: var(--secondary)
}

.selection__radio input:checked+label::before {
	background-color: var(--secondary);
	background-image: url(../img/icons/checkmark-outline.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px;
	border-color: var(--secondary)
}

.selection__radio--lg label {
	padding-left: 106px;
	font-size: 24px
}

.selection__radio--lg label::before {
	width: 46px;
	height: 46px
}

.selection__radio--lg input:checked+label::before {
	background-size: 26px
}

.calc-nav {
	display: flex;
	column-gap: 20px;
	overflow-x: auto
}

.calc-nav .btn-border {
	flex: none;
	padding: 24px 30px;
	font-size: 16px
}

.calc-nav .btn-border.current {
	background: var(--secondary);
	color: #fff
}

.calc-desc {
	max-width: 665px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--primary)
}

.calc-desc p {
	margin: 0 0 20px
}

.calc-desc p.strong {
	margin-bottom: 0;
	font-weight: 600
}

.calc-desc ol {
	margin: 0 0 20px;
	padding-left: 20px
}

.calc-desc a {
	color: var(--secondary);
	font-weight: 600;
	transition: .3s linear
}

.calc-desc a:hover {
	opacity: .5
}

.blog__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	row-gap: 20px;
	margin-bottom: 50px
}

.blog__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px;
	row-gap: 40px;
	margin-bottom: 80px
}

.blog__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center
}

.blog__info {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: var(--gray)
}

.blog__info span {
	margin-left: 10px
}

.blog-nav {
	display: flex;
	flex-wrap: wrap;
	flex-wrap: nowrap;
	column-gap: 20px;
	overflow-x: auto
}

.blog-nav__btn {
	flex: none;
	display: block;
	padding: 14px 24px;
	border: 1px solid #ced7d9;
	border-radius: 40px;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--gray);
	transition: .3s linear
}

.blog-nav__btn:hover {
	color: var(--secondary);
	border-color: var(--secondary)
}

.blog-nav__btn.active {
	border-color: var(--secondary);
	background: var(--secondary);
	color: #fff
}

.search {
	display: flex;
	flex-wrap: wrap;
	width: 415px;
	height: 60px;
	border: 1px solid #ced7d9;
	border-radius: 10px
}

.search button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	border: none;
	border-radius: 10px;
	background: 0 0;
	cursor: pointer
}

.search button svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: var(--gray);
	transition: .3s linear
}

.search button:hover svg {
	stroke: var(--secondary)
}

.search input {
	width: calc(100% - 60px);
	padding: 0 20px;
	border: none;
	border-radius: 10px;
	font-weight: 400;
	font-size: 16px;
	color: var(--gray);
	background-color: transparent
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 40px
}

.pagination__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px
}

.pagination__arr {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border: 1px solid #ced7d9;
	border-radius: 50%;
	transition: .3s linear
}

.pagination__arr svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: var(--primary)
}

.pagination__arr:nth-child(2) svg {
	transform: rotate(180deg)
}

.pagination__arr:hover {
	border-color: var(--primary)
}

.pagination__list {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px
}

.pagination__link {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--gray);
	transition: .3s linear
}

.pagination__link:hover {
	color: var(--secondary)
}

.pagination__link.current {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--secondary);
	border-radius: 50%;
	color: var(--secondary)
}

.preview-row {
	display: grid;
	grid-template-columns: 355px 1fr;
	column-gap: 40px;
	border: 1px solid transparent;
	border-radius: 0px;
	transition: .3s linear
}

.preview-row:hover {
	border-color: var(--gray)
}

.preview-row__img {
	height: 310px;
	border-radius: 0px;
	overflow: hidden
}

.preview-row__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.preview-row__right {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px 30px 30px 0
}

.preview-row__title {
	margin: 0 0 20px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5;
	color: var(--primary)
}

.preview-row__title span {
	display: inline-block;
	margin-left: 15px;
	font-weight: 400;
	font-size: 12px;
	color: var(--gray)
}

.preview-row__title span svg {
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	margin-left: 4px;
	margin-bottom: 2px;
	fill: var(--gray)
}

.preview-row__time {
	margin: 0 0 16px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray)
}

.preview-row__date {
	display: inline-block;
	margin-bottom: 16px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray)
}

.preview-row__cat {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	background: rgba(206, 215, 217, .3);
	border-radius: 40px;
	margin-top: auto;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	color: var(--primary)
}

.map {
	width: 100%;
	height: 100%;
	border-radius: 0px;
	overflow: hidden
}

.contacts {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 20px
}

.contacts__item {
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px
}

.contacts__icon {
	width: 30px;
	height: 30px;
	margin-top: 8px
}

.contacts__icon svg {
	width: 100%;
	height: 100%;
	fill: var(--secondary)
}

.contacts__icon--green svg {
	fill: var(--green)
}

.contacts__icon--blue svg {
	fill: #4eb4ff
}

.contacts__text {
	width: calc(100% - 40px)
}

.contacts__text a {
	font-weight: 600;
	font-size: 32px;
	line-height: 1.4;
	color: var(--primary);
	transition: .3s linear
}

.contacts__text a:hover {
	color: var(--gray)
}

.contacts__text address {
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.4;
	color: var(--primary)
}

.contacts__title {
	margin: 0 0 10px;
	font-weight: 600;
	font-size: 32px;
	line-height: 1.4;
	color: var(--primary)
}

.team {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px
}

.team__item {
	padding: 60px;
	background: #fff;
	border-radius: 0px;
	border: 1px solid transparent;
	transition: .3s linear
}

.team__item:hover {
	border-color: var(--border)
}

.team__member {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 20px;
	flex-wrap: nowrap;
	margin-bottom: 20px
}

.team__img {
	flex: none;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	overflow: hidden
}

.team__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.team__name p {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	color: var(--font-dark)
}

.team__name p:first-child {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 18px
}

.team__tel {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 10px
}

.team__tel svg {
	width: 30px;
	height: 30px;
	fill: var(--secondary)
}

.team__tel a {
	font-weight: 600;
	font-size: 32px;
	line-height: 1.3;
	color: var(--font-dark);
	transition: .3s linear
}

.team__tel a:hover {
	color: var(--font-gray)
}

.requis {
	display: grid;
	grid-template-columns: 1fr 243px;
	grid-template-rows: repeat(2, auto);
	grid-column-gap: 45px;
	grid-row-gap: 40px
}

.requis__title {
	grid-area: 1/1/2/2;
	margin: 0;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3
}

.requis__list {
	margin: 0;
	padding: 0;
	list-style: none;
	grid-area: 2/1/3/2;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5
}

.requis__list li {
	margin-bottom: 4px
}

.requis__list li:last-child {
	margin-bottom: 0
}

.requis__load {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	grid-area: 2/2/3/3;
	align-self: start;
	padding: 30px;
	background: #fff;
	border: 1px solid transparent;
	border-radius: 0px;
	transition: .3s linear
}

.requis__load:hover {
	border-color: var(--border)
}

.requis__load img {
	width: 60px;
	height: 60px;
	margin-bottom: 20px
}

.requis__load p {
	margin: 0 0 8px;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	color: var(--font-dark)
}

.requis__load span {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--font-dark)
}

.calc-wrap {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 40px;
	height: 100%
}

.calc-wrap__footer {
	margin-top: auto;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5
}

.calc-wrap__footer p {
	margin: 0
}

.calc {
	display: grid;
	grid-template-columns: repeat(2, 258px);
	gap: 30px
}

.calc .btn {
	height: 75px;
	margin-top: 10px;
	font-size: 18px
}

.calc .form-checkbox {
	margin-top: 50px
}

.calc-radio {
	display: inline-flex;
	margin-bottom: 40px;
	border-bottom: 1px solid #ced7d9
}

.calc-radio__item {
	position: relative;
	top: 2px
}

.calc-radio__item label {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 40px 12px;
	border-bottom: 3px solid transparent;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.5;
	color: var(--primary);
	cursor: pointer;
	transition: .3s linear
}

.calc-radio__item label:hover {
	color: var(--secondary)
}

.calc-radio__item input {
	display: none
}

.calc-radio__item input:checked+label {
	border-bottom-color: var(--secondary)
}

.calc-table {
	margin: 40px 0 0
}

.calc-table__wrap {
	display: grid;
	grid-template-columns: 100%;
	row-gap: 24px;
	max-width: 520px
}

.calc-table__header {
	display: grid;
	grid-template-columns: 55% 22.5% 22.5%;
	padding-bottom: 12px;
	border-bottom: 1px solid #ced7d9
}

.calc-table__header span {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5
}

.calc-table__item {
	display: grid;
	grid-template-columns: 55% 22.5% 22.5%;
	padding: 12px 0;
	border-bottom: 1px solid #ced7d9
}

.calc-table__item span {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5
}

.calc-table__item span:first-child {
	padding-right: 10px
}

.calc-table__footer {
	display: grid;
	grid-template-columns: 77.5% 22.5%
}

.calc-table__footer span {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5
}

.calc-table__disclaimer {
	margin-top: 40px
}

.calc-table__disclaimer p {
	margin: 0 0 20px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5
}

.calc-table__disclaimer p:last-child {
	margin-bottom: 0
}

.share-btn {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-left: 20px
}

.share-btn svg {
	width: 100%;
	height: 100%;
	fill: var(--gray);
	transition: .3s linear
}

.share-btn:hover svg {
	fill: var(--secondary)
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px
}

.article-meta__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 10px
}

.article-meta__item svg {
	width: 20px;
	height: 20px;
	fill: var(--secondary)
}

.article-meta__item span {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5
}

.article {
	max-width: 1080px
}

.article ol {
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
	counter-reset: num;
	max-width: 1080px
}

.article ol .sm-block9 {
	margin-bottom: 15px
}

.article ol li {
	position: relative;
	padding-left: 44px;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-bottom: 14px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5
}

.article ol li:last-child {
	margin-bottom: 0
}

.article ol li::before {
	content: counter(num);
	counter-increment: num;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid var(--secondary);
	border-radius: 50%;
	color: var(--secondary)
}

.article ul {
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
	max-width: 1080px
}

.article ul li {
	position: relative;
	margin-bottom: 20px;
	padding-left: 28px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5
}

.article ul li:last-child {
	margin-bottom: 0
}

.article ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--secondary)
}

.article p {
	margin: 0 0 30px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5
}

.article p a {
	color: var(--secondary);
	text-decoration: underline
}

.article p.italic {
	font-style: italic
}

.article ol:last-child,
.article p:last-child,
.article ul:last-child {
	margin-bottom: 0
}

.article div {
	margin-bottom: 70px
}

.article div:last-child {
	margin-bottom: 0
}

.article h2 {
	margin: 0 0 40px;
	font-weight: 700;
	font-size: 45px;
	line-height: 1.3
}

.article img {
	display: block;
	width: 100%;
	border-radius: 0px;
	margin-bottom: 20px
}

.article figcaption {
	margin: 0;
	padding: 20px 0 0;
	font-style: italic;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--font-gray);
	text-align: center
}

.article .row {
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px
}

.article .col {
	width: calc(50% - 20px)
}

.article__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	row-gap: 30px;
	margin-top: 70px;
	padding-top: 40px;
	border-top: 1px solid var(--border)
}

.article__author {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 16px;
	margin-bottom: 0 !important
}

.article__author img {
	display: block;
	width: 70px;
	height: 70px;
	margin-bottom: 0 !important;
	border-radius: 50%;
	object-fit: cover
}

.article__author div {
	width: calc(100% - 86px);
	max-width: 208px
}

.article__author div span {
	display: block;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	color: var(--gray)
}

.article__author div span:first-child {
	margin-bottom: 6px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
	color: var(--primary)
}

.share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 30px
}

.share__label {
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3
}

.share__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 10px
}

.share__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--secondary);
	border-radius: 50%;
	background-color: transparent;
	transition: .3s linear
}

.share__link svg {
	width: 20px;
	height: 20px;
	fill: var(--secondary);
	transition: .3s linear
}

.share__link:hover {
	background-color: var(--secondary)
}

.share__link:hover svg {
	fill: #fff
}

.account {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, auto);
	gap: 20px
}

.account__area {
	background: var(--bg-box);
	padding: 80px 60px;
	border-radius: 0px
}

.account__area:first-child {
	grid-area: 1/1/2/4;
	padding: 70px 60px
}

.account__area:nth-child(2) {
	grid-area: 2/1/3/2
}

.account__area:nth-child(3) {
	grid-area: 2/2/3/3
}

.account__area:nth-child(4) {
	grid-area: 2/3/3/4
}

.account__title {
	margin: 0 0 40px;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3
}

.account__link {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px
}

.account__link span {
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3;
	color: var(--primary);
	transition: .3s linear
}

.account__link svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: var(--primary)
}

.account__link:hover span {
	color: var(--secondary)
}

.account__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 100px;
	row-gap: 30px
}

.account__wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	row-gap: 20px;
	width: 935px;
	padding: 40px 50px;
	background: #fff;
	border-radius: 30px
}

.account__wrap .btn {
	width: 311px;
	height: 75px;
	font-size: 18px
}

.top-account {
	position: absolute;
	z-index: 1000;
	right: 0;
	top: calc(100% + 20px);
	display: none;
	width: 224px;
	padding: 20px;
	background: #fff;
	border: 1px solid #ced7d9;
	border-radius: 20px
}

.top-account__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 15px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(206, 215, 217, .5)
}

.top-account__footer {
	margin-top: 20px;
	padding-top: 10px;
	border-top: 1px solid rgba(206, 215, 217, .5)
}

.top-account__exit {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 6px
}

.top-account__exit span {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray);
	transition: .3s linear
}

.top-account__exit svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--gray);
	transition: .3s linear
}

.top-account__exit:hover span {
	color: var(--secondary)
}

.top-account__exit:hover svg {
	stroke: var(--secondary)
}

.top-account__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background: #fff;
	border: 1px solid var(--secondary);
	border-radius: 30px;
	transition: .3s linear
}

.top-account__icon svg {
	width: 15px;
	height: 15px;
	fill: var(--secondary);
	transition: .3s linear
}

.top-account__icon:hover {
	background: var(--secondary)
}

.top-account__icon:hover svg {
	fill: #fff
}

.top-account__tel {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: var(--primary);
	transition: .3s linear
}

.top-account__tel:hover {
	color: var(--secondary)
}

.top-account__nav {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 20px
}

.top-account__link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 6px
}

.top-account__link svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--primary);
	transition: .3s linear
}

.top-account__link span {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--primary);
	transition: .3s linear
}

.top-account__link:hover span {
	color: var(--secondary)
}

.top-account__link:hover svg {
	stroke: var(--secondary)
}

.acc-user {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 30px
}

.acc-user__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	border: 2px solid var(--secondary);
	border-radius: 50%
}

.acc-user__icon svg {
	width: 30px;
	height: 30px;
	fill: var(--secondary)
}

.acc-user__name {
	margin: 0 0 12px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3;
	color: var(--font-dark)
}

.acc-user__tel {
	margin: 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	color: var(--font-dark)
}

.add-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
	width: 302px;
	height: 78px;
	border: 1px solid var(--secondary);
	border-radius: 10px;
	font-weight: 400;
	font-size: 18px;
	color: var(--secondary);
	transition: .3s linear
}

.add-btn__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--secondary);
	transition: .3s linear
}

.add-btn__icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #fff;
	transition: .3s linear
}

.add-btn:hover {
	background: var(--secondary);
	color: #fff
}

.add-btn:hover .add-btn__icon {
	background: #fff
}

.add-btn:hover .add-btn__icon svg {
	stroke: var(--secondary)
}

.comparison {
	margin: 0 -60px;
	padding: 0 60px 10px;
	overflow-x: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--secondary) #ced7d9
}

.comparison::-webkit-scrollbar {
	width: 3px;
	height: 3px
}

.comparison::-webkit-scrollbar-track {
	background: #e2e8ed
}

.comparison::-webkit-scrollbar-thumb {
	background-color: var(--secondary);
	border-radius: 0;
	border: none
}

.comparison__row {
	display: flex
}

.comparison__row:last-child .comparison__col {
	border-bottom: 1px solid #ced7d9
}

.comparison__col {
	flex-shrink: 1;
	width: 289px;
	min-width: 289px;
	padding-right: 20px
}

.comparison__col:first-child {
	width: 375px;
	min-width: 375px
}

.comparison__header {
	position: relative;
	padding-bottom: 24px
}

.comparison__img {
	height: 169px;
	margin-bottom: 20px;
	background: #fff;
	border-radius: 30px;
	overflow: hidden
}

.comparison__img img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.comparison__del {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 22px;
	height: 22px
}

.comparison__del svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: #ced7d9;
	transition: .3s linear
}

.comparison__del:hover svg {
	stroke: var(--secondary)
}

.comparison__name {
	margin: 0 0 15px;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.25;
	letter-spacing: .03em;
	text-transform: uppercase
}

.comparison__year {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.25
}

.comparison__section {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 30px
}

.comparison__section:last-child {
	margin-bottom: 0
}

.comparison__section.open .comparison__title svg {
	transform: rotateX(180deg)
}

.comparison__section.open .comparison__table {
	display: block
}

.comparison__title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	cursor: pointer
}

.comparison__title span {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.25
}

.comparison__title svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: var(--primary);
	transition: .3s linear
}

.comparison__table {
	display: none;
	padding-top: 14px
}

.comparison__item .comparison__col {
	padding: 14px 0;
	border-top: 1px solid #ced7d9
}

.comparison__item .comparison__col span {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.25;
	color: var(--primary)
}

.comparison__item .comparison__col span img {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	object-fit: cover
}

.comparison__item .comparison__col:first-child span {
	color: var(--gray)
}

.comparison__legend {
	flex-wrap: wrap;
	row-gap: 14px;
	column-gap: 22px;
	padding: 14px 0;
	border-top: 1px solid #ced7d9
}

.comparison__legend span {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 5px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.25
}

.comparison__legend span img {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	object-fit: cover
}

.contract {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 30px
}

.contract__col {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 40px;
	width: 700px
}

.contract__section {
	display: flex;
	flex-wrap: wrap;
	column-gap: 14px
}

.contract__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid var(--secondary);
	border-radius: 50%;
	font-weight: 400;
	font-size: 14px;
	color: var(--secondary)
}

.contract__text {
	width: calc(100% - 44px)
}

.contract__text ul {
	margin: 0 0 30px;
	padding: 0;
	list-style: none
}

.contract__text ul li {
	position: relative;
	margin-bottom: 16px;
	padding-left: 28px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5
}

.contract__text ul li:last-child {
	margin-bottom: 0
}

.contract__text ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--secondary)
}

.contract__text ul:last-child {
	margin-bottom: 0
}

.contract__text p {
	margin: 0 0 25px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5
}

.contract__text p:last-child {
	margin-bottom: 0
}

.contract__text .btn {
	width: 238px;
	height: 62px;
	font-size: 16px
}

.contract__title {
	margin: 2px 0 20px;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.5;
	color: var(--primary)
}

.contract__addr {
	display: flex;
	flex-wrap: wrap;
	column-gap: 8px;
	margin-bottom: 16px
}

.contract__addr svg {
	width: 20px;
	height: 20px;
	fill: var(--secondary)
}

.contract__addr p {
	width: calc(100% - 28px)
}

.contract__time {
	display: flex;
	flex-wrap: wrap;
	column-gap: 8px;
	margin-bottom: 30px
}

.contract__time svg {
	width: 20px;
	height: 20px;
	fill: var(--secondary)
}

.contract__time p {
	width: calc(100% - 28px)
}

.contract__load {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
	width: 500px;
	height: 212px;
	background: #fff;
	border: 1px solid transparent;
	border-radius: 0px;
	transition: .3s linear
}

.contract__load img {
	width: 80px;
	height: 80px
}

.contract__load div p {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--font-dark)
}

.contract__load div p:first-child {
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 18px
}

.contract__load:hover {
	border-color: var(--border)
}

.sets-catalog {
	display: grid;
	grid-template-columns: 100%;
	row-gap: 60px
}

.sets-catalog__title {
	margin: 0 0 40px;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3
}

.sets-catalog__nav {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 20px
}

.sets-catalog__link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-wrap: nowrap;
	padding: 25px;
	gap: 20px;
	background: #fff;
	border: 1px solid transparent;
	border-radius: 20px;
	transition: .3s linear
}

.sets-catalog__link span {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--font-dark)
}

.sets-catalog__link:hover {
	border-color: var(--secondary)
}

.sets-catalog__icon {
	flex: none;
	width: 40px;
	height: 40px
}

.sets-catalog__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain
}

.contract-nav {
	display: flex;
	column-gap: 40px;
	overflow-x: auto;
	margin-bottom: 50px;
	scrollbar-width: none
}

.contract-nav::-webkit-scrollbar {
	display: none
}

.contract-nav__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 20px;
	flex: none;
	flex-wrap: nowrap;
	font-weight: 400;
	font-size: 16px;
	color: var(--primary)
}

.contract-nav__item span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--font-gray);
	font-weight: 600;
	font-size: 14px;
	color: #fff
}

.contract-nav__item::after {
	content: '';
	width: 187px;
	height: 2px;
	margin-left: 20px;
	background: #ced7d9;
	border-radius: 2px
}

.contract-nav__item:last-child::after {
	display: none
}

.contract-nav__item.current {
	color: var(--primary);
	font-weight: 600
}

.contract-nav__item.current span {
	background: var(--secondary)
}

.entry {
	display: grid;
	grid-template-columns: 1048px;
	row-gap: 80px
}

.entry__title {
	margin: 0 0 40px;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3
}

.entry .btn {
	display: inline-flex;
	width: 294px;
	height: 76px;
	font-size: 18px
}

.entry .btn svg {
	width: 20px;
	height: 20px;
	margin-left: 10px;
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	transition: .3s linear
}

.entry .btn svg.arr {
	transform: rotate(135deg)
}

.entry .btn:hover svg {
	stroke: var(--secondary)
}

.entry .btn-border {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 343px;
	height: 76px;
	font-size: 18px
}

.entry__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px
}

.entry__row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	row-gap: 25px
}

.entry__row .form-group {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px
}

.entry__row .form-group:first-child,
.entry__row .form-group:nth-child(2) {
	width: calc(100% / 12 * 6 - 20px)
}

.entry__row .form-group:nth-child(3),
.entry__row .form-group:nth-child(4),
.entry__row .form-group:nth-child(5),
.entry__row .form-group:nth-child(6) {
	width: calc(100% / 12 * 3 - 20px)
}

.entry__row .form-group:nth-child(7) {
	width: calc(100% / 12 * 9 - 20px)
}

.entry__row .form-group:nth-child(8) {
	width: calc(100% / 12 * 3 - 20px)
}

.entry__flex {
	display: flex;
	flex-wrap: wrap;
	gap: 20px
}

.model-range {
	display: grid;
	grid-template-columns: 100%;
	row-gap: 60px
}

.model-range__title {
	margin: 0 0 40px;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3
}

.model-range__row {
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
	row-gap: 20px
}

.model-range__link {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.3;
	color: var(--primary);
	transition: .3s linear
}

.model-range__link span {
	margin-left: 5px;
	color: var(--gray)
}

.model-range__link:hover {
	color: var(--secondary)
}

.set {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px
}

.set .comparison__section {
	display: block
}

.set .comparison__row.comparison__item .comparison__col {
	width: 50%;
	min-width: 1px;
	padding-right: 50px
}

.tracking {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 50px
}

.tracking input {
	width: 500px;
	height: 64px;
	padding: 0 20px;
	border: 1px solid #ced7d9;
	border-radius: 10px;
	background: #fff;
	font-family: Montserrat;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	color: var(--primary)
}

.tracking input:focus {
	border-color: var(--primary)
}

.tracking .btn {
	width: 238px;
	height: 64px;
	font-size: 16px
}

.track-auto {
	margin-bottom: 100px
}

.track-auto__title {
	margin: 0 0 40px;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3
}

.track-auto__title .rating {
	display: inline-flex;
	vertical-align: middle;
	margin-left: 20px
}

.track-auto__info {
	display: flex;
	flex-wrap: wrap;
	column-gap: 100px;
	padding: 50px;
	background: #fff;
	border-radius: 0px
}

.track-auto__item {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column
}

.track-auto__item span {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--font-gray)
}

.track-auto__item span:nth-child(2) {
	font-size: 16px;
	color: var(--font-dark)
}

.rating {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 3px;
	width: 49px;
	height: 26px;
	background: #fff;
	border: 1px solid var(--secondary);
	border-radius: 20px
}

.rating svg {
	width: 12px;
	height: 12px;
	margin-bottom: 1px;
	fill: var(--secondary)
}

.rating span {
	font-weight: 600;
	font-size: 12px;
	line-height: 1;
	color: var(--secondary)
}

.track-status__title {
	margin: 0 0 40px;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3
}

.track-status__item {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	position: relative;
	min-height: 180px;
	margin-bottom: 20px
}

.track-status__item::before {
	content: '';
	position: absolute;
	top: 50px;
	bottom: 0;
	left: 14px;
	width: 2px;
	background: var(--border);
	border-radius: 2px
}

.track-status__item:last-child {
	min-height: 1px;
	margin-bottom: 0
}

.track-status__item:last-child::before {
	display: none
}

.track-status__item.active .track-status__num {
	background: var(--secondary)
}

.track-status__item.active .track-status__desc p {
	color: var(--primary)
}

.track-status__item.active .track-status__desc p:nth-child(2) {
	margin-top: 20px;
	font-weight: 400;
	line-height: 1.5
}

.track-status__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--font-gray);
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	color: #fff
}

.track-status__desc {
	width: calc(100% - 50px)
}

.track-status__desc p {
	margin: 4px 0 0;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: var(--font-gray)
}

.first-form {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%
}

.first-form__title {
	max-width: 583px;
	margin: 0 0 40px;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3;
	color: var(--primary);
	text-align: center
}

.first-form__title span {
	color: var(--secondary)
}

.first-form form {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 20px;
	width: 408px
}

.first-form form .btn {
	height: 75px;
	font-size: 18px
}

.first-carousel {
	width: 850px
}

.first-carousel .item {
	display: flex;
	align-items: center;
	justify-content: center;
	display: flex !important;
	height: 822px;
	border-radius: 70px;
	overflow: hidden
}

.first-carousel .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.first-carousel .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	bottom: 30px;
	width: 60px;
	height: 60px;
	padding: 0;
	border: 1px solid #ced7d9;
	border-radius: 50%;
	background: 0 0;
	cursor: pointer;
	transition: .3s linear
}

.first-carousel .slick-arrow:hover {
	border-color: var(--secondary)
}

.first-carousel .slick-arrow svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: #ced7d9
}

.first-carousel .slick-arrow.prev {
	right: 120px
}

.first-carousel .slick-arrow.next {
	right: 40px
}

.first-carousel .slick-arrow.next svg {
	transform: rotate(180deg)
}

.first-carousel .slick-dots {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 8px;
	position: absolute;
	z-index: 10;
	left: 0;
	right: 0;
	bottom: 56px
}

.first-carousel .slick-dots li {
	display: block
}

.first-carousel .slick-dots li button {
	display: block;
	width: 7px;
	height: 7px;
	padding: 0;
	border: none;
	border-radius: 4px;
	font-size: 0;
	background: rgba(206, 215, 217, .5);
	transition: .3s linear
}

.first-carousel .slick-dots li.slick-active button {
	width: 14px;
	background: #fff
}

.review-card {
	border-radius: 30px
}

.review-card__img {
	position: relative;
	display: block;
	height: 446px;
	margin-bottom: 20px;
	border-radius: 30px;
	overflow: hidden
}

.review-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.review-card__img::after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(1, 1, 1, .2);
	opacity: 0;
	transition: .3s linear
}

.review-card__img:hover::after {
	opacity: 1
}

.review-card__img--video {
	height: auto !important;
	aspect-ratio: 1.7778;
	background-position: 50% 50%;
    background-size: 120% auto;
}

.review-card__img--video::before {
	content: '';
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 80px;
	height: 80px;
	background: url(../img/icons/play.svg) center/contain no-repeat
}

.review-card__info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center
}

.review-card__label {
	display: block;
	padding: 12px 16px;
	border-radius: 10px;
	background: rgba(206, 215, 217, .3);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	color: var(--primary)
}

.review-card__author {
	display: flex;
	flex-wrap: wrap;
	column-gap: 15px
}

.review-card__author img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover
}

.review-card__name {
	margin: 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5
}

.review-card__name span {
	display: block;
	font-weight: 400;
	font-size: 14px
}

.review-card--text {
	padding: 55px 40px;
	border: 1px solid var(--border);
	background: #fff
}

.review-card--text .link span {
	font-size: 16px
}

.review-card__text {
	max-height: 124px;
	overflow: hidden;
	margin-bottom: 20px;
	padding-top: 20px;
	transition: .3s linear
}

.review-card__text.open {
	max-height: 1000px
}

.review-card__text p {
	margin: 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	color: var(--primary)
}

.review-card__thumbs {
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px;
	margin-top: 30px;
	margin-bottom: 20px
}

.review-card__thumbs a {
	display: block;
	width: calc((100% - 20px)/ 3);
	height: 90px;
	overflow: hidden
}

.review-card__thumbs a img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.review-card__time {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--font-gray)
}

.social-two {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 205px 125px
}

.social-two__list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px
}

.social-two__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 86px;
	height: 86px;
	background: var(--secondary);
	border-radius: 50%;
	border: 1px solid var(--secondary);
	transition: .3s linear
}

.social-two__link svg {
	width: 40px;
	height: 40px;
	fill: #fff;
	transition: .3s linear
}

.social-two__link:hover {
	background: #fff
}

.social-two__link:hover svg {
	fill: var(--secondary)
}

.reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 20px;
	row-gap: 40px;
	margin-bottom: 80px
}

.reviews__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center
}

.reviews__footer .pagination {
	margin-left: auto
}

.reviews--four .reviews__grid {
	grid-template-columns: repeat(4, 1fr)
}

.card-row-carousel {
	width: 368px
}

.card-row-carousel .slick-list {
	height: 100%
}

.card-row-carousel .slick-track {
	display: flex;
	height: 100%
}

.card-row-carousel .slick-slide {
	display: block !important;
	float: none
}

.card-row-carousel .slick-slide>div {
	height: 100%
}

.card-row-carousel .item {
	display: block !important;
	height: 100%
}

.card-row-carousel .card-row__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.card-row-carousel .slick-dots {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 8px;
	position: absolute;
	z-index: 10;
	left: 0;
	right: 0;
	bottom: 20px
}

.card-row-carousel .slick-dots li {
	display: block
}

.card-row-carousel .slick-dots li button {
	display: block;
	width: 7px;
	height: 7px;
	padding: 0;
	border: none;
	border-radius: 4px;
	font-size: 0;
	background: rgba(206, 215, 217, .5);
	transition: .3s linear
}

.card-row-carousel .slick-dots li.slick-active button {
	width: 14px;
	background: #fff
}

.msgs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px
}

.msgs__item {
	position: relative
}

.msgs__wa {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(174, 179, 179, .3);
	border-radius: 50%;
	transition: .3s linear
}

.msgs__wa svg {
	width: 18px;
	height: 18px;
	fill: #3dbf00
}

.msgs__wa:hover {
	border-color: #3dbf00
}

.msgs__tg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding-right: 3px;
	border: 1px solid rgba(174, 179, 179, .3);
	border-radius: 50%;
	transition: .3s linear
}

.msgs__tg svg {
	width: 18px;
	height: 18px;
	fill: #259dd9
}

.msgs__tg:hover {
	border-color: #259dd9
}

.msgs__vk {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(174, 179, 179, .3);
	border-radius: 50%;
	transition: .3s linear
}

.msgs__vk svg {
	width: 14px;
	height: 14px;
	fill: #07f
}

.msgs__vk:hover {
	border-color: #07f
}

.nav__dropdown-toggle {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	border: none;
	background: 0 0;
	padding: 0 12px 0 0;
	column-gap: 4px;
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	color: var(--primary);
	cursor: pointer;
	transition: .3s linear
}

.nav__dropdown-toggle:hover {
	color: var(--secondary)
}

.nav__dropdown-toggle::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: url(../img/icons/chevron.svg) center/contain no-repeat;
	transition: .3s linear
}

.nav__dropdown-toggle.is-open {
	color: var(--secondary)
}

.nav__dropdown-toggle.is-open::after {
	transform: translateY(-50%) rotateX(180deg)
}

.nav__dropdown {
	margin: 18px 0 0;
	padding: 10px 20px;
	list-style: none;
	min-width: 144px;
	background: #fff;
	border: 1px solid #ced7d9;
	border-radius: 10px;
	visibility: visible !important;
	display: none
}

.nav__dropdown .menu__link,
.nav__dropdown .top-menu__link {
	display: block;
	padding: 5px 0;
	white-space: nowrap;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--font-dark);
	transition: .3s linear
}

.nav__dropdown .menu__link:hover,
.nav__dropdown .top-menu__link:hover {
	color: var(--secondary)
}

.main-carousel .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	padding: 0;
	border: 1px solid #fff;
	border-radius: 50%;
	background: rgba(0, 0, 0, .2);
	cursor: pointer;
	transition: .3s linear
}

.main-carousel .slick-arrow:hover {
	background: rgba(0, 0, 0, .3)
}

.main-carousel .slick-arrow svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: #fff
}

.main-carousel .slick-arrow.prev {
	left: -40px
}

.main-carousel .slick-arrow.next {
	right: -40px
}

.main-carousel .slick-arrow.next svg {
	transform: rotate(180deg)
}

.main-carousel .slick-dots {
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px
}

.main-carousel .slick-dots li {
	width: auto;
	height: auto
}

.main-carousel .slick-dots li button {
	font-size: 0;
	width: 15px;
	height: 15px;
	background: #e5e5e5;
	border-radius: 15px;
	border: none;
	cursor: pointer;
	transition: .3s linear
}

.main-carousel .slick-dots li button:hover,
.main-carousel .slick-dots li.slick-active button {
	background: var(--secondary)
}

.toggle-theme {
	display: block;
	width: 20px;
	height: 20px
}

.toggle-theme svg {
	width: 100%;
	height: 100%;
	fill: var(--primary);
	transition: .3s linear
}

.toggle-theme:hover svg {
	fill: var(--secondary)
}

.dark {
	--primary: #ffffff;
	--font-dark: #ffffff;
	--font-gray: #CED7D9;
	--bg-box: #2E3138;
	--bg-card: var(--bg-dark);
	--border: #798383;
	background: var(--bg-dark)
}

.dark .navbar {
	background: var(--bg-dark)
}

.dark .top__wrap {
	border-bottom-color: rgba(206, 215, 217, .1)
}

.dark .top-menu__link:hover {
	color: var(--primary)
}

.dark .top-menu .toggle .top-menu__link:hover svg {
	fill: var(--primary)
}

.dark .t-social__link {
	border-color: var(--border)
}

.dark .t-social__link svg {
	fill: var(--border)
}

.dark .t-social__link:hover {
	border-color: var(--secondary)
}

.dark .t-social__link:hover svg {
	fill: var(--secondary)
}

.dark .more-dropdown {
	background: var(--bg-box-dark);
	border: 1px solid rgba(121, 131, 131, .2)
}

.dark .dropdown {
	background: var(--bg-box-dark)
}

.dark .form-group label {
	color: #ced7d9
}

.dark .card-sm__img {
	background: #d9d9d9
}

.dark .hits__select {
	border-color: transparent
}

.dark .scheme__step {
	background: #222222
}

.dark .card-stock {
	border-color: transparent
}

.dark .card-row__car,
.dark .card-row__info {
	border-color: rgba(206, 215, 217, .2)
}

.dark .faq__item,
.dark .mobile-menu {
	background: var(--bg-dark)
}

.dark .modal__inner {
	background: var(--bg-box)
}

.dark .looking__item {
    background: var(--bg-card);
    color: var(--primary);
}

.dark .looking__item a {
	color: var(--primary);
}

.dark .looking__del svg {
	stroke: #282f2f
}

.dark .filter-group {
	background: var(--bg-dark)
}

.dark .form-group input:placeholder-shown {
	background: var(--bg-dark)
}

.dark .form-group input::placeholder {
	background: var(--bg-dark)
}

.dark .card-moto,
.dark .specifs {
	background: var(--bg-dark)
}

.dark .gallery__carousel .slick-arrow svg {
	stroke: #fff
}

.dark .car-gallery .slick-arrow svg {
	stroke: #282f2f
}

.dark .car-gallery .slick-arrow:hover {
	border-color: #282f2f
}

.dark .car-other__item,
.dark .selection__radio label {
	background: var(--bg-dark)
}

.dark .team__item {
	background: var(--bg-box)
}

.dark .account__wrap,
.dark .contract__load,
.dark .form-group input,
.dark .requis__load {
	background: var(--bg-dark)
}

.dark ::-webkit-calendar-picker-indicator {
	filter: invert(1)
}

.dark .select2-selection__choice__display {
	color: #282f2f
}

.dark .form-group textarea,
.dark .review-card--text,
.dark .select2-container--default .select2-selection--multiple,
.dark .select2-container--default .select2-selection--single,
.dark .sets-catalog__link,
.dark .track-auto__info {
	background: var(--bg-dark)
}

.dark .video-card__date {
	background: var(--bg-box)
}

.dark .nav__dropdown {
	background: var(--bg-box-dark);
	border-color: rgba(121, 131, 131, .2)
}

.dark .hero .filter {
	background: rgba(41, 41, 41, .7)
}

.dark .hero--full .filter {
	background: var(--bg-box)
}

.dark .header--hfull .navbar {
	background-color: transparent
}

.dark .header--hfull .navbar.fixed {
	background-color: var(--bg-dark)
}

.dark .header--hfull .t-social__link {
	border-color: #fff
}

.dark .header--hfull .t-social__link svg {
	fill: #fff
}

.dark .header--hfull .t-social__link:hover {
	border-color: rgba(255, 255, 255, .6)
}

.dark .header--hfull .t-social__link:hover svg {
	fill: rgba(255, 255, 255, .6)
}

.hero {
	position: relative;
	width: 100%;
	padding: 100px 100px 40px;
	background: var(--bg-box);
	border-radius: 0px;
	overflow: hidden
}

.hero__img {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.hero__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.hero__header {
	position: relative;
	z-index: 10
}

.hero__title {
	margin: 0 0 40px;
	font-weight: 700;
	font-size: 60px;
	line-height: 1.15;
	color: #fff
}

.hero__text {
	max-width: 475px;
	margin: 0 0 100px;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.5;
	color: #fff
}

.hero__text strong {
	font-weight: 700
}

.hero .filter {
	position: relative;
	z-index: 10;
	margin-bottom: 0
}

.hero--full {
	margin-top: -158px;
	padding-top: 206px;
	padding-left: 0;
	padding-right: 0;
	border-radius: 0;
	background: 0 0
}

.hero--full .hero__header {
	text-align: center
}

.hero--full .hero__text {
	max-width: none
}

.hero--full .hero__img {
	bottom: 165px;
	height: auto
}

.hero--full .hero__img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary);
	opacity: .6
}

.hero--full .filter {
	background: var(--bg-box)
}

.m-tooltip {
	position: absolute;
	right: 0;
	top: 100%;
	display: none
}

.m-tooltip__box {
	margin-top: 15px;
	padding: 25px;
	border-radius: 25px;
	background: #fff;
	box-shadow: 0 0 5px #ccc;
	font-size: 12.5px;
	width: 260px;
	position: relative
}

.m-tooltip__box>p {
	margin: 0 0 10px
}

.m-tooltip__box>p:last-child {
	margin-bottom: 0
}

.m-tooltip__box>p.green {
	color: #0ca039
}

.m-tooltip__box>p.red {
	color: var(--secondary)
}

.m-tooltip__phone {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: #333;
	font-weight: 700;
	font-size: 14px;
	transition: .3s linear
}

.m-tooltip__phone svg {
	width: 25px;
	height: 25px;
	fill: #0ca039;
	margin-right: 10px
}

.m-tooltip__phone:hover {
	color: var(--secondary)
}

.err404 {
	padding-top: 20px
}

.err404__col {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	gap: 20px
}

.err404__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px
}

.err404__area {
	height: 288px;
	border-radius: 0px;
	overflow: hidden
}

.err404__area:first-child {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary)
}

.err404__area:nth-child(2) {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-box)
}

.err404__area:nth-child(3) {
	grid-column-start: 1;
	grid-column-end: -1;
	height: 464px
}

.err404__title {
	margin: 0;
	text-align: center;
	color: #fff;
	font-size: 214px;
	font-style: normal;
	font-weight: 800
}

.err404__text {
	max-width: 540px
}

.err404__text--center {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	text-align: center
}

.err404__text p {
	margin: 0 0 30px;
	color: var(--primary);
	font-size: 26px;
	font-style: normal;
	font-weight: 500;
	line-height: normal
}

.err404__img {
	height: 464px;
	border-radius: 0px;
	overflow: hidden
}

.full-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.carousel404 {
	width: 100vw
}

.carousel404__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
	height: 262px;
	padding: 0 25px
}

.carousel404__item p {
	margin: 0;
	color: var(--primary);
	font-size: 214px;
	font-style: normal;
	font-weight: 600;
	line-height: 1
}

.equipment__section {
	margin-bottom: 80px
}

.equipment__section:last-child {
	margin-bottom: 0
}

.equipment__title {
	margin: 0 0 50px;
	color: var(--primary);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%
}

.equipment__list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px
}

.equipment__item {
	width: calc(50% - 15px);
	padding-left: 40px;
	color: var(--primary);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
	background: url(../img/icons/checkmark-red.svg) left top/25px no-repeat
}

.equipment__item.no {
	background: url(../img/icons/none.svg) left top/25px no-repeat
}

.insurance__header {
	margin-bottom: 80px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--border)
}

.insurance__header p {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 12px
}

.insurance__header p:last-child {
	margin-bottom: 0
}

.insurance__header p span {
	color: var(--primary);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%
}

.insurance__header p span:nth-child(2) {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	white-space: nowrap;
	height: 32px;
	padding: 4px 16px;
	border-radius: 30px;
	border: 1px solid var(--primary);
	background-color: transparent;
	color: var(--primary);
	font-size: 14px;
	font-style: normal;
	font-weight: 400
}

.insurance__row {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 80px
}

.insurance__col {
	width: calc(50% - 40px)
}

.insurance__section {
	margin-bottom: 40px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border)
}

.insurance__section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none
}

.insurance__title {
	margin: 0 0 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--primary);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%
}

.insurance__title span {
	flex: none;
	font-weight: 400;
	line-height: 150%
}

.insurance__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px 10px;
	padding: 20px 0;
	border-bottom: 1px solid var(--border)
}

.insurance__item:last-child {
	padding-bottom: 0;
	border-bottom: none
}

.insurance__item span {
	max-width: 420px;
	color: var(--primary);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%
}

.insurance__item span:nth-child(2) {
	flex: none;
	font-weight: 400
}

.inspection__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	border-bottom: 1px solid var(--border)
}

.inspection__item:first-child {
	padding-top: 0
}

.inspection__item:last-child {
	padding-bottom: 0;
	border-bottom: none
}

.inspection__item span {
	color: var(--primary);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%
}

.inspection__item span.green {
	color: #329c00
}

.inspection__item span.yellow {
	color: #ff8a00
}

.inspection__item span.red {
	color: #ed3f3f
}

.damage__scheme {
	display: flex;
	flex-wrap: wrap;
	column-gap: 80px;
	row-gap: 30px;
	margin-bottom: 80px
}

.damage__img {
	position: relative;
	width: calc(50% - 40px);
	height: 596px
}

.damage__img img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.damage__img .damage__marker {
	position: absolute;
	left: 50%;
	top: 100px
}

.damage__marker {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: 27px;
	padding-bottom: 3px;
	border-radius: 5px;
	color: #fff;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 1
}

.damage__marker.red {
	background: #ed3f3f
}

.damage__marker.blue {
	background: #4eb4ff
}

.damage__marker.orange {
	background: #ff8a00
}

.damage__marker.black {
	background: #444
}

.damage__marker.green {
	background: #3dbf00
}

.damage__marker.purple {
	background: #9747ff
}

.damage__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px
}

.damage__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	width: 236px;
	height: 76px;
	padding: 10px 25px;
	color: var(--primary);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	border-radius: 20px;
	background: #fff
}

.damage__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px
}

.damage__info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	padding-left: 25px
}

.damage__info p {
	margin: 0;
	color: var(--primary);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%
}

.damage__info p span {
	margin-left: 4px;
	font-weight: 400
}

.car-img {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	row-gap: 20px
}

.car-img__item {
	box-sizing: border-box;
	word-wrap: break-word;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% / 12 * 6 - 20px);
	aspect-ratio: 1.2757
}

.car-img__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0px
}

.report__section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-wrap: nowrap;
	border-bottom: 1px solid var(--border)
}

.report__title {
	width: 243px;
	color: var(--primary);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%
}

.report__right {
	flex-grow: 1
}

.report__subsection {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-wrap: nowrap;
	border-bottom: 1px solid var(--border)
}

.report__subsection:last-child {
	border-bottom: none
}

.report__list {
	flex-grow: 1
}

.report__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-wrap: nowrap;
	flex-grow: 1;
	gap: 20px;
	justify-content: space-between;
	padding: 30px 0;
	border-bottom: 1px solid var(--border)
}

.report__item:last-child {
	border-bottom: none
}

.report__item span {
	color: var(--primary);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%
}

.report__item span:nth-child(2) {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 18px 4px;
	border-radius: 30px;
	border: 1px solid var(--primary);
	color: var(--primary);
	font-style: normal;
	font-weight: 600
}

.report__item span:nth-child(2).green {
	border-color: #329c00;
	color: #329c00
}

.report__item span:nth-child(2).yellow {
	border-color: #ff8a00;
	color: #ff8a00
}

.report__item span:nth-child(2).red {
	border-color: #ed3f3f;
	color: #ed3f3f
}

.report__subtitle {
	width: 500px;
	padding-right: 30px;
	color: var(--primary);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%
}

.companyWidgets {
	display: flex;
	justify-content: center;
	gap: 2em;
	align-items: center;
	margin: 30px 0;
	flex-wrap: wrap
}

.widget__item {
	width: 260px;
	height: 100px;
	display: flex;
	border: 1px solid #cecece;
	border-radius: 30px;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	padding: 15px;
	background: #fff
}

.widget__img {
	flex: none;
	width: 85px;
	padding-right: 15px;
	border-right: 1px solid #cecece
}

.widget__right {
	padding-left: 15px;
	display: flex;
	flex-direction: column
}

.sites-reviews__qnt {
	font-weight: 400;
	font-size: 12px;
	color: #646464
}

.widget__rating {
	display: flex;
	gap: 4px
}

.widget__rating svg {
	width: 20px;
	height: 20px
}

.star-full {
	fill: gold
}

.star-empty {
	fill: #d3d3d3
}

.car-sets__section {
	margin-bottom: 15px;
	padding: 30px;
	border-radius: 30px;
	border: 1px solid transparent;
	background: #fff;
	transition: .3s linear
}

.car-sets__section.open {
	border-color: var(--secondary)
}

.car-sets__section.open .car-sets__qnt {
	color: var(--secondary)
}

.car-sets__section.open .car-sets__icon {
	transform: rotateX(180deg)
}

.car-sets__section.open .car-sets__icon svg {
	fill: var(--secondary)
}

.car-sets__section.open .car-sets__list {
	display: block
}

.car-sets__section:last-child {
	margin-bottom: 0
}

.car-sets__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-wrap: nowrap;
	cursor: pointer
}

.car-sets__img {
	width: 132px;
	height: 82px;
	margin-right: 40px
}

.car-sets__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block
}

.car-sets__info {
	margin-right: 20px
}

.car-sets__info p {
	margin: 0;
	color: var(--primary);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%
}

.car-sets__info p:nth-child(2) {
	margin-top: 6px;
	font-size: 16px;
	font-weight: 400
}

.car-sets__info p:nth-child(2) span {
	margin-right: 12px
}

.car-sets__qnt {
	flex: none;
	margin-left: auto;
	color: #798383;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	transition: .3s linear
}

.car-sets__icon {
	flex: none;
	width: 16px;
	height: 16px;
	margin-left: 10px;
	transition: .3s linear
}

.car-sets__icon svg {
	width: 100%;
	height: 100%;
	fill: #798383;
	transition: .3s linear
}

.car-sets__list {
	display: none;
	padding-top: 30px
}

.car-sets__item {
	display: block;
	padding: 10px 20px;
	border-radius: 30px;
	color: var(--primary);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	transition: .3s linear
}

.car-sets__item.active {
	color: var(--secondary)
}

.car-sets__item:hover {
	background: #f8f7f7
}

.car-media__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px
}

.car-media__nav {
	display: flex;
	flex-wrap: wrap;
	flex-wrap: nowrap;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 10px
}

.car-media__nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	height: 48px;
	padding: 4px 24px;
	border-radius: 40px;
	border: 1px solid var(--border);
	color: var(--gray);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: .3s linear
}

.car-media__nav a.active,
.car-media__nav a:hover {
	border-color: var(--secondary);
	color: var(--secondary)
}

.car-media__colors {
	flex: none;
	display: flex;
	gap: 10px
}

.car-media__colors a {
	width: 30px;
	height: 30px;
	padding: 1px;
	border-radius: 50%;
	border: 1px solid transparent;
	overflow: hidden;
	transition: .3s linear
}

.car-media__colors a img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.car-media__colors a.active,
.car-media__colors a:hover {
	border-color: var(--secondary)
}

.car-media__carousel {
	margin: 0 -10px 24px
}

.car-media__carousel .slick-slide {
	padding: 0 10px
}

.car-media__bigimg {
	aspect-ratio: 1.9;
	border-radius: 0px;
	overflow: hidden
}

.car-media__bigimg img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.car-media__thumbs {
	margin: 0 -6px;
	padding-bottom: 80px
}

.car-media__thumbs .slick-slide {
	width: 227px;
	height: 160px;
	padding: 0 6px
}

.car-media__thumbs .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	bottom: 0;
	width: 60px;
	height: 60px;
	padding: 0;
	border: 1px solid #ced7d9;
	border-radius: 50%;
	background: 0 0;
	cursor: pointer;
	transition: .3s linear
}

.car-media__thumbs .slick-arrow:hover {
	border-color: var(--primary)
}

.car-media__thumbs .slick-arrow svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: var(--primary)
}

.car-media__thumbs .slick-arrow.prev {
	right: 90px
}

.car-media__thumbs .slick-arrow.next {
	right: 10px
}

.car-media__thumbs .slick-arrow.next svg {
	transform: rotate(180deg)
}

.car-media__img {
	border-radius: 20px;
	overflow: hidden
}

.car-media__img img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.car-media__panorama {
	height: 914px;
	border-radius: 20px
}

.media-tabs {
	position: relative
}

.media-tabs__tab {
	display: none
}

.media-tabs__tab.active {
	display: block
}

.media-tabs__nav {
	position: absolute;
	z-index: 100;
	top: 162px;
	left: 50px
}

.media-tabs__nav a {
	display: flex;
	align-items: center;
	height: 70px;
	padding: 4px 10px;
	border-radius: 40px;
	background: var(--secondary)
}

.media-tabs__nav a img {
	width: 50px;
	height: 50px;
	object-fit: contain
}

.media-tabs__nav a span {
	width: 0;
	margin: 0;
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	overflow: hidden;
	transition: .3s linear
}

.media-tabs__nav a:hover span {
	width: auto;
	margin: 0 10px
}

.media-tabs__nav a.active {
	display: none
}

.sidebar-title {
	margin: 0 0 24px;
	color: var(--primary);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal
}

.sidebar-carousel {
	margin-bottom: 20px
}

.sidebar-carousel .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
	top: -58px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid #ced7d9;
	border-radius: 50%;
	background: 0 0;
	cursor: pointer;
	transition: .3s linear
}

.sidebar-carousel .slick-arrow:hover {
	border-color: var(--primary)
}

.sidebar-carousel .slick-arrow svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: var(--primary)
}

.sidebar-carousel .slick-arrow.prev {
	right: 45px
}

.sidebar-carousel .slick-arrow.next {
	right: 0
}

.sidebar-carousel .slick-arrow.next svg {
	transform: rotate(180deg)
}

.mobile-header {
	display: none;
	padding: 15px 0
}

.mobile-header__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px
}

.mobile-header .toggle-theme {
	order: 0;
	display: block;
	margin-left: auto;
	margin-right: 10px
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px
}

.video-grid--4 {
	grid-template-columns: repeat(4, 1fr);
	gap: 20px
}

.video-grid--4 .yt-card__img {
	border-radius: 30px
}

.video-grid--5 {
	grid-template-columns: repeat(5, 1fr);
	gap: 20px
}

.video-grid--5 .yt-card__img {
	border-radius: 30px
}

@media screen and (max-width:1739px) {
	.container {
		width: 1160px
	}

	.form-group input {
		height: 58px
	}

	.form-group textarea {
		min-height: 160px
	}

	.form-group__double {
		height: 58px
	}

	.form-group__double .select2 {
		padding-left: 20px
	}

	.form-group__double input {
		padding-left: 40px
	}

	.form-group__double::before {
		left: 14px;
		font-size: 14px
	}

	.form-group__double::after {
		left: calc(50% + 14px);
		font-size: 14px
	}

	.form-file {
		width: 270px
	}

	.form-file label {
		height: 74px
	}

	.form-file label span {
		font-size: 16px
	}

	.form-file label i {
		width: 26px;
		height: 26px
	}

	.form-file label i svg {
		width: 18px;
		height: 18px
	}

	.form-file .filename {
		font-size: 16px
	}

	.header {
		min-height: 137px;
		margin-bottom: 20px
	}

	.city__select span,
	.top-menu .nav__dropdown-toggle,
	.top-menu__link {
		font-size: 12px;
		line-height: 15px
	}

	.navbar {
		padding: 10px 0
	}

	.navbar__order {
		margin-left: 20px
	}

	.navbar__order .btn,
	.navbar__order .btn-border {
		height: 35px;
		padding: 9px 14px
	}

	.navbar__contacts {
		column-gap: 10px
	}

	.navbar__contacts:nth-child(2) {
		margin-left: 15px
	}

	.navbar--twotel .navbar__center {
		width: calc(100% / 12 * 5.5 - 20px)
	}

	.navbar--twotel .navbar__right {
		width: calc(100% / 12 * 4.5 - 20px)
	}

	.logo {
		column-gap: 15px
	}

	.logo svg {
		width: 30px;
		height: 30px
	}

	.logo span {
		font-size: 17px
	}

	.menu {
		gap: 14px
	}

	.menu__list {
		column-gap: 14px
	}

	.menu__link {
		font-size: 12px;
		line-height: 15px
	}

	.btn {
		font-size: 14px;
		line-height: 15px
	}

	.office__icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border: 1px solid rgba(174, 179, 179, .3);
		border-radius: 50%;
		transition: .3s linear
	}

	.office__icon svg {
		width: 14px;
		height: 14px
	}

	.office__info {
		display: none
	}

	.office__tel {
		font-size: 14px
	}

	.office__text {
		font-size: 9px
	}

	.footer__wrap {
		padding: 0 60px
	}

	.bottom__text,
	.platform__text {
		font-size: 12px
	}

	.platform__logo {
		width: 148px;
		height: 22px
	}

	.f-top {
		padding: 45px 0 15px
	}

	.f-top__left {
		width: calc(100% / 12 * 2.2 - 20px)
	}

	.f-top__center {
		width: calc(100% / 12 * 8 - 20px)
	}

	.f-top__right {
		width: calc(100% / 12 * 1.8 - 20px)
	}

	.footerbar {
		padding: 40px 0
	}

	.footerbar__text {
		max-width: 260px;
		margin-bottom: 26px;
		font-size: 12px
	}

	.footerbar__order {
		width: 130px
	}

	.footerbar__order .btn {
		height: 40px
	}

	.footerbar .login-btn {
		width: 40px;
		height: 40px
	}

	.footerbar .login-btn svg {
		width: 18px;
		height: 18px
	}

	.f-menu {
		column-gap: 70px;
		padding-top: 8px
	}

	.f-menu__link,
	.f-menu__title {
		font-size: 12px;
		line-height: 15px
	}

	.f-contacts {
		row-gap: 20px
	}

	.f-contacts .office__info {
		display: block;
		min-width: 146px
	}

	.f-contacts .office__icon {
		width: 16px;
		height: 16px;
		border: none
	}

	.f-contacts .office__icon svg {
		width: 100%;
		height: 100%
	}

	.login-btn {
		width: 36px;
		height: 36px
	}

	.login-btn svg {
		width: 18px;
		height: 18px
	}

	.first-left {
		width: calc(100% / 12 * 5.8 - 20px);
		padding-left: 30px
	}

	.first-left__title {
		margin-bottom: 30px;
		font-size: 44px
	}

	.first-left__text {
		max-width: 381px;
		margin-bottom: 50px;
		font-size: 16px
	}

	.first-left .btn {
		width: 223px;
		height: 64px;
		font-size: 16px
	}

	.first-right {
		width: calc(100% / 12 * 6.2 - 20px);
		height: 600px
	}

	.first-menu {
		column-gap: 16px
	}

	.first-menu__link {
		width: 145px;
		height: 140px;
		aspect-ratio: auto;
		padding: 16px 15px
	}

	.first-menu__link svg {
		width: 25px;
		height: 25px
	}

	.first-menu__link span {
		font-size: 12px
	}

	.section-title {
		margin-bottom: 50px;
		font-size: 38px
	}

	.section-title--inner {
		font-size: 35px
	}

	.section-title--sm {
		font-size: 26px;
		margin-bottom: 35px
	}

	h1.section-title .btn {
		padding: 16px 30px;
		font-size: 16px
	}

	.social {
		margin-bottom: 90px
	}

	.social__left {
		padding-left: 40px
	}

	.social__title {
		font-size: 26px
	}

	.social__link svg {
		width: 30px;
		height: 30px
	}

	.yt {
		margin-bottom: 90px
	}

	.yt .btn {
		right: 164px;
		padding: 16px 30px;
		font-size: 16px
	}

	.yt-carousel__img {
		height: 206px;
		border-radius: 40px
	}

	.yt-carousel .slick-arrow {
		top: -96px
	}

	.yt-carousel .slick-arrow svg {
		width: 18px;
		height: 18px
	}

	.yt-carousel .slick-arrow.prev {
		right: 74px
	}

	.faq {
		margin-bottom: 40px
	}

	.faq__item {
		padding: 30px 40px
	}

	.faq__header span {
		width: calc(100% - 47px);
		font-size: 16px
	}

	.faq__header svg {
		width: 22px;
		height: 22px
	}

	.faq__text {
		padding-right: 0
	}

	.faq__text p {
		font-size: 14px
	}

	.advant {
		margin-bottom: 90px
	}

	.advant__grid {
		grid-template-columns: 447px repeat(3, 1fr);
		grid-template-rows: repeat(2, auto)
	}

	.advant__title {
		padding-left: 60px;
		padding-right: 60px;
		font-size: 38px;
		line-height: 46px
	}

	.advant__item {
		padding: 40px 29px
	}

	.advant__icon {
		width: 30px;
		height: 30px;
		margin-bottom: 40px
	}

	.advant__name {
		margin-bottom: 12px;
		font-size: 16px
	}

	.advant__name br {
		display: none
	}

	.advant__desc {
		font-size: 14px
	}

	.request {
		margin-bottom: 90px
	}

	.request__grid {
		grid-template-rows: 218px 336px
	}

	.request__desc {
		padding-right: 30px;
		padding-left: 60px
	}

	.request__title {
		padding-right: 30px;
		font-size: 26px
	}

	.request__text {
		margin-bottom: 50px;
		font-size: 14px
	}

	.request .btn {
		width: 221px;
		height: 62px;
		font-size: 16px
	}

	.scheme {
		margin-bottom: 90px
	}

	.scheme__step {
		padding: 30px
	}

	.scheme__icon {
		margin-bottom: 90px
	}

	.scheme__title {
		font-size: 18px
	}

	.scheme__text {
		font-size: 16px
	}

	.s-request {
		padding: 50px 40px
	}

	.s-request__text {
		margin-bottom: 40px;
		padding-right: 50px;
		font-size: 28px;
		line-height: 34px
	}

	.s-request__footer {
		justify-content: flex-start;
		column-gap: 15px
	}

	.s-request__btn,
	.s-request__full-btn {
		width: 214px;
		height: 58px;
		font-size: 16px
	}

	.video-card__img {
		border-radius: 25px
	}

	.video-card__img::before {
		width: 60px;
		height: 60px
	}

	.video-card__img::after {
		border-radius: 25px
	}

	.video-card__content {
		bottom: 15px;
		left: 15px;
		right: 15px
	}

	.video-card__date {
		padding: 8px 14px;
		font-size: 12px
	}

	.video-card__author img {
		width: 43px;
		height: 43px
	}

	.video-card__text {
		font-size: 14px
	}

	.video-card__text span {
		font-size: 12px
	}

	.m-blog {
		margin-bottom: 90px
	}

	.m-blog__header {
		margin-bottom: 60px
	}

	.m-blog__link {
		padding: 10px 20px;
		font-size: 14px;
		line-height: 17px
	}

	.m-blog__row {
		grid-template-columns: repeat(3, 1fr);
		margin-bottom: 40px
	}

	.m-blog__row .preview:nth-child(n+4) {
		display: none
	}

	.preview__content {
		padding: 25px
	}

	.preview__label {
		padding: 8px 14px;
		font-size: 12px
	}

	.preview__title {
		min-height: 63px;
		margin-bottom: 14px;
		font-size: 14px
	}

	.preview__date {
		font-size: 12px
	}

	.section__footer {
		margin-top: 40px
	}

	.section__text {
		margin-bottom: 40px;
		font-size: 14px
	}

	.carousel .slick-arrow {
		top: -97px;
		width: 50px;
		height: 50px
	}

	.carousel .slick-arrow.prev {
		right: 74px
	}

	.card__img {
		height: 282px
	}

	.card__label {
		top: 25px;
		left: 25px;
		padding: 4px 10px;
		font-size: 12px
	}

	.card__rating {
		top: 25px;
		left: 25px;
		width: 44px;
		height: 30px
	}

	.card__rating span {
		font-size: 12px
	}

	.card__desc {
		padding: 90px 25px 30px
	}

	.card__car {
		margin-bottom: 25px
	}

	.card__year {
		font-size: 14px
	}

	.card__name {
		font-size: 18px
	}

	.card__name span {
		font-size: 14px
	}

	.card__info {
		margin-bottom: 25px
	}

	.card__row:first-child {
		margin-bottom: 18px;
		padding-bottom: 18px
	}

	.card__row:first-child .card__item span:nth-child(2) {
		font-size: 14px
	}

	.card__item span {
		font-size: 12px
	}

	.card__price>p {
		font-size: 18px
	}

	.carousel-three .slick-arrow {
		top: -97px;
		width: 50px;
		height: 50px
	}

	.carousel-three .slick-arrow.prev {
		right: 74px
	}

	.card-stock__img {
		height: 256px
	}

	.card-stock__rating {
		bottom: 25px;
		left: 25px;
		width: 44px;
		height: 30px
	}

	.card-stock__rating span {
		font-size: 12px
	}

	.card-stock__label {
		bottom: 25px;
		right: 25px;
		width: 93px;
		height: 30px;
		font-size: 12px
	}

	.card-stock__desc {
		row-gap: 25px;
		height: calc(100% - 196px);
		padding: 90px 25px 30px
	}

	.card-stock__name,
	.card-stock__price {
		font-size: 16px
	}

	.card-stock__info {
		column-gap: 18px
	}

	.card-stock__info span {
		font-size: 14px
	}

	.card-stock__info span::after {
		right: -11px
	}

	.card-row__img {
		width: 250px;
		height: 172px
	}

	.card-row__desc {
		width: calc(100% - 250px);
		padding: 30px
	}

	.card-row__car {
		width: 29.9%;
		padding-right: 20px
	}

	.card-row__info {
		width: 42%;
		padding-left: 20px;
		padding-right: 20px;
		column-gap: 10px;
		padding-top: 16px;
		grid-template-columns: 46px 62px 1fr
	}

	.card-row__price {
		width: 28.1%;
		padding-left: 20px
	}

	.card-row__price>p:first-child {
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-start;
		font-size: 18px
	}

	.card-row__price>p:first-child span {
		margin-left: 0;
		font-size: 14px
	}

	.card-row__price>p:nth-child(2) {
		margin-bottom: 10px
	}

	.card-row__price-toggle>span {
		width: 152px;
		height: 30px;
		font-size: 12px
	}

	.card-row__name {
		column-gap: 10px;
		font-size: 18px
	}

	.card-row__age {
		column-gap: 20px
	}

	.card-row__age span {
		font-size: 12px
	}

	.card-row__age span::after {
		right: -12px
	}

	.card-row__col {
		row-gap: 6px
	}

	.card-row__col span {
		font-size: 12px
	}

	.card-row__fav {
		column-gap: 6px;
		font-size: 12px
	}

	.card-row__fav svg {
		width: 16px;
		height: 16px
	}

	.card-row__del {
		top: 20px;
		right: 20px;
		width: 24px;
		height: 24px
	}

	.card-row--glry .card-row__desc {
		width: calc(100% - 280px);
		padding-top: 0;
		padding-bottom: 0;
		padding-right: 0
	}

	.card-row--glry .card-row__car {
		width: 28.5%
	}

	.card-row--glry .card-row__info {
		width: 41%
	}

	.card-row--glry .card-row__price {
		width: 30.5%
	}

	.card-row__gallery {
		width: 280px
	}

	.card-row__gallery .card-row__img {
		width: calc(50% - 5px);
		height: 100px;
		border-radius: 25px
	}

	.filter {
		grid-template-columns: repeat(4, 1fr);
		margin-bottom: 40px;
		padding: 40px
	}

	.filter--mb30 {
		margin-bottom: 20px !important
	}

	.filter .btn,
	.filter .btn-border {
		height: 58px
	}

	.filter .form-checkbox {
		margin-bottom: 10px
	}

	.filter__full {
		grid-template-columns: repeat(3, 1fr)
	}

	.filter .btn {
		font-size: 14px
	}

	.select2-container--default .select2-selection--multiple .select2-selection__arrow,
	.select2-container--default .select2-selection--single .select2-selection__arrow {
		width: 10px;
		height: 10px
	}

	.select2-container--default .select2-selection--multiple {
		min-height: 58px;
		padding-top: 3px;
		padding-bottom: 2px
	}

	.select2-container--default .select2-selection--single {
		height: 58px
	}

	.brands {
		gap: 14px
	}

	.brands__item {
		width: 184px;
		height: 74px;
		padding: 0 22px;
		font-size: 14px
	}

	.brands__item img {
		width: 30px;
		height: 30px
	}

	.filter-nowrap {
		margin-bottom: 40px
	}

	.filter-nowrap__grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.filter-nowrap .btn,
	.filter-nowrap__result p {
		font-size: 14px
	}

	.filter-menu {
		margin-bottom: 26px
	}

	.filter-menu__list {
		gap: 13px
	}

	.filter-menu__link {
		padding: 12px 20px;
		font-size: 12px;
		line-height: 15px
	}

	.filter-menu__group {
		gap: 13px
	}

	.filter-menu__checkbox label {
		height: 41px;
		padding: 0 14px 0 44px;
		font-size: 12px
	}

	.filter-menu__checkbox label::before {
		top: 11px;
		width: 20px;
		height: 20px
	}

	.filter-menu__checkbox input:checked+label::before {
		background-size: 16px
	}

	.hits {
		grid-template-columns: repeat(3, 1fr)
	}

	.hits__select {
		max-height: 342px;
		padding: 25px 20px 20px 30px
	}

	.hits__link {
		font-size: 12px
	}

	.card-sm {
		padding: 30px 35px
	}

	.card-sm__title {
		margin-bottom: 20px;
		font-size: 16px
	}

	.card-sm__img {
		margin-bottom: 20px;
		height: 160px
	}

	.card-sm__price {
		font-size: 18px
	}

	.card-sm__price svg {
		width: 26px;
		height: 26px
	}

	.card-sm__offers {
		font-size: 12px
	}

	.card-type {
		padding: 50px 38px 38px;
		border-radius: 40px
	}

	.card-type__img {
		height: 122px
	}

	.card-type__title {
		font-size: 16px;
		line-height: 20px
	}

	.card-type__desc {
		margin-bottom: 30px;
		font-size: 14px
	}

	.yt-card__img,
	.yt-card__img::after {
		border-radius: 00px
	}

	.dropdown {
		padding: 40px;
		border-radius: 30px
	}

	.dropdown__menu {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px
	}

	.dropdown__link {
		row-gap: 10px
	}

	.dropdown__link span {
		font-size: 14px
	}

	.dropdown__img {
		height: 98px
	}

	.dropdown__grid {
		grid-template-columns: 180px 1fr
	}

	.drop-tabs {
		column-gap: 15px;
		margin-bottom: 30px
	}

	.btn-border {
		font-size: 14px;
		line-height: 15px
	}

	.left-menu {
		row-gap: 15px
	}

	.left-menu__link {
		font-size: 14px;
		line-height: 18px
	}

	.box {
		margin-bottom: 90px
	}

	.box__title {
		margin-bottom: 40px;
		font-size: 28px
	}

	.box--mb20:last-child {
		margin-bottom: 90px !important
	}

	.box__wrap {
		padding: 60px
	}

	.box__wrap--main {
		padding: 90px 60px
	}

	.box__wrap--main .carousel .slick-arrow,
	.box__wrap--main .carousel-three .slick-arrow {
		top: -97px
	}

	.box__wrap--first {
		padding: 40px
	}

	.box__wrap--tr .first-left {
		width: calc(100% / 12 * 7 - 20px);
		padding-left: 60px
	}

	.box__wrap--tr .first-right {
		width: calc(100% / 12 * 5 - 20px);
		height: 496px
	}

	.box__wrap--tr .first-menu__link {
		width: 170px;
		height: auto;
		aspect-ratio: 1;
		padding: 15px
	}

	.box__column {
		row-gap: 90px
	}

	.box--social .box__wrap img {
		height: 460px
	}

	.box__sidebar {
		width: 320px
	}

	.box__sidebar .box__wrap {
		border-radius: 20px;
		padding: 30px 20px 20px
	}

	.box__sidebar .social__link {
		border-radius: 16px
	}

	.box__sidebar .social__link svg {
		width: 24px;
		height: 24px
	}

	.box__sidebar .video-card,
	.box__sidebar .yt-card__img,
	.box__sidebar .yt-card__img::after {
		border-radius: 20px
	}

	.box__content {
		width: calc(100% - 340px)
	}

	.box__content .card-row__img {
		width: 173px;
		height: 190px
	}

	.box__content .card-row__desc {
		padding: 20px 30px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, auto);
		grid-column-gap: 30px;
		grid-row-gap: 20px;
		width: calc(100% - 173px)
	}

	.box__content .card-row__car {
		grid-area: 1/1/2/2;
		width: auto;
		padding: 0;
		border-right: none
	}

	.box__content .card-row__info {
		grid-area: 2/1/3/2;
		width: auto;
		padding: 0;
		border-right: none;
		column-gap: 5px;
		grid-template-columns: 41px 57px 1fr
	}

	.box__content .card-row__price {
		grid-area: 1/2/3/3;
		width: auto;
		padding-left: 30px;
		border-left: 1px solid #eeebde;
		align-self: stretch;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center
	}

	.box__content .card-row__price>p:first-child {
		font-size: 16px
	}

	.box__content .card-row__price>p:first-child span {
		font-size: 12px
	}

	.box__content .card-row__price-toggle>span {
		width: 148px;
		height: 26px
	}

	.box__content .card-row__name {
		font-size: 16px
	}

	.box__content .card-row__col {
		row-gap: 4px
	}

	.box__content .card-row-carousel {
		width: 173px
	}

	.breadcrumbs__item {
		font-size: 12px;
		line-height: 15px
	}

	.attention__text {
		font-size: 14px;
		line-height: 1.4
	}

	.looking {
		column-gap: 10px
	}

	.looking__label {
		width: 100%;
		font-size: 14px;
		line-height: 17px
	}

	.looking__item {
		height: 44px;
		padding: 0 12px;
		border: 1px solid #eeebde
	}

	.looking__item a {
		max-width: 291px;
		font-size: 12px
	}

	.looking__del {
		width: 20px;
		height: 20px
	}

	.looking__add {
		width: 44px;
		height: 44px;
		border: 1px solid #ced7d9
	}

	.looking__add svg {
		width: 20px;
		height: 20px
	}

	.catalog__header {
		margin-bottom: 35px
	}

	.catalog__info {
		width: 100%;
		max-width: 325px
	}

	.catalog__info p {
		font-size: 14px
	}

	.catalog__footer {
		margin-top: 50px
	}

	.catalog__qnt {
		font-size: 12px;
		line-height: 15px
	}

	.car-brands {
		margin-bottom: 90px
	}

	.car-brands__title {
		margin-bottom: 40px;
		font-size: 26px
	}

	.car-brands__row {
		column-gap: 20px;
		row-gap: 18px
	}

	.car-brands__link {
		font-size: 16px
	}

	.car-card__header {
		padding-left: 0
	}

	.car-card__header p {
		font-size: 14px
	}

	.car-card__right {
		max-width: 600px
	}

	.car-card .section-title {
		font-size: 35px
	}

	.car-card__footer {
		padding: 0
	}

	.car-card__footer p {
		width: 192px;
		font-size: 12px
	}

	.car-card__btns {
		column-gap: 18px
	}

	.car-card__btns .btn {
		width: 225px;
		height: 61px;
		font-size: 16px
	}

	.car-card__desc p {
		font-size: 14px
	}

	.car-card--two {
		grid-template-columns: repeat(2, calc(50% - 10px))
	}

	.gallery__carousel .slick-arrow {
		width: 50px;
		height: 50px
	}

	.gallery__carousel .slick-arrow svg {
		width: 18px;
		height: 18px
	}

	.gallery__thumbs .slick-slide img {
		height: 140px
	}

	.specifs {
		grid-template-columns: 1fr;
		row-gap: 16px
	}

	.specifs__col {
		grid-template-columns: 1fr 140px;
		gap: 16px
	}

	.specifs__col span {
		font-size: 14px
	}

	.car-price {
		margin: 0 0 34px
	}

	.car-price__item span {
		font-size: 14px
	}

	.auction-list__header {
		margin-bottom: 35px
	}

	.auction-list__toggle {
		font-size: 14px
	}

	.auction-list__toggle svg {
		width: 14px;
		height: 14px
	}

	.auction-list__item span {
		font-size: 14px
	}

	.auction-list__item span:nth-child(2) {
		max-width: 300px
	}

	.price-breakdown__title {
		font-size: 14px
	}

	.price-breakdown__average {
		font-size: 18px
	}

	.price-breakdown__section {
		grid-template-columns: 1fr 130px
	}

	.price-breakdown__subtitle {
		font-size: 14px
	}

	.price-breakdown__price {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-end;
		font-size: 14px
	}

	.price-breakdown__price span:nth-child(2) {
		margin-left: 0
	}

	.price-breakdown__text {
		max-width: 292px;
		font-size: 12px
	}

	.price-breakdown__list li {
		font-size: 12px
	}

	.price-breakdown__footer .btn {
		width: 231px;
		height: 64px;
		font-size: 16px
	}

	.price-breakdown__total span {
		font-size: 16px
	}

	.price-breakdown__disclaimer {
		margin-top: 35px
	}

	.price-breakdown__disclaimer p {
		font-size: 12px
	}

	.calc-toggle {
		margin-bottom: 50px
	}

	.calc-toggle__btn {
		padding: 20px 25px;
		font-size: 14px
	}

	.calc-toggle__btn span:first-child {
		display: none
	}

	.calc-toggle__btn span:nth-child(2) {
		display: block
	}

	.text {
		margin-bottom: 50px
	}

	.text p {
		font-size: 14px
	}

	.exchange {
		column-gap: 40px;
		font-size: 16px
	}

	.exchange--row {
		row-gap: 0;
		margin-bottom: 35px
	}

	.exchange--row span:last-child {
		margin-left: auto
	}

	.found {
		margin-bottom: 30px
	}

	.found__title {
		font-size: 26px;
		margin-bottom: 24px
	}

	.found__desc {
		margin-bottom: 40px
	}

	.found__desc p,
	.found__table table th {
		font-size: 14px
	}

	.found__table table td {
		font-size: 12px
	}

	.catalog-grid--four {
		grid-template-columns: repeat(3, 1fr)
	}

	.card-moto__left {
		width: 212px
	}

	.card-moto__desc {
		width: calc(100% - 212px);
		padding: 25px
	}

	.card-moto__fav {
		top: 20px;
		left: 20px
	}

	.card-moto__name {
		font-size: 18px
	}

	.card-moto__age {
		column-gap: 24px;
		margin-bottom: 18px
	}

	.card-moto__age span {
		font-size: 12px
	}

	.card-moto__age span::after {
		right: -14px
	}

	.card-moto__info {
		margin-bottom: 18px
	}

	.card-moto__info span {
		font-size: 14px
	}

	.card-moto__price {
		font-size: 18px
	}

	.card-moto__price span {
		font-size: 16px
	}

	.filter-group {
		row-gap: 25px;
		padding: 40px;
		border-radius: 40px
	}

	.filter-group__section {
		padding-bottom: 25px
	}

	.moto-brands {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(4, auto);
		gap: 16px
	}

	.moto-brands__link {
		font-size: 14px
	}

	.moto-brands__link span:first-child {
		width: 160px
	}

	.moto-brands .link span {
		font-size: 14px
	}

	.type-moto {
		display: grid;
		grid-template-columns: repeat(7, 1fr);
		gap: 14px
	}

	.type-moto__link span {
		font-size: 10px
	}

	.type-moto__img {
		padding: 10px 5px
	}

	.car {
		margin-bottom: 35px
	}

	.car--grid {
		grid-template-columns: 500px 1fr;
		row-gap: 10px
	}

	.car__left,
	.car__right {
		width: calc(100% / 12 * 6 - 20px)
	}

	.car__title {
		margin-bottom: 40px;
		font-size: 35px
	}

	.car__info {
		margin-bottom: 40px
	}

	.car__info span {
		font-size: 14px
	}

	.car__price {
		margin-bottom: 40px;
		font-size: 22px
	}

	.car .btn {
		width: 369px;
		height: 64px;
		font-size: 16px
	}

	.car-gallery {
		padding: 40px 30px
	}

	.car-gallery .item {
		height: 295px
	}

	.car-gallery .slick-arrow {
		width: 50px;
		height: 50px
	}

	.car-gallery .slick-dots {
		bottom: 20px
	}

	.car-other__title {
		margin-bottom: 25px;
		font-size: 22px
	}

	.car-other__grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.car-other__name {
		font-size: 16px
	}

	.car-other__info p {
		font-size: 14px
	}

	.car-other--sm .car-other__title {
		font-size: 18px
	}

	.car-other--sm .car-other__item {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 30px
	}

	.car-other--sm .car-other__desc {
		width: 100%
	}

	.card-video__title {
		margin-top: 16px;
		font-size: 16px
	}

	.card-video__img {
		height: 292px;
		border-radius: 0px
	}

	.gnr-sets__years {
		margin-bottom: 40px;
		font-size: 14px
	}

	.gnr-sets__section {
		margin-bottom: 40px
	}

	.gnr-sets__subtitle {
		margin-bottom: 25px;
		font-size: 18px
	}

	.sets-carousel {
		margin-right: 129px
	}

	.sets-carousel .item img {
		height: 90px
	}

	.sets-carousel .slick-arrow.next {
		right: -124px
	}

	.sets-table table td,
	.sets-table table th {
		font-size: 12px
	}

	.sets-table table td:last-child a {
		margin-left: auto
	}

	.selection {
		row-gap: 35px
	}

	.selection__title {
		margin-bottom: 25px;
		font-size: 16px
	}

	.selection__grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.selection__radio label {
		padding: 25px 25px 25px 85px;
		font-size: 16px
	}

	.selection__radio label::before {
		top: 25px;
		left: 25px
	}

	.selection__radio--lg label {
		padding-left: 85px;
		font-size: 20px
	}

	.selection__radio--lg label::before {
		width: 42px;
		height: 42px
	}

	.selection__radio--lg input:checked+label::before {
		background-size: 22px
	}

	.calc-nav .btn-border {
		padding: 20px 25px
	}

	.calc-desc {
		font-size: 14px
	}

	.blog__header {
		margin-bottom: 40px
	}

	.blog__grid {
		row-gap: 35px;
		margin-bottom: 65px
	}

	.blog__info {
		font-size: 12px;
		line-height: 15px
	}

	.blog-nav {
		column-gap: 14px
	}

	.blog-nav__btn {
		padding: 10px 20px;
		font-size: 14px;
		line-height: 17px
	}

	.search {
		width: 295px;
		height: 56px
	}

	.search button {
		width: 56px
	}

	.search button svg {
		width: 26px;
		height: 26px
	}

	.search input {
		width: calc(100% - 56px);
		font-size: 14px
	}

	.pagination {
		column-gap: 35px
	}

	.pagination__nav {
		column-gap: 14px
	}

	.pagination__arr {
		width: 50px;
		height: 50px
	}

	.pagination__arr svg {
		width: 18px;
		height: 18px
	}

	.pagination__link {
		font-size: 14px;
		line-height: 17px
	}

	.preview-row {
		grid-template-columns: 210px 1fr;
		column-gap: 20px
	}

	.preview-row__img {
		height: 244px
	}

	.preview-row__right {
		padding: 10px 10px 10px 0
	}

	.preview-row__title {
		margin-bottom: 15px;
		font-size: 16px
	}

	.preview-row__date,
	.preview-row__time {
		margin-bottom: 12px;
		font-size: 12px
	}

	.preview-row__cat {
		padding: 8px 16px;
		font-size: 12px
	}

	.contacts__text a {
		font-size: 28px
	}

	.contacts__text address {
		font-size: 16px
	}

	.contacts__title {
		font-size: 28px
	}

	.team__item {
		padding: 45px
	}

	.team__member {
		column-gap: 16px
	}

	.team__img {
		width: 80px;
		height: 80px
	}

	.team__name p {
		font-size: 14px
	}

	.team__name p:first-child {
		font-size: 16px
	}

	.team__tel svg {
		width: 20px;
		height: 20px
	}

	.team__tel a {
		font-size: 22px
	}

	.requis {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		row-gap: 30px
	}

	.requis__title {
		margin-bottom: 5px;
		font-size: 26px
	}

	.requis__list {
		font-size: 16px
	}

	.requis__load {
		width: 100%;
		max-width: 243px
	}

	.calc-wrap {
		row-gap: 35px
	}

	.calc-wrap__footer {
		font-size: 14px
	}

	.calc {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px
	}

	.calc .btn {
		height: 64px;
		margin-top: 15px;
		font-size: 16px
	}

	.calc .form-checkbox {
		margin-top: 40px
	}

	.calc-radio {
		margin-bottom: 35px
	}

	.calc-radio__item label {
		padding-left: 25px;
		padding-right: 25px;
		padding-bottom: 10px;
		font-size: 16px
	}

	.calc-table {
		margin-top: 35px
	}

	.calc-table__wrap {
		max-width: none
	}

	.calc-table__header span {
		font-size: 14px
	}

	.calc-table__item span {
		font-size: 12px
	}

	.calc-table__footer span {
		font-size: 14px
	}

	.calc-table__disclaimer {
		margin-top: 35px
	}

	.calc-table__disclaimer p {
		margin-bottom: 15px;
		font-size: 12px
	}

	.share-btn {
		width: 20px;
		height: 20px
	}

	.article-meta {
		column-gap: 30px
	}

	.article-meta__item span {
		font-size: 14px
	}

	.article {
		max-width: 790px
	}

	.article ol {
		max-width: 790px;
		margin-bottom: 25px
	}

	.article ol li {
		font-size: 14px;
		padding-top: 4px;
		padding-bottom: 4px
	}

	.article ol li::before {
		font-size: 14px
	}

	.article ul {
		max-width: 790px;
		margin-bottom: 25px
	}

	.article ul li {
		margin-bottom: 14px;
		font-size: 14px
	}

	.article p {
		margin-bottom: 25px;
		font-size: 14px
	}

	.article div {
		margin-bottom: 60px
	}

	.article h2 {
		margin-bottom: 35px;
		font-size: 35px
	}

	.article figcaption {
		padding-top: 16px;
		font-size: 12px
	}

	.article .row {
		column-gap: 20px
	}

	.article .col {
		width: calc(50% - 10px)
	}

	.article__footer {
		margin-top: 60px;
		padding-top: 35px
	}

	.article__author img {
		width: 66px;
		height: 66px
	}

	.article__author div span {
		font-size: 14px
	}

	.article__author div span:first-child {
		font-size: 16px
	}

	.share {
		column-gap: 25px
	}

	.share__label {
		font-size: 26px
	}

	.account__area {
		padding: 80px 20px
	}

	.account__area:first-child {
		padding: 60px
	}

	.account__title {
		margin-bottom: 35px;
		font-size: 26px
	}

	.account__link span {
		font-size: 26px
	}

	.account__row {
		column-gap: 90px
	}

	.account__wrap {
		width: 500px
	}

	.account__wrap .btn {
		width: 285px;
		height: 64px;
		font-size: 16px
	}

	.acc-user {
		column-gap: 25px
	}

	.acc-user__icon {
		width: 80px;
		height: 80px
	}

	.acc-user__icon svg {
		width: 26px;
		height: 26px
	}

	.acc-user__name,
	.acc-user__tel {
		font-size: 16px
	}

	.add-btn {
		width: 280px;
		height: 74px;
		font-size: 16px
	}

	.add-btn__icon {
		width: 26px;
		height: 26px
	}

	.add-btn__icon svg {
		width: 16px;
		height: 16px
	}

	.comparison__col {
		width: 220px;
		min-width: 220px
	}

	.comparison__col:first-child {
		width: 310px;
		min-width: 310px
	}

	.comparison__header {
		margin-bottom: 20px
	}

	.comparison__img {
		height: 130px
	}

	.comparison__name {
		margin-bottom: 14px;
		font-size: 16px
	}

	.comparison__title span,
	.comparison__year {
		font-size: 14px
	}

	.comparison__title svg {
		width: 18px;
		height: 18px
	}

	.comparison__item .comparison__col span,
	.comparison__legend span {
		font-size: 14px
	}

	.contract__col {
		row-gap: 35px
	}

	.contract__text ul li {
		margin-bottom: 14px;
		font-size: 14px
	}

	.contract__text ul li::before {
		top: 6px
	}

	.contract__text p {
		font-size: 14px
	}

	.contract__text .btn {
		width: 216px;
		height: 59px;
		font-size: 14px
	}

	.contract__title {
		margin-bottom: 18px;
		font-size: 16px
	}

	.contract__load {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 20px;
		width: 272px;
		padding: 30px 20px
	}

	.contract__load div p {
		font-size: 14px
	}

	.contract__load div p:first-child {
		font-size: 16px
	}

	.sets-catalog {
		row-gap: 50px
	}

	.sets-catalog__title {
		margin-bottom: 30px;
		font-size: 26px
	}

	.sets-catalog__nav {
		grid-template-columns: repeat(5, 1fr);
		gap: 14px
	}

	.sets-catalog__link {
		padding: 22px
	}

	.sets-catalog__link span {
		font-size: 14px
	}

	.sets-catalog__icon {
		width: 30px;
		height: 30px
	}

	.contract-nav {
		column-gap: 30px;
		margin-bottom: 40px
	}

	.contract-nav__item {
		font-size: 14px
	}

	.contract-nav__item span {
		font-size: 12px
	}

	.contract-nav__item::after {
		width: 46px;
		margin-left: 10px
	}

	.entry {
		row-gap: 60px;
		grid-template-columns: 100%
	}

	.entry__title {
		margin-bottom: 35px;
		font-size: 26px
	}

	.entry .btn {
		width: 272px;
		height: 65px;
		font-size: 16px
	}

	.entry .btn svg {
		width: 18px;
		height: 18px
	}

	.entry .btn-border {
		width: 313px;
		height: 64px;
		font-size: 16px
	}

	.model-range {
		row-gap: 50px
	}

	.model-range__title {
		margin-bottom: 30px;
		font-size: 26px
	}

	.model-range__row {
		column-gap: 35px
	}

	.model-range__link {
		font-size: 16px
	}

	.tracking input {
		width: 403px;
		height: 58px;
		font-size: 12px
	}

	.tracking .btn {
		height: 58px;
		font-size: 14px
	}

	.track-auto {
		margin-bottom: 90px
	}

	.track-auto__title {
		margin-bottom: 30px;
		font-size: 26px
	}

	.track-auto__info {
		justify-content: space-between;
		column-gap: normal;
		padding: 40px
	}

	.track-auto__item span {
		font-size: 12px
	}

	.track-auto__item span:nth-child(2) {
		font-size: 14px
	}

	.rating {
		width: 44px
	}

	.track-status__title {
		margin-bottom: 30px;
		font-size: 26px
	}

	.track-status__item {
		column-gap: 16px;
		min-height: 130px
	}

	.track-status__item.active .track-status__desc p:nth-child(2) {
		margin-top: 16px
	}

	.track-status__desc p {
		font-size: 14px
	}

	.first-form__title {
		margin-bottom: 35px;
		font-size: 26px
	}

	.first-form form {
		width: 100%
	}

	.first-form form .btn {
		height: 64px;
		font-size: 16px
	}

	.first-carousel {
		width: 560px
	}

	.first-carousel .item {
		height: 530px;
		border-radius: 0px
	}

	.first-carousel .slick-arrow {
		width: 50px;
		height: 50px
	}

	.first-carousel .slick-dots {
		bottom: 52px
	}

	.review-card {
		border-radius: 0px
	}

	.review-card__img {
		height: 380px;
		border-radius: 0px
	}

	.review-card__label {
		padding: 8px 14px;
		font-size: 12px
	}

	.review-card__author img {
		width: 43px;
		height: 43px
	}

	.review-card__name {
		font-size: 14px
	}

	.review-card__name span {
		font-size: 12px
	}

	.review-card--text {
		padding: 40px
	}

	.review-card--text .link span {
		font-size: 14px
	}

	.review-card__text {
		max-height: 130px
	}

	.review-card__text p {
		font-size: 16px
	}

	.review-card__thumbs a {
		height: 75px
	}

	.social-two {
		padding: 100px 80px
	}

	.reviews__grid {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 35px;
		margin-bottom: 65px
	}

	.reviews--four .reviews__grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.card-row-carousel {
		width: 250px
	}

	.nav__dropdown-toggle {
		font-size: 12px;
		line-height: 15px
	}

	.nav__dropdown .menu__link,
	.nav__dropdown .top-menu__link {
		font-size: 12px
	}

	.main-carousel .slick-arrow {
		width: 50px;
		height: 50px
	}

	.main-carousel .slick-arrow.prev {
		left: -20px
	}

	.main-carousel .slick-arrow.next {
		right: -20px
	}

	.hero {
		padding: 120px 60px 80px
	}

	.hero__title {
		margin-bottom: 30px;
		font-size: 44px
	}

	.hero__text {
		max-width: 381px;
		margin-bottom: 50px;
		font-size: 16px
	}

	.hero .filter .form-range {
		grid-column-start: 1;
		grid-column-end: 3
	}

	.hero--full .hero__img {
		bottom: 190px
	}

	.err404__area {
		height: 212px
	}

	.err404__area:nth-child(2) {
		padding: 0 55px
	}

	.err404__area:nth-child(3) {
		height: 410px
	}

	.err404__title {
		font-size: 156px
	}

	.err404__text--center {
		max-width: 520px
	}

	.err404__text p {
		font-size: 22px
	}

	.err404__img {
		height: 410px
	}

	.carousel404__item {
		height: 206px;
		gap: 40px;
		padding: 0 20px
	}

	.carousel404__item p {
		font-size: 156px
	}

	.car-media__thumbs .slick-slide {
		width: 192px;
		height: 120px
	}

	.car-media__thumbs .slick-arrow {
		width: 50px;
		height: 50px
	}

	.car-media__thumbs .slick-arrow.prev {
		right: 74px
	}

	.car-media__panorama {
		height: auto;
		aspect-ratio: 1.87
	}

	.sidebar-title {
		font-size: 20px
	}

	.video-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.video-grid--4 {
		grid-template-columns: repeat(3, 1fr)
	}

	.video-grid--5 {
		grid-template-columns: repeat(4, 1fr)
	}
}

@media screen and (max-width:1539px) {
	.report__section {
		flex-wrap: wrap
	}

	.report__title {
		width: 100%;
		padding-top: 30px
	}

	.report__right {
		width: 100%
	}
}

@media screen and (max-width:1365px) {
	.report__subtitle {
		width: 400px
	}
}

@media screen and (max-width:1199px) {
	.container {
		width: 980px
	}

	.header {
		min-height: 102px
	}

	.top__center,
	.top__left {
		width: calc(100% / 12 * 4 - 20px)
	}

	.top__center {
		display: flex;
		align-items: center;
		justify-content: center
	}

	.top .logo {
		display: flex
	}

	.top .top-menu {
		display: none
	}

	.top-menu__list {
		gap: 14px
	}

	.navbar {
		padding: 8px 0
	}

	.navbar__left {
		display: none
	}

	.navbar__right {
		width: calc(100% / 12 * 9 - 20px)
	}

	.navbar__center {
		width: calc(100% / 12 * 3 - 20px)
	}

	.navbar__order,
	.navbar__private {
		margin-left: 10px
	}

	.navbar__contacts {
		column-gap: 5px
	}

	.navbar--twotel .navbar__center,
	.navbar--twotel .navbar__right {
		width: calc(100% / 12 * 5 - 20px)
	}

	.logo {
		column-gap: 13px
	}

	.logo svg {
		width: 26px;
		height: 26px
	}

	.logo span {
		font-size: 15px
	}

	.menu,
	.menu__list {
		display: none
	}

	.footer__wrap {
		padding: 0 40px
	}

	.f-top {
		padding-top: 40px
	}

	.f-top__left {
		width: calc(100% / 12 * 3 - 20px)
	}

	.f-top__center {
		width: calc(100% / 12 * 9 - 20px);
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end
	}

	.f-top__right {
		display: none
	}

	.footerbar__left {
		width: calc(100% / 12 * 3.6 - 20px)
	}

	.footerbar__right {
		width: calc(100% / 12 * 8.4 - 20px)
	}

	.footerbar__text {
		margin-bottom: 20px;
		font-size: 10px;
		grid-area: 2/1/3/3
	}

	.footerbar .city {
		display: flex;
		margin-bottom: 14px
	}

	.f-menu {
		column-gap: 40px
	}

	.menu-btn {
		display: flex;
		align-items: center;
		justify-content: center
	}

	.first-left {
		width: calc(100% / 12 * 6 - 20px);
		padding-left: 0
	}

	.first-left__title {
		margin-bottom: 30px;
		font-size: 38px
	}

	.first-left__text {
		font-size: 14px
	}

	.first-left .btn {
		width: 210px;
		height: 60px;
		font-size: 14px
	}

	.first-right {
		width: calc(100% / 12 * 6 - 20px);
		height: 555px;
		padding: 30px
	}

	.first-menu {
		row-gap: 16px
	}

	.first-menu__link:first-child {
		margin-right: 30%
	}

	.section-title {
		margin-bottom: 40px;
		font-size: 34px
	}

	.section-title--inner {
		font-size: 30px
	}

	.section-title--sm {
		font-size: 22px;
		margin-bottom: 30px
	}

	.link span {
		font-size: 16px
	}

	.link svg {
		width: 18px;
		height: 18px
	}

	.social {
		margin-bottom: 80px
	}

	.social__left {
		padding-left: 30px
	}

	.social__title {
		font-size: 22px
	}

	.yt {
		margin-bottom: 80px
	}

	.yt .btn {
		top: -4px
	}

	.yt-carousel__img {
		height: 172px;
		border-radius: 30px
	}

	.yt-carousel__img::before {
		width: 70px;
		height: 70px
	}

	.yt-carousel .slick-arrow {
		top: -84px
	}

	.faq__header span {
		font-size: 14px
	}

	.faq__text p {
		font-size: 12px
	}

	.advant {
		margin-bottom: 80px
	}

	.advant__grid {
		grid-template-columns: calc(50% - 20px) repeat(2, calc(25% - 10px));
		grid-template-rows: repeat(3, auto)
	}

	.advant__area:nth-child(2) {
		grid-area: 1/2/2/3
	}

	.advant__area:nth-child(3) {
		grid-area: 1/3/2/4
	}

	.advant__area:nth-child(4) {
		grid-area: 2/2/3/3
	}

	.advant__area:nth-child(5) {
		grid-area: 2/3/3/4
	}

	.advant__area:nth-child(6) {
		grid-area: 3/1/4/2
	}

	.advant__area:nth-child(7) {
		grid-area: 3/2/4/4
	}

	.advant__area:nth-child(8) {
		grid-area: 2/1/3/2
	}

	.advant__title {
		padding-left: 40px;
		padding-right: 40px;
		font-size: 34px;
		line-height: 41px
	}

	.advant__name {
		font-size: 14px
	}

	.advant__desc {
		font-size: 12px
	}

	.request {
		margin-bottom: 80px
	}

	.request__grid {
		grid-template-rows: 180px 282px
	}

	.request__desc {
		padding: 40px 76px 40px 40px;
		border-radius: 0px
	}

	.request__title {
		margin-bottom: 25px;
		font-size: 22px
	}

	.request__text {
		font-size: 12px
	}

	.request .btn {
		width: 204px;
		height: 59px;
		font-size: 14px
	}

	.scheme {
		margin-bottom: 80px
	}

	.scheme__step {
		padding: 25px
	}

	.scheme__icon {
		width: 30px;
		height: 30px;
		margin-bottom: 70px
	}

	.scheme__title {
		font-size: 16px
	}

	.scheme__text {
		font-size: 12px
	}

	.s-request {
		padding: 43px 30px
	}

	.s-request__text {
		margin-bottom: 20px;
		font-size: 24px;
		line-height: 29px
	}

	.s-request__btn,
	.s-request__full-btn {
		width: 196px;
		height: 55px;
		font-size: 14px
	}

	.video-card__date {
		padding: 6px 12px
	}

	.video-card__text {
		font-size: 12px
	}

	.m-blog {
		margin-bottom: 80px
	}

	.m-blog__header {
		margin-bottom: 50px
	}

	.m-blog__nav {
		gap: 14px
	}

	.m-blog__link {
		padding: 10px 14px;
		font-size: 12px;
		line-height: 15px
	}

	.preview__title {
		min-height: 54px;
		margin-bottom: 25px;
		font-size: 12px
	}

	.preview--bg .preview__content {
		padding: 20px
	}

	.section__text {
		max-width: 600px;
		margin-bottom: 30px
	}

	.carousel .slick-arrow {
		top: -84px
	}

	.card__img {
		height: 242px
	}

	.carousel-three .slick-arrow {
		top: -84px
	}

	.card-stock__img {
		height: 220px
	}

	.card-stock__desc {
		height: calc(100% - 180px)
	}

	.card-stock__name,
	.card-stock__price {
		font-size: 14px
	}

	.card-stock__info {
		column-gap: 14px
	}

	.card-stock__info span {
		font-size: 12px
	}

	.card-stock__info span::after {
		right: -8px;
		width: 3px;
		height: 3px
	}

	.card-row__img {
		width: 150px;
		height: 141px
	}

	.card-row__desc {
		width: calc(100% - 150px);
		padding: 20px 30px
	}

	.card-row__car {
		width: 29.2%
	}

	.card-row__info {
		width: 41.2%;
		column-gap: 5px;
		padding-top: 12px;
		grid-template-columns: 41px 57px 1fr
	}

	.card-row__price {
		width: 29.6%
	}

	.card-row__price>p:first-child {
		font-size: 16px
	}

	.card-row__price>p:first-child span {
		font-size: 12px
	}

	.card-row__price-toggle>span {
		width: 148px;
		height: 26px
	}

	.card-row__name {
		font-size: 16px
	}

	.card-row__col {
		row-gap: 4px
	}

	.card-row--glry .card-row__desc {
		width: calc(100% - 254px)
	}

	.card-row--glry .card-row__info {
		width: 43%
	}

	.card-row--glry .card-row__price {
		width: 28.5%
	}

	.card-row__gallery {
		width: 254px
	}

	.filter {
		padding: 30px;
		border-radius: 30px
	}

	.brands__item {
		width: 164px;
		height: 66px;
		padding: 0 18px;
		border-radius: 15px;
		font-size: 12px
	}

	.filter-nowrap {
		margin-bottom: 30px
	}

	.filter-menu {
		margin-bottom: 20px
	}

	.filter-menu__list {
		gap: 10px
	}

	.filter-menu__link {
		padding: 10px 13px
	}

	.filter-menu__group {
		gap: 10px
	}

	.filter-menu__checkbox label {
		height: 36px;
		padding: 0 14px 0 40px
	}

	.filter-menu__checkbox label::before {
		top: 9px;
		width: 18px;
		height: 18px
	}

	.hits__select {
		max-height: 320px
	}

	.card-sm {
		padding: 30px
	}

	.card-sm__title {
		font-size: 14px
	}

	.card-sm__img {
		height: 145px;
		border-radius: 20px
	}

	.card-sm__price {
		font-size: 16px
	}

	.card-sm__price svg {
		width: 22px;
		height: 22px
	}

	.card-type {
		padding: 40px;
		border-radius: 30px
	}

	.card-type__img {
		height: 110px;
		margin-bottom: 20px
	}

	.card-type__title {
		font-size: 14px;
		line-height: 17px
	}

	.card-type__desc {
		font-size: 12px
	}

	.yt-card__img {
		border-radius: 30px
	}

	.yt-card__img::before {
		width: 70px;
		height: 70px
	}

	.yt-card__img::after {
		border-radius: 30px
	}

	.dropdown {
		padding: 30px
	}

	.dropdown__link span {
		font-size: 12px
	}

	.dropdown__img {
		height: 82px
	}

	.drop-tabs {
		column-gap: 10px;
		margin-bottom: 20px
	}

	.box {
		margin-bottom: 80px
	}

	.box__title {
		margin-bottom: 30px;
		font-size: 24px
	}

	.box--mb20:last-child {
		margin-bottom: 80px !important
	}

	.box__wrap {
		padding: 60px 40px
	}

	.box__wrap--main {
		padding: 80px 40px
	}

	.box__wrap--main .carousel .slick-arrow,
	.box__wrap--main .carousel-three .slick-arrow {
		top: -84px
	}

	.box__wrap--first {
		padding: 40px
	}

	.box__wrap--tr {
		padding-top: 20px !important
	}

	.box__wrap--tr .first-left {
		width: calc(100% / 12 * 6.7 - 20px);
		padding-left: 40px
	}

	.box__wrap--tr .first-right {
		width: calc(100% / 12 * 5.3 - 20px);
		height: 450px
	}

	.box__wrap--tr .first-menu__link {
		width: 150px
	}

	.box__wrap--tr .first-menu__link:first-child {
		margin-right: 0
	}

	.box__column {
		row-gap: 80px
	}

	.box--social .box__wrap img {
		height: 400px
	}

	.box__sidebar {
		display: grid;
		grid-template-columns: repeat(2, calc(50% - 10px));
		width: 100%;
		row-gap: 40px
	}

	.box__content {
		width: 100%
	}

	.box__content .card-row__price>p:first-child span {
		font-size: 12px
	}

	.catalog__footer {
		margin-top: 40px
	}

	.car-card__header p {
		font-size: 12px
	}

	.car-card .section-title {
		font-size: 30px
	}

	.car-card__footer p {
		order: 1;
		width: 100%
	}

	.car-card__btns {
		margin-left: auto
	}

	.car-card__btns .btn {
		width: 225px;
		height: 59px;
		font-size: 14px
	}

	.car-card__desc {
		padding: 30px
	}

	.car-card__desc p {
		font-size: 12px
	}

	.gallery__thumbs .slick-slide img {
		height: 100px
	}

	.specifs {
		padding: 30px
	}

	.specifs__col {
		grid-template-columns: repeat(2, 1fr)
	}

	.specifs__col span {
		font-size: 12px
	}

	.car-price {
		margin-bottom: 30px
	}

	.auction-list__toggle,
	.car-price__item span {
		font-size: 12px
	}

	.auction-list__toggle svg {
		width: 12px;
		height: 12px
	}

	.auction-list__item span {
		font-size: 12px
	}

	.auction-list__item span:nth-child(2) {
		max-width: 252px
	}

	.price-breakdown--abs {
		position: fixed;
		top: 0;
		left: 50%;
		transform: translatex(-50%);
		width: 100%;
		height: 100vh;
		overflow-y: auto;
		padding: 50px 30px;
		border: none;
		border-radius: 0
	}

	.price-breakdown__close {
		display: block
	}

	.price-breakdown__header {
		margin-bottom: 18px;
		padding-bottom: 18px
	}

	.price-breakdown__title {
		font-size: 12px
	}

	.price-breakdown__average {
		font-size: 16px
	}

	.price-breakdown__section {
		grid-template-columns: 1fr 90px;
		column-gap: 5px;
		margin-bottom: 18px;
		padding-bottom: 18px
	}

	.price-breakdown__price,
	.price-breakdown__subtitle,
	.price-breakdown__text {
		font-size: 12px
	}

	.price-breakdown__footer .btn {
		width: 210px;
		height: 61px;
		font-size: 14px
	}

	.price-breakdown__total span {
		font-size: 14px
	}

	.price-breakdown__disclaimer {
		margin-top: 30px
	}

	.calc-toggle {
		margin-bottom: 40px
	}

	.calc-toggle__row {
		gap: 16px
	}

	.calc-toggle__btn {
		font-size: 12px
	}

	.text {
		margin-bottom: 40px
	}

	.text p {
		font-size: 12px
	}

	.exchange {
		column-gap: 33px;
		row-gap: 14px;
		font-size: 14px
	}

	.exchange--row {
		row-gap: 0;
		margin-bottom: 30px
	}

	.card-moto {
		flex-direction: column
	}

	.card-moto__desc,
	.card-moto__left {
		width: 100%
	}

	.card-moto__name {
		font-size: 16px
	}

	.filter-group {
		row-gap: 20px;
		padding: 30px;
		border-radius: 30px
	}

	.filter-group__section {
		padding-bottom: 20px
	}

	.moto-brands {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(6, auto)
	}

	.type-moto {
		grid-template-columns: repeat(6, 1fr)
	}

	.car {
		margin-bottom: 30px
	}

	.car--grid {
		grid-template-columns: 420px 1fr
	}

	.car__title {
		margin-bottom: 35px;
		font-size: 30px
	}

	.car__info {
		margin-bottom: 35px
	}

	.car__info span {
		font-size: 12px
	}

	.car__price {
		margin-bottom: 35px;
		font-size: 20px
	}

	.car .btn {
		width: 348px;
		height: 61px;
		font-size: 14px
	}

	.car-gallery .item {
		height: 244px
	}

	.car-other__title {
		margin-bottom: 18px;
		font-size: 20px
	}

	.car-other__item {
		padding: 20px 30px
	}

	.car-other__name {
		font-size: 14px
	}

	.car-other__info p {
		font-size: 12px
	}

	.card-video__title {
		font-size: 14px
	}

	.card-video__img {
		height: 244px;
		border-radius: 30px
	}

	.card-video__img::before {
		width: 70px;
		height: 70px
	}

	.gnr-sets__years {
		margin-bottom: 35px;
		font-size: 12px
	}

	.gnr-sets__section {
		margin-bottom: 35px
	}

	.gnr-sets__subtitle {
		font-size: 16px
	}

	.sets-carousel {
		margin-right: 125px
	}

	.sets-carousel .item img {
		height: 74px;
		border-radius: 16px
	}

	.selection {
		row-gap: 30px
	}

	.selection__title {
		margin-bottom: 20px;
		font-size: 14px
	}

	.selection__radio label {
		padding: 20px 20px 20px 75px;
		font-size: 14px
	}

	.selection__radio label::before {
		top: 20px;
		left: 20px;
		width: 38px;
		height: 38px
	}

	.selection__radio input:checked+label::before {
		background-size: 18px
	}

	.selection__radio--lg label {
		padding-left: 75px;
		font-size: 18px
	}

	.selection__radio--lg label::before {
		width: 40px;
		height: 40px
	}

	.selection__radio--lg input:checked+label::before {
		background-size: 20px
	}

	.contacts__icon {
		width: 28px;
		height: 28px;
		margin-top: 7px
	}

	.contacts__text {
		width: calc(100% - 38px)
	}

	.contacts__text a {
		font-size: 26px
	}

	.contacts__text address {
		font-size: 14px
	}

	.contacts__title {
		font-size: 26px
	}

	.team__item {
		padding: 40px 30px
	}

	.team__member {
		column-gap: 12px
	}

	.team__img {
		width: 60px;
		height: 60px
	}

	.team__name p {
		font-size: 12px
	}

	.team__name p:first-child {
		margin-bottom: 6px;
		font-size: 14px
	}

	.team__tel a {
		font-size: 20px
	}

	.requis {
		row-gap: 25px
	}

	.requis__title {
		font-size: 24px
	}

	.requis__list,
	.requis__load p {
		font-size: 14px
	}

	.requis__load span {
		font-size: 12px
	}

	.calc-wrap__footer {
		margin-top: 0
	}

	.calc {
		grid-template-columns: 100%
	}

	.calc .form-checkbox {
		margin-top: 0
	}

	.calc-table__wrap {
		overflow-x: auto;
		margin-left: -40px;
		margin-right: -40px;
		padding: 0 40px 10px
	}

	.calc-table__footer,
	.calc-table__section {
		width: 480px
	}

	.share__label {
		font-size: 24px
	}

	.account__wrap {
		width: 100%
	}

	.account__wrap .btn {
		width: 100%;
		max-width: 280px
	}

	.add-btn {
		margin-left: 50px
	}

	.comparison {
		margin: 0 -40px;
		padding: 0 40px 10px
	}

	.contract__col {
		width: 560px
	}

	.sets-catalog__nav {
		grid-template-columns: repeat(4, 1fr)
	}

	.contract-nav {
		column-gap: 20px;
		margin-left: -40px;
		margin-right: -40px;
		padding-left: 40px;
		padding-right: 40px
	}

	.contract-nav__item::after {
		margin-left: 0
	}

	.entry__title {
		font-size: 24px
	}

	.tracking input {
		width: 400px
	}

	.tracking .btn {
		width: 240px
	}

	.track-auto {
		margin-bottom: 80px
	}

	.first-carousel {
		width: 470px
	}

	.first-carousel .item {
		height: 480px;
		border-radius: 0px
	}

	.review-card__img {
		height: 300px
	}

	.review-card__img--video::before {
		width: 70px;
		height: 70px
	}

	.review-card__label {
		padding: 6px 12px
	}

	.review-card__name {
		font-size: 12px
	}

	.review-card--text {
		padding: 25px
	}

	.review-card__text {
		max-height: 120px;
		margin-bottom: 10px
	}

	.review-card__text p {
		font-size: 14px
	}

	.review-card__thumbs a {
		height: 65px
	}

	.review-card__time {
		font-size: 12px
	}

	.social-two {
		padding: 80px 60px
	}

	.reviews--four .reviews__grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.card-row-carousel {
		width: 150px
	}

	.toggle-theme {
		order: 1
	}

	.hero {
		padding: 80px 40px 45px
	}

	.hero__title {
		margin-bottom: 30px;
		font-size: 38px
	}

	.hero__text {
		font-size: 14px
	}

	.hero--full .hero__img {
		bottom: 145px
	}

	.err404 {
		padding-top: 0
	}

	.err404__area {
		height: 176px
	}

	.err404__area:nth-child(2) {
		padding: 0 40px
	}

	.err404__area:nth-child(3) {
		height: 460px
	}

	.err404__title {
		font-size: 130px
	}

	.err404__text--center {
		max-width: 420px
	}

	.err404__text p {
		font-size: 18px;
		margin-bottom: 20px
	}

	.err404__img {
		height: 460px
	}

	.carousel404__item {
		height: 146px;
		gap: 30px;
		padding: 0 15px
	}

	.carousel404__item p {
		font-size: 130px
	}

	.insurance__col {
		width: 100%
	}

	.damage__scheme {
		column-gap: 40px
	}

	.damage__img {
		width: calc(50% - 20px);
		height: 400px
	}

	.damage__img .damage__marker {
		top: 80px
	}

	.car-sets__qnt span {
		display: none
	}

	.video-grid--4 {
		grid-template-columns: repeat(2, 1fr)
	}

	.video-grid--5 {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media screen and (max-width:1023px) {
	.container {
		width: 760px
	}

	.form-code label {
		width: 234px
	}

	.form-code__grid {
		gap: 10px;
		width: 234px;
		margin-bottom: 20px
	}

	.form-code__grid input {
		height: 50px
	}

	.form-file .filename {
		font-size: 14px
	}

	.header {
		min-height: 1px
	}

	.top-menu__list {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 10px
	}

	.navbar--twotel .navbar__right {
		width: calc(100% / 12 * 7 - 20px)
	}

	.footer__wrap {
		border-radius: 30px 30px 0 0
	}

	.bottom {
		padding: 25px 0
	}

	.bottom__left,
	.bottom__right {
		width: 155px
	}

	.f-top {
		padding-bottom: 25px
	}

	.f-top__left {
		width: calc(100% / 12 * 6 - 20px)
	}

	.f-top__center {
		width: calc(100% / 12 * 12 - 20px);
		order: 4;
		justify-content: center
	}

	.f-top__right {
		width: calc(100% / 12 * 6 - 20px);
		display: flex
	}

	.footerbar {
		padding: 25px 0
	}

	.footerbar__left {
		width: calc(100% / 12 * 12 - 20px);
		order: 1;
		display: grid;
		grid-template-columns: 140px 40px 1fr;
		grid-template-rows: repeat(2, auto);
		grid-column-gap: 30px;
		grid-row-gap: 30px
	}

	.footerbar__right {
		width: calc(100% / 12 * 12 - 20px)
	}

	.footerbar .t-social {
		grid-area: 1/1/2/2;
		margin-bottom: 0
	}

	.footerbar__text {
		grid-area: 2/3/3/4;
		align-self: center;
		max-width: none;
		margin-bottom: 0
	}

	.footerbar__btns {
		grid-area: 2/1/3/3
	}

	.footerbar .city {
		display: none
	}

	.f-contacts {
		grid-area: 1/2/2/4;
		flex-direction: row;
		column-gap: 30px;
		margin-bottom: 0
	}

	.f-contacts__row {
		flex-direction: row;
		align-items: center;
		column-gap: 20px
	}

	.f-contacts .office__info {
		max-width: 210px;
		min-width: 1px
	}

	.modal__inner {
		width: 355px;
		padding: 70px 30px;
		border-radius: 30px
	}

	.modal__inner .btn {
		margin: 20px 0 10px;
		height: 50px;
		font-size: 12px
	}

	.modal__inner .form-checkbox {
		justify-content: flex-start
	}

	.modal__inner .form-checkbox label {
		padding-top: 2px;
		font-size: 10px
	}

	.modal__title {
		margin-bottom: 15px;
		font-size: 20px
	}

	.modal__text {
		margin: 0 0 30px;
		font-size: 12px
	}

	.modal__inputs {
		margin-bottom: 30px
	}

	.modal__btns {
		margin-bottom: 10px;
		margin-top: -15px
	}

	.modal__btns .btn {
		margin: 0
	}

	#js-modal-city .modal__inner {
		width: calc(100% - 20px)
	}

	.close-btn,
	.close-btn:focus,
	.close-btn:hover {
		top: 20px;
		right: 20px;
		width: 50px;
		height: 50px
	}

	.first-left {
		width: calc(100% / 12 * 12 - 20px)
	}

	.first-left .btn {
		width: 177px;
		height: 50px;
		font-size: 12px
	}

	.first-right {
		width: calc(100% / 12 * 12 - 20px);
		height: 380px;
		border-radius: 0px
	}

	.first-menu__link {
		border-radius: 20px
	}

	.first-menu__link:first-child {
		margin-right: 0
	}

	h1.section-title .btn {
		font-size: 14px
	}

	.social__left {
		width: calc(100% / 12 * 6 - 20px);
		border-radius: 30px
	}

	.social__right {
		width: calc(100% / 12 * 6 - 20px)
	}

	.social__title {
		font-size: 18px
	}

	.social__link {
		width: calc(100% / 12 * 6 - 20px);
		border-radius: 30px
	}

	.yt .btn {
		right: 154px;
		font-size: 14px
	}

	.yt-carousel__img {
		height: 202px
	}

	.yt-carousel .slick-arrow {
		top: -81px
	}

	.yt-carousel__title {
		margin-top: 16px;
		font-size: 16px
	}

	.advant__grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.advant__area:first-child {
		grid-area: 1/1/2/3
	}

	.advant__area:nth-child(2) {
		grid-area: 1/3/2/4
	}

	.advant__area:nth-child(3) {
		grid-area: 2/1/3/2
	}

	.advant__area:nth-child(4) {
		grid-area: 2/2/3/3
	}

	.advant__area:nth-child(5) {
		grid-area: 2/3/3/4
	}

	.advant__area:nth-child(6) {
		grid-area: 3/2/4/3
	}

	.advant__area:nth-child(7) {
		grid-area: 3/3/4/4
	}

	.advant__area:nth-child(8) {
		grid-area: 3/1/4/2
	}

	.advant__img,
	.advant__title {
		border-radius: 30px
	}

	.advant__img img {
		object-position: 90% center
	}

	.advant__item {
		border-radius: 30px
	}

	.request__grid {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto 180px
	}

	.request__area:first-child {
		grid-area: 1/1/2/4
	}

	.request__area:nth-child(2) {
		grid-area: 2/1/3/2
	}

	.request__area:nth-child(3) {
		grid-area: 2/3/3/4
	}

	.request__area:nth-child(4) {
		grid-area: 2/2/3/3
	}

	.request__desc {
		padding: 40px;
		border-radius: 30px
	}

	.request__text,
	.request__title {
		max-width: 354px
	}

	.request__img {
		border-radius: 30px
	}

	.scheme {
		margin-bottom: 70px
	}

	.scheme__grid {
		grid-template-columns: repeat(6, 1fr);
		grid-template-rows: repeat(3, auto)
	}

	.scheme__area {
		border-radius: 30px
	}

	.scheme__area:first-child {
		grid-area: 1/1/2/3
	}

	.scheme__area:nth-child(2) {
		grid-area: 1/3/2/5
	}

	.scheme__area:nth-child(3) {
		grid-area: 1/5/2/7
	}

	.scheme__area:nth-child(4) {
		grid-area: 2/1/3/4
	}

	.scheme__area:nth-child(5) {
		grid-area: 2/4/3/7
	}

	.scheme__area:nth-child(6) {
		grid-area: 3/1/4/3
	}

	.scheme__area:nth-child(7) {
		grid-area: 3/3/4/7
	}

	.scheme__step {
		padding: 25px 29px
	}

	.preview,
	.preview__img,
	.preview__img::before {
		border-radius: 30px
	}

	.preview__content {
		height: 280px;
		aspect-ratio: auto
	}

	.preview__title {
		min-height: 72px;
		margin-bottom: 20px
	}

	.card {
		border-radius: 21px
	}

	.card__img {
		height: 276px;
		border-radius: 20px
	}

	.card__desc {
		border-radius: 20px
	}

	.card__car {
		margin-bottom: 20px
	}

	.card__year {
		font-size: 12px
	}

	.card__name {
		font-size: 16px
	}

	.card__name span {
		font-size: 12px
	}

	.card__info {
		margin-bottom: 20px
	}

	.card__row:first-child {
		margin-bottom: 10px;
		padding-bottom: 10px
	}

	.card__row:first-child .card__item span:nth-child(2) {
		font-size: 12px
	}

	.card__price>p {
		font-size: 16px
	}

	.card-stock {
		border-radius: 31px
	}

	.card-stock__img {
		height: 252px;
		border-radius: 30px
	}

	.card-stock__desc {
		height: calc(100% - 196px);
		border-radius: 30px
	}

	.card-row {
		border-radius: 20px
	}

	.card-row__img {
		width: 173px;
		height: 190px;
		border-radius: 20px
	}

	.card-row__desc {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, auto);
		grid-column-gap: 30px;
		grid-row-gap: 20px;
		width: calc(100% - 173px)
	}

	.card-row__car {
		grid-area: 1/1/2/2;
		width: auto;
		padding: 0;
		border-right: none
	}

	.card-row__info {
		grid-area: 2/1/3/2;
		width: auto;
		padding: 0;
		border-right: none
	}

	.card-row__price {
		grid-area: 1/2/3/3;
		width: auto;
		padding-left: 30px;
		border-left: 1px solid #eeebde;
		align-self: stretch;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center
	}

	.card-row--glry .card-row__desc {
		width: 100%;
		padding: 20px
	}

	.card-row--glry .card-row__car,
	.card-row--glry .card-row__info,
	.card-row--glry .card-row__price {
		width: auto
	}

	.card-row__gallery {
		width: 100%
	}

	.card-row__gallery .card-row__img {
		height: 200px
	}

	.filter,
	.filter__full {
		grid-template-columns: repeat(2, 1fr)
	}

	.filter__full .form-range {
		grid-column-start: 1
	}

	.brands__item {
		width: 154px;
		height: 54px
	}

	.brands__item img {
		width: 26px;
		height: 26px
	}

	.filter-nowrap .btn {
		font-size: 12px
	}

	.hits {
		grid-template-columns: repeat(2, 1fr)
	}

	.card-sm,
	.hits__select {
		border-radius: 30px
	}

	.card-type {
		padding: 30px
	}

	.yt-card__title {
		margin-top: 16px;
		font-size: 16px
	}

	.box__wrap {
		border-radius: 0px
	}

	.box__wrap--first {
		padding: 40px
	}

	.box__wrap--tr .first-left,
	.box__wrap--tr .first-right {
		width: calc(100% / 12 * 12 - 20px)
	}

	.box__wrap--tr .first-right {
		height: 380px
	}

	.box__grid--lg {
		grid-template-columns: 100%
	}

	.box__grid--lg .box__wrap--main {
		padding: 40px
	}

	.box__grid--rev {
		display: flex;
		flex-direction: column-reverse
	}

	.box--social .box__grid {
		grid-template-columns: 100%
	}

	.breadcrumbs {
		margin-bottom: 30px
	}

	.attention {
		border-radius: 15px
	}

	.catalog__footer {
		flex-direction: column;
		row-gap: 30px;
		margin-top: 30px
	}

	.car-brands {
		margin-bottom: 80px
	}

	.car-brands__link {
		font-size: 14px
	}

	.car-card__desc {
		border-radius: 30px;
		margin-bottom: 20px
	}

	.car-card--two {
		grid-template-columns: 100%;
		grid-template-rows: auto;
		margin-bottom: 80px
	}

	.car-card--two .car-card__left {
		grid-area: 3/1/4/2
	}

	.car-card--two .car-card__footer {
		grid-area: 4/1/5/2
	}

	.gallery__carousel img {
		border-radius: 30px
	}

	.gallery__thumbs .slick-slide {
		margin-right: 0
	}

	.gallery__thumbs .slick-slide img {
		height: 84px
	}

	.gallery__thumbs .slick-slide::before {
		border-width: 2px
	}

	.specifs {
		border-radius: 30px
	}

	.auction-list__item span:nth-child(2) {
		max-width: 205px
	}

	.calc-toggle {
		position: relative;
		flex-wrap: nowrap;
		margin: 0 -40px 30px
	}

	.calc-toggle__row {
		padding: 0 40px 10px
	}

	.calc-toggle__btn {
		flex: none
	}

	.exchange--row {
		row-gap: 6px
	}

	.exchange--row span:first-child {
		width: 100%
	}

	.exchange--row span:last-child {
		margin-left: 0
	}

	.found__title {
		margin-bottom: 20px;
		font-size: 24px
	}

	.catalog-grid--four {
		grid-template-columns: repeat(2, 1fr)
	}

	.card-moto,
	.card-moto__img {
		border-radius: 30px
	}

	.card-moto__price {
		font-size: 16px
	}

	.card-moto__price span {
		font-size: 14px
	}

	.filter-group__section:last-child {
		display: none
	}

	.filter-group__section:nth-last-child(2) {
		padding-bottom: 0;
		border-bottom: none
	}

	.car--grid {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		row-gap: 0
	}

	.car--grid .car__left {
		width: 100%;
		padding-bottom: 30px
	}

	.car--grid .car__right {
		order: -1;
		width: 100%
	}

	.car--grid .car__bottom {
		width: 100%
	}

	.car .btn {
		width: 307px;
		height: 58px;
		font-size: 12px
	}

	.car-gallery {
		padding: 20px 10px 40px;
		border-radius: 30px
	}

	.car-gallery .item {
		height: auto;
		aspect-ratio: 2
	}

	.car-gallery .item img {
		border-radius: 15px
	}

	.car-gallery .slick-dots {
		bottom: 14px
	}

	.car-gallery .slick-dots li button {
		width: 6px;
		height: 6px
	}

	.car-other__item {
		column-gap: 20px;
		padding: 20px;
		border-radius: 20px
	}

	.car-other__img {
		width: 118px;
		height: 69px
	}

	.car-other__desc {
		width: calc(100% - 138px)
	}

	.car-other--sm .car-other__item {
		flex-direction: row
	}

	.car-other--sm .car-other__desc {
		width: calc(100% - 138px)
	}

	.card-video__img {
		height: 202px
	}

	.sets-carousel {
		margin: 0 -40px 16px;
		padding: 0 40px
	}

	.sets-carousel .slick-list {
		overflow: visible
	}

	.sets-carousel .item img {
		width: 133px
	}

	.sets-table {
		overflow-x: auto;
		margin: 0 -40px;
		padding: 0 40px 17px
	}

	.sets-table table {
		width: 880px
	}

	.selection__radio label {
		row-gap: 15px;
		padding: 15px 10px 15px 58px;
		border-radius: 20px;
		font-size: 12px
	}

	.selection__radio label::before {
		top: 15px;
		left: 15px;
		width: 28px;
		height: 28px
	}

	.selection__radio input:checked+label::before {
		background-size: 16px
	}

	.selection__radio--lg label {
		padding-left: 58px;
		font-size: 16px
	}

	.selection__radio--lg label::before {
		width: 28px;
		height: 28px
	}

	.selection__radio--lg input:checked+label::before {
		background-size: 16px
	}

	.calc-nav {
		margin-left: -60px;
		margin-right: -60px;
		padding: 0 60px 10px
	}

	.calc-nav .btn-border {
		font-size: 14px
	}

	.blog__header {
		margin-bottom: 30px
	}

	.blog__grid {
		grid-template-columns: 100%;
		row-gap: 30px;
		margin-bottom: 40px
	}

	.blog__footer {
		flex-direction: column;
		row-gap: 30px
	}

	.preview-row {
		border-radius: 30px
	}

	.preview-row:hover {
		border-color: transparent
	}

	.preview-row__img {
		border-radius: 30px
	}

	.preview-row__right {
		padding: 0
	}

	.map {
		border-radius: 30px
	}

	.contacts__icon {
		margin-top: 2px
	}

	.contacts__text a,
	.contacts__title {
		font-size: 20px
	}

	.team {
		grid-template-columns: repeat(2, 1fr)
	}

	.team__item {
		padding: 40px 50px;
		border-radius: 30px
	}

	.requis__load {
		border-radius: 20px
	}

	.requis__load img {
		margin-bottom: 16px
	}

	.article ol,
	.article p,
	.article ul {
		margin-bottom: 20px
	}

	.article div {
		margin-bottom: 50px
	}

	.article h2 {
		font-size: 30px;
		margin-bottom: 30px
	}

	.article img {
		border-radius: 40px
	}

	.article .row {
		row-gap: 40px
	}

	.article .col {
		width: 100%
	}

	.article__footer {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 40px
	}

	.account {
		display: flex;
		flex-wrap: wrap;
		justify-content: center
	}

	.account__area {
		width: calc(50% - 10px);
		border-radius: 30px
	}

	.account__area:first-child {
		width: 100%
	}

	.account__link span {
		font-size: 24px
	}

	.account__wrap {
		border-radius: 20px
	}

	.acc-user__name,
	.acc-user__tel {
		font-size: 14px
	}

	.comparison__img {
		border-radius: 20px
	}

	.contract__col {
		width: 100%
	}

	.contract__text p,
	.contract__text ul {
		margin-bottom: 20px
	}

	.contract__load {
		border-radius: 20px
	}

	.sets-catalog {
		row-gap: 40px
	}

	.sets-catalog__title {
		font-size: 24px
	}

	.sets-catalog__nav {
		grid-template-columns: repeat(3, 1fr)
	}

	.sets-catalog__link {
		border-radius: 15px
	}

	.model-range {
		row-gap: 40px
	}

	.model-range__title {
		font-size: 24px
	}

	.model-range__row {
		column-gap: 30px
	}

	.model-range__link {
		font-size: 14px
	}

	.set {
		grid-template-columns: 100%;
		row-gap: 30px
	}

	.track-auto {
		margin-bottom: 70px
	}

	.track-auto__title {
		font-size: 24px
	}

	.track-auto__info {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
		padding: 30px;
		border-radius: 30px
	}

	.first-form__title,
	.track-status__title {
		font-size: 24px
	}

	.first-carousel {
		width: 100%
	}

	.first-carousel .item {
		height: auto;
		min-height: 380px;
		aspect-ratio: 1.3;
		border-radius: 40px
	}

	.first-carousel .slick-dots li button {
		width: 6px;
		height: 6px
	}

	.review-card--text .link span {
		font-size: 12px
	}

	.review-card__thumbs {
		margin-top: 20px;
		margin-bottom: 15px
	}

	.social-two {
		padding: 50px
	}

	.social-two__link {
		width: 74px;
		height: 74px
	}

	.social-two__link svg {
		width: 30px;
		height: 30px
	}

	.reviews__grid {
		row-gap: 30px;
		margin-bottom: 40px
	}

	.reviews__footer {
		flex-direction: column;
		row-gap: 30px
	}

	.card-row-carousel {
		width: 173px
	}

	.card-row-carousel .slick-dots li button {
		width: 6px;
		height: 6px
	}

	.main-carousel .slick-arrow {
		top: auto;
		bottom: 430px;
		transform: none
	}

	.main-carousel .slick-arrow.prev {
		left: -10px
	}

	.main-carousel .slick-arrow.next {
		right: -10px
	}

	.toggle-theme {
		display: none
	}

	.hero {
		padding-top: 60px;
		border-radius: 30px
	}

	.hero .filter .form-range {
		grid-column-start: auto;
		grid-column-end: auto
	}

	.err404__col {
		gap: 14px
	}

	.err404__grid {
		gap: 14px 10px
	}

	.err404__area {
		height: 168px;
		border-radius: 30px
	}

	.err404__area:nth-child(2) {
		padding: 0 55px 0 45px
	}

	.err404__title {
		font-size: 100px
	}

	.err404__text--center {
		max-width: 380px
	}

	.err404__text p {
		margin-bottom: 12px;
		font-size: 16px
	}

	.err404__img {
		border-radius: 30px
	}

	.carousel404__item p {
		font-size: 100px
	}

	.equipment__title {
		margin-bottom: 35px;
		font-size: 20px
	}

	.equipment__item {
		width: 100%;
		font-size: 16px;
		background-size: 24px
	}

	.equipment__item.no {
		background-size: 24px
	}

	.insurance__header {
		margin-bottom: 60px
	}

	.insurance__header p span,
	.insurance__title {
		font-size: 20px
	}

	.damage__scheme {
		margin-bottom: 50px
	}

	.damage__img {
		width: 100%
	}

	.damage__marker {
		width: 25px;
		height: 25px;
		font-size: 18px;
		padding-bottom: 2px
	}

	.damage__legend {
		gap: 15px;
		margin-bottom: 30px
	}

	.damage__item {
		width: calc((100% - 30px)/ 3);
		height: 64px;
		padding: 8px 20px
	}

	.damage__list {
		gap: 15px
	}

	.damage__info {
		padding-left: 20px
	}

	.car-img__item img {
		border-radius: 30px
	}

	.report__title {
		font-size: 20px
	}

	.report__subsection {
		flex-wrap: wrap
	}

	.report__item {
		padding: 20px 0
	}

	.report__item span {
		font-size: 20px
	}

	.report__item span:nth-child(2) {
		height: 34px
	}

	.report__subtitle {
		width: 100%;
		padding-top: 30px;
		font-weight: 500;
		font-size: 20px
	}

	.car-sets__img {
		display: none
	}

	.car-media__nav {
		margin-left: calc(((100vw - 760px)/ 2 + 55px) * -1);
		margin-right: calc(((100vw - 760px)/ 2 + 55px) * -1);
		padding-left: calc((100vw - 760px)/ 2 + 55px);
		padding-right: calc((100vw - 760px)/ 2 + 55px)
	}

	.car-media__bigimg {
		border-radius: 30px
	}

	.car-media__thumbs {
		padding-bottom: 60px
	}

	.car-media__thumbs .slick-list {
		overflow: visible
	}

	.car-media__thumbs .slick-slide {
		width: 127px;
		height: 84px
	}

	.car-media__img {
		border-radius: 15px
	}

	.media-tabs__nav {
		left: 10px;
		top: 150px
	}

	.media-tabs__nav a {
		width: 50px;
		height: 50px
	}

	.media-tabs__nav a img {
		width: 100%;
		height: 100%
	}

	.video-grid {
		gap: 25px
	}

	.video-grid--4 .yt-card__img {
		border-radius: 25px
	}

	.video-grid--5 {
		grid-template-columns: repeat(2, 1fr)
	}

	.video-grid--5 .yt-card__img {
		border-radius: 25px
	}
}

@media screen and (max-width:767px) {
	.container {
		width: 560px
	}

	.form-range--lg .irs-grid-text {
		font-size: 10px
	}

	.header--sm .navbar,
	.header--sm .top {
		display: none
	}

	.top__center {
		order: -1;
		justify-content: flex-start
	}

	.navbar__contacts:nth-child(2) {
		margin-left: 10px
	}

	.navbar--twotel .navbar__center {
		width: calc(100% / 12 * 2.8 - 20px)
	}

	.navbar--twotel .navbar__right {
		width: calc(100% / 12 * 9.2 - 20px)
	}

	.footer__wrap {
		padding: 0 30px
	}

	.bottom {
		flex-direction: column;
		row-gap: 20px
	}

	.bottom__left,
	.bottom__right {
		width: 100%;
		text-align: center
	}

	.footerbar__left {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center
	}

	.footerbar__text {
		order: 1;
		text-align: center
	}

	.f-menu {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 20px
	}

	.f-contacts {
		column-gap: 25px;
		justify-content: center
	}

	.mobile-nav__link {
		font-size: 16px
	}

	.mob-dropdown__link {
		font-size: 14px
	}

	.city-search form {
		margin-bottom: 30px
	}

	.city-search form input {
		width: 100%;
		height: 58px;
		margin-bottom: 15px;
		font-size: 12px
	}

	.city-search form .btn {
		width: 113px;
		height: 48px;
		font-size: 12px;
		margin-left: auto
	}

	.city-search__list {
		grid-template-columns: repeat(2, 1fr);
		max-height: 270px
	}

	.city-search__link {
		font-size: 12px
	}

	.yt .container {
		padding-bottom: 90px
	}

	.yt .btn {
		top: auto;
		bottom: 0;
		left: 10px;
		right: auto
	}

	.yt-carousel__item {
		width: 325px
	}

	.yt-carousel__img {
		height: 184px
	}

	.yt-carousel .slick-arrow {
		top: auto;
		bottom: -90px
	}

	.faq {
		row-gap: 20px
	}

	.faq__col {
		width: calc(100% / 12 * 12 - 20px)
	}

	.advant__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(5, auto)
	}

	.advant__area:nth-child(2) {
		grid-area: 2/1/3/2
	}

	.advant__area:nth-child(3) {
		grid-area: 2/2/3/3
	}

	.advant__area:nth-child(4) {
		grid-area: 3/1/4/2
	}

	.advant__area:nth-child(5) {
		grid-area: 3/2/4/3
	}

	.advant__area:nth-child(6) {
		grid-area: 4/1/5/2
	}

	.advant__area:nth-child(7) {
		grid-area: 4/2/5/3
	}

	.advant__area:nth-child(8) {
		grid-area: 5/1/6/3
	}

	.advant__title {
		padding: 50px 100px 50px 40px
	}

	.request__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto 180px 130px
	}

	.request__area:first-child {
		grid-area: 1/1/2/3
	}

	.request__area:nth-child(2) {
		grid-area: 3/1/4/2
	}

	.request__area:nth-child(3) {
		grid-area: 3/2/4/3
	}

	.request__area:nth-child(4) {
		grid-area: 2/1/3/3
	}

	.request__area:nth-child(4) .request__img {
		padding: 10px 0
	}

	.scheme__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(5, auto)
	}

	.scheme__area:first-child {
		grid-area: 2/1/3/3
	}

	.scheme__area:nth-child(2) {
		grid-area: 1/1/2/2
	}

	.scheme__area:nth-child(3) {
		grid-area: 1/2/2/3
	}

	.scheme__area:nth-child(4) {
		grid-area: 3/1/4/2
	}

	.scheme__area:nth-child(5) {
		grid-area: 3/2/4/3
	}

	.scheme__area:nth-child(6) {
		grid-area: 4/1/5/3
	}

	.scheme__area:nth-child(7) {
		grid-area: 5/1/6/3
	}

	.scheme__img {
		height: auto;
		aspect-ratio: 2.39
	}

	.video-card__img,
	.video-card__img::after {
		border-radius: 20px
	}

	.m-blog__header {
		display: block
	}

	.m-blog__header .section-title {
		margin-bottom: 30px
	}

	.m-blog__row {
		display: flex;
		overflow-x: auto;
		margin-bottom: 30px;
		margin-right: -10px;
		margin-left: -10px;
		padding-right: 10px;
		padding-left: 10px;
		padding-bottom: 10px
	}

	.m-blog__row .preview:nth-child(n+4) {
		display: block
	}

	.preview {
		width: 233px;
		flex: none
	}

	.preview__desc {
		padding: 15px;
		border-radius: 20px
	}

	.section--slider {
		padding-bottom: 90px
	}

	.section__footer {
		justify-content: flex-start;
		margin-top: 56px
	}

	.section__text {
		font-size: 12px
	}

	.section__text p {
		margin-bottom: 20px
	}

	.carousel .slick-arrow {
		top: auto;
		bottom: -90px
	}

	.carousel .slick-list {
		overflow: visible
	}

	.carousel .card-type {
		width: 260px !important
	}

	.carousel .card,
	.carousel .card-stock,
	.carousel .review-card {
		width: 295px !important
	}

	.carousel .review-card,
	.carousel .video-card {
		width: 325px !important
	}

	.card__img {
		height: 254px
	}

	.card__label {
		top: 20px;
		left: 20px;
		font-size: 10px
	}

	.card__rating {
		top: 20px;
		left: 20px;
		width: 34px;
		height: 20px
	}

	.card__rating svg {
		width: 10px;
		height: 10px
	}

	.card__rating span {
		font-size: 10px
	}

	.card__desc {
		padding: 85px 20px 20px
	}

	.card__name,
	.card__price>p {
		font-size: 14px
	}

	.carousel-three .slick-arrow {
		top: auto;
		bottom: -90px
	}

	.carousel-three .slick-list {
		overflow: visible
	}

	.carousel-three .card-type {
		width: 260px !important
	}

	.carousel-three .card,
	.carousel-three .card-stock,
	.carousel-three .review-card {
		width: 295px !important
	}

	.carousel-three .video-card {
		width: 325px !important
	}

	.card-stock__img {
		height: 232px
	}

	.card-stock__rating {
		bottom: 20px;
		left: 20px;
		width: 34px;
		height: 20px
	}

	.card-stock__rating svg {
		width: 10px;
		height: 10px
	}

	.card-stock__rating span {
		font-size: 10px
	}

	.card-stock__label {
		bottom: 20px;
		right: 20px;
		width: 73px;
		height: 20px;
		font-size: 10px
	}

	.card-stock__desc {
		height: calc(100% - 172px);
		padding: 85px 20px 20px
	}

	.card-row {
		align-items: flex-start
	}

	.card-row__img {
		width: 225px
	}

	.card-row__desc {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		width: calc(100% - 225px);
		padding: 20px
	}

	.card-row__price {
		padding-left: 0;
		padding-top: 20px;
		border-left: none;
		border-top: 1px solid #eeebde
	}

	.card-row__del {
		top: 10px;
		right: 10px
	}

	.card-row__gallery .card-row__img {
		height: 160px
	}

	.filter {
		grid-template-columns: 1fr;
		padding: 20px;
		gap: 18px
	}

	.filter__full {
		grid-template-columns: 100%
	}

	.filter__hmob {
		display: none
	}

	.filter__toggle {
		display: flex;
		justify-content: center;
		padding: 10px
	}

	.brands__item {
		width: 144px
	}

	.filter-nowrap__grid {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		row-gap: 16px
	}

	.filter-nowrap__result {
		order: 1;
		text-align: center;
		padding: 20px 0
	}

	.yt-card {
		width: 325px !important
	}

	.dropdown {
		border-radius: 10px
	}

	.box__title {
		margin-bottom: 20px;
		font-size: 20px
	}

	.box__wrap--main .carousel .slick-arrow,
	.box__wrap--main .carousel-three .slick-arrow {
		top: auto;
		bottom: -90px
	}

	.box__wrap--slider {
		padding-bottom: 160px
	}

	.box__wrap--first {
		padding: 40px
	}

	.box__wrap--tr .first-menu__link {
		width: 140px
	}

	.box__grid {
		grid-template-columns: 100%
	}

	.box__column {
		row-gap: 70px
	}

	.box__sidebar {
		grid-template-columns: 100%
	}

	.box__content .card-row__img {
		width: 225px
	}

	.box__content .card-row__desc {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		width: calc(100% - 225px);
		padding: 20px
	}

	.box__content .card-row__price {
		padding-left: 0;
		padding-top: 20px;
		border-left: none;
		border-top: 1px solid #eeebde
	}

	.box__content .card-row__del {
		top: 10px;
		right: 10px
	}

	.box__content .card-row-carousel {
		width: 225px
	}

	.catalog__header {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 20px;
		margin-bottom: 30px
	}

	.catalog__info p {
		font-size: 12px
	}

	.sort {
		width: 100%;
		max-width: 300px
	}

	.car-card {
		grid-template-columns: 100%
	}

	.car-card__header {
		grid-area: 1/1/2/2
	}

	.car-card__left {
		grid-area: 2/1/3/2
	}

	.car-card__right {
		grid-area: 3/1/4/2
	}

	.gallery__carousel .slick-arrow.prev {
		left: 10px
	}

	.gallery__carousel .slick-arrow.next {
		right: 10px
	}

	.gallery__thumbs .slick-slide {
		padding-right: 6px
	}

	.gallery__thumbs .slick-slide img {
		height: 64px;
		border-radius: 10px
	}

	.gallery__thumbs .slick-slide::before {
		right: 6px;
		border-radius: 10px
	}

	.found__table table {
		width: 400px
	}

	.found__table table th {
		font-size: 12px
	}

	.view-toggle {
		display: none
	}

	.catalog-grid,
	.catalog-grid--four {
		grid-template-columns: 100%
	}

	.moto-brands {
		grid-template-columns: 1fr;
		grid-auto-flow: row
	}

	.car {
		padding-bottom: 78px
	}

	.car__left,
	.car__right {
		width: calc(100% / 12 * 12 - 20px)
	}

	.car .btn {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		max-width: 300px
	}

	.car-gallery .slick-arrow.prev {
		left: 0
	}

	.car-gallery .slick-arrow.next {
		right: 0
	}

	.car-other__grid {
		grid-template-columns: 100%
	}

	.car-other .car-other__grid {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column
	}

	.card-video {
		width: 233px !important
	}

	.card-video__title {
		font-size: 12px
	}

	.card-video__img {
		height: 186px
	}

	.selection__grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.selection__grid--three {
		grid-template-columns: 100%
	}

	.map {
		aspect-ratio: 1.029
	}

	.team {
		grid-template-columns: 100%
	}

	.team__item {
		padding: 30px 55px
	}

	.article img {
		min-height: 275px;
		object-fit: cover
	}

	.article__author img {
		min-height: 1px
	}

	.share {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 12px
	}

	.account__area {
		width: 100%;
		padding: 50px 20px
	}

	.sets-catalog__nav {
		grid-template-columns: repeat(2, 1fr)
	}

	.entry .btn,
	.entry .btn-border {
		width: 100%;
		max-width: 320px
	}

	.entry__grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.entry__row .form-group:first-child,
	.entry__row .form-group:nth-child(2) {
		width: calc(100% / 12 * 12 - 20px)
	}

	.entry__row .form-group:nth-child(3),
	.entry__row .form-group:nth-child(4),
	.entry__row .form-group:nth-child(5),
	.entry__row .form-group:nth-child(6) {
		width: calc(100% / 12 * 6 - 20px)
	}

	.entry__row .form-group:nth-child(7) {
		width: calc(100% / 12 * 12 - 20px)
	}

	.entry__row .form-group:nth-child(8) {
		width: calc(100% / 12 * 6 - 20px)
	}

	.tracking input {
		width: 100%
	}

	.track-auto__info {
		grid-template-columns: repeat(3, 1fr)
	}

	.review-card {
		border-radius: 0px
	}

	.review-card__img {
		height: 260px;
		border-radius: 0px
	}

	.review-card--text {
		padding: 15px
	}

	.review-card__thumbs a {
		height: 60px
	}

	.reviews--four .reviews__grid,
	.reviews__grid {
		grid-template-columns: 100%
	}

	.card-row-carousel {
		width: 225px
	}

	.hero {
		padding: 0;
		border-radius: 0
	}

	.hero__header {
		padding: 20px 30px 40px
	}

	.hero__title {
		color: var(--primary)
	}

	.hero__title span {
		color: var(--secondary)
	}

	.hero__text {
		margin-bottom: 0;
		color: var(--primary)
	}

	.hero .filter {
		padding: 30px
	}

	.hero__footer {
		position: relative;
		padding: 30px;
		border-radius: 30px;
		overflow: hidden
	}

	.hero--full .hero__text,
	.hero--full .hero__title,
	.hero--full .hero__title span {
		color: #fff
	}

	.hero--full .hero__footer {
		position: static
	}

	.hero--full .hero__img {
		bottom: 260px
	}

	.err404__col .container {
		order: 1;
		margin-top: 18px
	}

	.err404__grid {
		grid-template-columns: 100%;
		gap: 10px
	}

	.err404__area {
		height: 140px
	}

	.err404__area:nth-child(2) {
		padding: 0 40px;
		text-align: center
	}

	.err404__text {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center
	}

	.insurance__item span {
		max-width: 320px
	}

	.damage__item {
		width: calc(50% - 8px)
	}

	.car-img__item {
		width: calc(100% / 12 * 12 - 20px)
	}

	.car-media__nav {
		margin-left: calc(((100vw - 560px)/ 2 + 55px) * -1);
		margin-right: calc(((100vw - 560px)/ 2 + 55px) * -1);
		padding-left: calc((100vw - 560px)/ 2 + 55px);
		padding-right: calc((100vw - 560px)/ 2 + 55px)
	}

	.mobile-header {
		display: block
	}

	.video-grid {
		grid-template-columns: 100%
	}

	.video-grid .yt-card {
		width: auto !important
	}

	.video-grid--4,
	.video-grid--5 {
		grid-template-columns: 100%
	}
}

@media screen and (max-width:575px) {
	.container {
		width: 100%
	}

	.form-group textarea {
		min-height: 150px
	}

	.form-group__double .select2 {
		padding-left: 13px
	}

	.form-group__double input {
		padding-left: 28px
	}

	.form-group__double::before {
		left: 6px
	}

	.form-group__double::after {
		left: calc(50% + 6px)
	}

	.form-group__dropdown,
	.form-group__dropdown span {
		padding: 5px
	}

	.form-file {
		width: 230px
	}

	.form-file label {
		height: 62px
	}

	.form-file label span {
		font-size: 14px
	}

	.form-file label i {
		width: 22px;
		height: 22px
	}

	.form-file label i svg {
		width: 14px;
		height: 14px
	}

	.top__center {
		justify-content: center
	}

	.top__right {
		flex-wrap: nowrap;
		gap: 15px
	}

	.navbar__order,
	.navbar__private {
		margin-left: 5px
	}

	.footer {
		padding-bottom: 70px
	}

	.f-contacts {
		flex-direction: column
	}

	.f-contacts .office__info {
		min-width: 146px
	}

	.mobile-menu__footer {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 24px
	}

	.first-left__title {
		margin-bottom: 20px;
		font-size: 30px
	}

	.first-left__text {
		max-width: 251px;
		margin-bottom: 40px;
		font-size: 12px
	}

	.first-menu {
		flex-direction: column
	}

	.first-menu__link {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		column-gap: 20px;
		width: 200px;
		height: 62px;
		padding: 16px 20px
	}

	.first-menu__link svg {
		margin-bottom: 0
	}

	.first-menu__link span {
		width: calc(100% - 45px)
	}

	.section-title {
		margin-bottom: 30px;
		font-size: 26px
	}

	.section-title--inner {
		margin-bottom: 20px;
		font-size: 26px
	}

	.section-title--sm {
		font-size: 20px;
		margin-bottom: 25px
	}

	.link span {
		font-size: 14px
	}

	.link svg {
		width: 16px;
		height: 16px
	}

	.social {
		margin-bottom: 70px
	}

	.social__left {
		width: calc(100% / 12 * 12 - 20px);
		padding: 30px
	}

	.social__right {
		width: calc(100% / 12 * 12 - 20px)
	}

	.social__link {
		max-height: 170px
	}

	.yt {
		margin-bottom: 70px
	}

	.yt-carousel__title {
		margin-top: 12px;
		font-size: 12px
	}

	.faq__item {
		padding: 20px
	}

	.faq__text {
		padding-right: 15px
	}

	.advant {
		margin-bottom: 70px
	}

	.advant__title {
		padding: 50px 30px;
		font-size: 26px;
		line-height: 32px
	}

	.advant__img {
		height: 200px
	}

	.advant__item {
		padding: 20px
	}

	.advant__icon {
		width: 22px;
		height: 22px
	}

	.advant__name {
		margin-bottom: 0;
		font-size: 12px
	}

	.advant__desc {
		display: none
	}

	.request {
		margin-bottom: 70px
	}

	.request__title {
		margin-bottom: 20px;
		font-size: 18px
	}

	.request__text {
		margin-bottom: 40px
	}

	.request .btn {
		width: 166px;
		height: 45px;
		font-size: 12px
	}

	.scheme {
		margin-bottom: 60px
	}

	.scheme__step {
		padding: 20px 18px
	}

	.scheme__icon {
		width: 22px;
		height: 22px;
		margin-bottom: 30px
	}

	.scheme__title {
		margin-bottom: 10px;
		font-size: 14px
	}

	.s-request {
		padding: 30px 20px
	}

	.s-request__text {
		font-size: 20px;
		line-height: 24px
	}

	.s-request__btn,
	.s-request__full-btn {
		width: 141px;
		height: 45px;
		font-size: 12px
	}

	.video-card__img::before {
		width: 50px;
		height: 50px
	}

	.m-blog {
		margin-bottom: 70px
	}

	.m-blog__header {
		margin-bottom: 20px
	}

	.m-blog__nav {
		gap: 12px;
		margin: 0 -10px;
		padding: 0 10px 10px;
		overflow-x: auto
	}

	.card-row {
		flex-direction: column
	}

	.card-row__desc,
	.card-row__img {
		width: 100%
	}

	.card-row__info {
		column-gap: 10px;
		grid-template-columns: 44px 60px 1fr
	}

	.card-row__price>p:first-child {
		display: block;
		font-size: 14px
	}

	.card-row__price>p:first-child span {
		margin-left: 20px
	}

	.card-row__name {
		font-size: 14px
	}

	.card-row--glry .card-row__desc {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 0
	}

	.brands {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 12px
	}

	.brands__item {
		gap: 10px;
		width: auto;
		height: 42px;
		padding: 0 12px
	}

	.brands__item img {
		width: 22px;
		height: 22px
	}

	.filter-nowrap {
		margin-bottom: 20px
	}

	.filter-menu {
		position: relative;
		padding-bottom: 46px
	}

	.filter-menu__list {
		flex-wrap: nowrap;
		overflow-x: auto;
		margin: 0 -30px;
		padding: 0 30px 10px
	}

	.filter-menu__link {
		flex: none
	}

	.filter-menu__group {
		position: absolute;
		left: 0;
		bottom: 0
	}

	.hits {
		grid-template-columns: 1fr
	}

	.hits__select {
		height: 287px
	}

	.card-sm__price {
		font-size: 14px
	}

	.yt-card__img {
		border-radius: 20px
	}

	.yt-card__title {
		margin-top: 12px;
		font-size: 12px
	}

	.tabbar {
		display: block
	}

	.box {
		margin-bottom: 70px
	}

	.box__title {
		font-size: 16px
	}

	.box--mb20:last-child {
		margin-bottom: 70px !important
	}

	.box__wrap {
		padding: 30px
	}

	.box__wrap--main {
		padding: 70px 30px
	}

	.box__wrap--slider {
		padding-bottom: 160px
	}

	.box__wrap--first {
		padding: 30px
	}

	.box__wrap--tr .first-left {
		padding: 0 30px
	}

	.box__wrap--tr .first-right {
		height: 314px
	}

	.box__wrap--tr .first-menu__link {
		align-items: flex-start;
		width: 100%;
		height: 80px;
		padding: 16px 20px;
		aspect-ratio: aspect-ratio
	}

	.box__row {
		row-gap: 30px
	}

	.box__grid--lg .box__wrap--main {
		padding: 30px
	}

	.box--social .box__wrap img {
		height: 280px
	}

	.box__content .card-row__desc,
	.box__content .card-row__img {
		width: 100%
	}

	.box__content .card-row__info {
		column-gap: 10px;
		grid-template-columns: 44px 60px 1fr
	}

	.box__content .card-row__price>p:first-child {
		display: block;
		font-size: 14px
	}

	.box__content .card-row__price>p:first-child span {
		margin-left: 20px
	}

	.box__content .card-row__name {
		font-size: 14px
	}

	.box__content .card-row-carousel {
		width: 100%
	}

	.breadcrumbs {
		margin-bottom: 18px
	}

	.attention {
		grid-template-columns: 22px 1fr 22px;
		padding: 20px 10px
	}

	.attention__icon {
		width: 22px;
		height: 22px
	}

	.attention__text {
		margin-right: 10px;
		font-size: 12px
	}

	.attention__close {
		width: 22px;
		height: 22px
	}

	.looking__label {
		font-size: 12px;
		line-height: 15px
	}

	.looking__item {
		max-width: 100%;
		height: 42px
	}

	.looking__item a {
		max-width: 240px
	}

	.looking__del {
		width: 18px;
		height: 18px
	}

	.looking__add {
		width: 42px;
		height: 42px
	}

	.looking__add svg {
		width: 18px;
		height: 18px
	}

	.catalog__header {
		margin-bottom: 20px
	}

	.car-brands {
		margin-bottom: 70px
	}

	.car-brands__title {
		margin-bottom: 30px;
		font-size: 20px
	}

	.car-brands__link {
		font-size: 12px
	}

	.car-card .section-title {
		font-size: 26px
	}

	.car-card__footer {
		row-gap: 20px
	}

	.car-card__btns {
		justify-content: center;
		width: 100%;
		margin-left: 0
	}

	.car-card__btns .btn {
		width: 240px;
		height: 48px;
		font-size: 12px
	}

	.car-card__fav {
		width: 30px;
		height: 30px
	}

	.car-card--two .specifs {
		padding-top: 0;
		margin-bottom: 20px
	}

	.car-card--two .btn {
		width: 100%;
		height: 58px;
		font-size: 12px
	}

	.car-card__price {
		font-size: 20px
	}

	.specifs__col {
		column-gap: 5px
	}

	.specifs__item {
		gap: 16px
	}

	.specifs__item span {
		font-size: 12px
	}

	.specifs__item span:first-child {
		width: 100px
	}

	.car-price {
		margin-bottom: 25px
	}

	.price-breakdown__disclaimer {
		margin-top: 20px
	}

	.calc-toggle {
		margin: 0 -30px 20px
	}

	.calc-toggle__row {
		padding-left: 30px;
		padding-right: 30px
	}

	.text {
		margin-bottom: 30px
	}

	.found {
		margin-bottom: 20px
	}

	.found__title {
		margin-bottom: 10px;
		font-size: 20px
	}

	.found__desc {
		margin-bottom: 30px
	}

	.found__desc p {
		margin-bottom: 20px;
		font-size: 12px
	}

	.card-moto {
		padding: 10px
	}

	.card-moto__desc {
		padding: 20px 10px
	}

	.card-moto__fav {
		top: 15px;
		left: 15px;
		width: 30px;
		height: 30px
	}

	.card-moto__fav svg {
		width: 16px;
		height: 16px
	}

	.card-moto__name {
		font-size: 14px
	}

	.card-moto__age {
		column-gap: 18px;
		margin-bottom: 20px
	}

	.card-moto__age span::after {
		width: 2px;
		height: 2px;
		right: -10px
	}

	.card-moto__info {
		row-gap: 5px;
		margin-bottom: 20px
	}

	.card-moto__info span {
		font-size: 12px
	}

	.card-moto__price {
		font-size: 14px
	}

	.card-moto__price span {
		font-size: 12px
	}

	.filter-group {
		row-gap: 15px;
		padding: 20px
	}

	.filter-group__section {
		padding-bottom: 15px
	}

	.moto-brands {
		row-gap: 12px
	}

	.moto-brands__link {
		font-size: 12px
	}

	.moto-brands__link span:first-child {
		width: 140px
	}

	.moto-brands .link span {
		font-size: 12px
	}

	.moto-brands .link svg {
		width: 16px;
		height: 16px
	}

	.car__title {
		margin-bottom: 30px;
		font-size: 26px
	}

	.car__info {
		grid-template-columns: 100px 1fr;
		margin-bottom: 30px;
		column-gap: 20px
	}

	.car__price {
		margin-bottom: 30px
	}

	.car-other__title {
		font-size: 18px
	}

	.car-other__item {
		padding: 16px
	}

	.car-other__img {
		width: 100px;
		height: 70px;
		border-radius: 10px
	}

	.car-other__desc {
		width: calc(100% - 120px)
	}

	.car-other__name {
		font-size: 12px
	}

	.car-other--sm .car-other__desc {
		width: calc(100% - 120px)
	}

	.selection {
		row-gap: 20px
	}

	.selection__title {
		font-size: 12px
	}

	.selection__radio label {
		padding: 47px 15px 15px
	}

	.selection__radio label::before {
		width: 22px;
		height: 22px
	}

	.selection__radio input:checked+label::before {
		background-size: 12px
	}

	.selection__radio--lg label {
		padding-top: 15px;
		padding-left: 58px;
		font-size: 14px
	}

	.selection__radio--lg label::before {
		width: 28px;
		height: 28px
	}

	.calc-nav {
		column-gap: 12px;
		margin-left: -30px;
		margin-right: -30px;
		padding-left: 30px;
		padding-right: 30px
	}

	.calc-nav .btn-border {
		padding: 16px 20px;
		font-size: 12px
	}

	.calc-desc {
		font-size: 12px
	}

	.blog__header {
		row-gap: 10px
	}

	.blog__grid {
		row-gap: 20px;
		margin-bottom: 30px
	}

	.blog-nav {
		column-gap: 12px;
		margin-left: -30px;
		margin-right: -30px;
		padding-left: 30px;
		padding-right: 30px;
		padding-bottom: 10px
	}

	.blog-nav__btn {
		padding: 10px 14px;
		font-size: 12px;
		line-height: 15px
	}

	.search {
		width: 100%;
		max-width: 300px;
		height: 52px
	}

	.search button {
		width: 52px
	}

	.search button svg {
		width: 22px;
		height: 22px
	}

	.search input {
		width: calc(100% - 52px);
		font-size: 12px
	}

	.pagination {
		column-gap: 20px;
		justify-content: space-between;
		width: 100%
	}

	.pagination__link {
		font-size: 12px;
		line-height: 15px
	}

	.pagination__link.current {
		width: 30px;
		height: 30px
	}

	.preview-row {
		grid-template-columns: 160px 1fr
	}

	.preview-row__img {
		height: 188px
	}

	.preview-row__title {
		font-size: 12px
	}

	.preview-row__title span {
		margin-left: 10px;
		font-size: 10px
	}

	.preview-row__title span svg {
		width: 12px;
		height: 12px
	}

	.preview-row__date,
	.preview-row__time {
		margin-bottom: 5px
	}

	.preview-row__cat {
		padding: 8px 14px
	}

	.contacts__icon {
		width: 22px;
		height: 22px
	}

	.contacts__text {
		width: calc(100% - 32px)
	}

	.contacts__text a {
		font-size: 18px
	}

	.contacts__text address {
		font-size: 12px
	}

	.contacts__title {
		margin-bottom: 6px;
		font-size: 18px
	}

	.team__member {
		margin-bottom: 16px
	}

	.team__img {
		width: 50px;
		height: 50px
	}

	.team__name p:first-child {
		margin-bottom: 4px
	}

	.team__tel svg {
		width: 18px;
		height: 18px
	}

	.team__tel a {
		font-size: 18px
	}

	.requis {
		row-gap: 20px
	}

	.requis__title {
		font-size: 20px
	}

	.requis__list {
		font-size: 12px
	}

	.requis__load {
		max-width: 300px;
		padding: 30px 20px
	}

	.requis__load img {
		width: 65px;
		height: 65px;
		margin-bottom: 20px
	}

	.calc-wrap__footer {
		font-size: 12px
	}

	.calc .btn {
		height: 60px;
		margin-top: 10px;
		font-size: 14px
	}

	.calc-radio {
		width: 100%;
		margin-bottom: 20px
	}

	.calc-radio__item {
		flex-grow: 1
	}

	.calc-radio__item label {
		padding-left: 0;
		padding-right: 0;
		font-size: 12px
	}

	.calc-table {
		margin-top: 30px
	}

	.calc-table__wrap {
		row-gap: 20px;
		margin-left: -30px;
		margin-right: -30px;
		padding-left: 30px;
		padding-right: 30px
	}

	.calc-table__section {
		width: 440px
	}

	.calc-table__header span {
		font-size: 12px
	}

	.calc-table__footer {
		width: 440px
	}

	.calc-table__footer span {
		font-size: 12px
	}

	.calc-table__disclaimer {
		margin-top: 30px
	}

	.calc-table__disclaimer p {
		margin-bottom: 10px
	}

	.share-btn {
		margin-left: 18px
	}

	.article-meta {
		column-gap: 20px
	}

	.article-meta__item {
		column-gap: 6px
	}

	.article-meta__item svg {
		width: 16px;
		height: 16px
	}

	.article-meta__item span {
		font-size: 12px
	}

	.article ol li {
		margin-bottom: 10px;
		padding-left: 36px;
		font-size: 12px
	}

	.article ol li::before {
		width: 26px;
		height: 26px;
		font-size: 12px
	}

	.article ul {
		margin-bottom: 15px
	}

	.article ul li {
		margin-bottom: 10px;
		padding-left: 16px;
		font-size: 12px
	}

	.article ul li::before {
		top: 6px;
		width: 6px;
		height: 6px
	}

	.article p {
		margin-bottom: 15px;
		font-size: 12px
	}

	.article div {
		margin-bottom: 30px
	}

	.article h2 {
		margin-bottom: 20px;
		font-size: 24px
	}

	.article img {
		border-radius: 30px;
		margin-bottom: 12px
	}

	.article figcaption {
		padding-top: 12px
	}

	.article .row {
		row-gap: 30px
	}

	.article__footer {
		margin-top: 30px;
		padding-top: 30px
	}

	.article__author img {
		width: 60px;
		height: 60px
	}

	.article__author div span {
		font-size: 12px
	}

	.article__author div span:first-child {
		font-size: 14px
	}

	.share__label {
		font-size: 20px
	}

	.account__area:first-child {
		padding: 30px
	}

	.account__title {
		margin-bottom: 30px;
		font-size: 20px
	}

	.account__link {
		column-gap: 15px
	}

	.account__link span {
		font-size: 20px
	}

	.account__wrap {
		padding: 30px
	}

	.account__wrap .btn {
		height: 50px;
		font-size: 12px
	}

	.acc-user {
		column-gap: 15px
	}

	.acc-user__icon {
		width: 60px;
		height: 60px
	}

	.acc-user__icon svg {
		width: 20px;
		height: 20px
	}

	.acc-user__name {
		margin-bottom: 10px;
		font-size: 12px
	}

	.acc-user__tel {
		font-size: 12px
	}

	.add-btn {
		width: 100%;
		max-width: 280px;
		height: 62px;
		margin: 0 30px;
		font-size: 12px
	}

	.add-btn__icon {
		width: 22px;
		height: 22px
	}

	.add-btn__icon svg {
		width: 14px;
		height: 14px
	}

	.comparison__col,
	.comparison__col:first-child {
		width: 158px;
		min-width: 158px
	}

	.comparison__header {
		padding-bottom: 16px
	}

	.comparison__img {
		margin-bottom: 10px
	}

	.comparison__del {
		top: 4px;
		right: 4px
	}

	.comparison__name {
		margin-bottom: 5px;
		font-size: 12px
	}

	.comparison__title span,
	.comparison__year {
		font-size: 12px
	}

	.comparison__title svg {
		width: 14px;
		height: 14px
	}

	.comparison__item .comparison__col span,
	.comparison__legend span {
		font-size: 12px
	}

	.contract__col {
		row-gap: 30px
	}

	.contract__section {
		column-gap: 10px
	}

	.contract__num {
		width: 26px;
		height: 26px;
		font-size: 12px
	}

	.contract__text {
		width: calc(100% - 36px)
	}

	.contract__text ul {
		margin-bottom: 15px
	}

	.contract__text ul li {
		margin-bottom: 10px;
		padding-left: 16px;
		font-size: 12px
	}

	.contract__text ul li::before {
		top: 6px;
		width: 6px;
		height: 6px
	}

	.contract__text p {
		margin-bottom: 10px;
		font-size: 12px
	}

	.contract__text .btn {
		width: 194px;
		height: 50px;
		font-size: 12px
	}

	.contract__title {
		margin-bottom: 14px;
		font-size: 12px
	}

	.contract__addr {
		margin-bottom: 10px
	}

	.contract__addr svg {
		width: 16px;
		height: 16px
	}

	.contract__addr p {
		width: calc(100% - 24px)
	}

	.contract__time {
		margin-bottom: 20px
	}

	.contract__time svg {
		width: 16px;
		height: 16px
	}

	.contract__time p {
		width: calc(100% - 24px)
	}

	.contract__load {
		width: 100%
	}

	.contract__load img {
		width: 65px;
		height: 65px
	}

	.contract__load div p {
		font-size: 12px
	}

	.contract__load div p:first-child {
		font-size: 14px
	}

	.sets-catalog {
		row-gap: 30px
	}

	.sets-catalog__title {
		margin-bottom: 20px;
		font-size: 20px
	}

	.sets-catalog__nav {
		gap: 12px
	}

	.sets-catalog__link {
		gap: 10px;
		padding: 10px 12px
	}

	.sets-catalog__link span {
		font-size: 12px
	}

	.sets-catalog__icon {
		width: 22px;
		height: 22px
	}

	.contract-nav {
		margin: 0 -30px 30px;
		padding: 0 30px
	}

	.contract-nav__item {
		font-size: 12px;
		column-gap: 10px
	}

	.contract-nav__item::after {
		width: 40px;
		margin-left: 10px
	}

	.entry {
		row-gap: 40px
	}

	.entry__title {
		margin-bottom: 30px;
		font-size: 20px
	}

	.entry .btn {
		height: 52px;
		font-size: 12px
	}

	.entry .btn svg {
		width: 16px;
		height: 16px
	}

	.entry .btn-border {
		height: 52px;
		font-size: 12px
	}

	.entry__grid {
		grid-template-columns: 100%
	}

	.model-range {
		row-gap: 30px
	}

	.model-range__title {
		margin-bottom: 20px;
		font-size: 20px
	}

	.model-range__row {
		column-gap: 20px
	}

	.model-range__link {
		font-size: 12px
	}

	.tracking .btn {
		width: 100%
	}

	.track-auto__title {
		margin-bottom: 20px;
		font-size: 20px
	}

	.track-auto__title .rating {
		margin-left: 16px
	}

	.track-auto__info {
		grid-template-columns: repeat(2, 1fr)
	}

	.track-auto__item span:nth-child(2) {
		font-size: 12px
	}

	.rating {
		width: 34px;
		height: 20px;
		column-gap: 2px
	}

	.rating svg {
		width: 9px;
		height: 9px
	}

	.rating span {
		font-size: 10px
	}

	.track-status__title {
		margin-bottom: 20px;
		font-size: 20px
	}

	.track-status__item {
		min-height: 110px
	}

	.track-status__item.active .track-status__desc p:nth-child(2) {
		margin-top: 10px
	}

	.track-status__desc p,
	.track-status__num {
		font-size: 12px
	}

	.first-form__title {
		margin-bottom: 30px;
		font-size: 20px
	}

	.first-form form {
		row-gap: 16px
	}

	.first-form form .btn {
		height: 50px;
		font-size: 12px
	}

	.first-carousel .item {
		border-radius: 30px
	}

	.first-carousel .slick-arrow {
		bottom: 20px
	}

	.first-carousel .slick-arrow.prev {
		right: 94px
	}

	.first-carousel .slick-arrow.next {
		right: 30px
	}

	.first-carousel .slick-dots {
		bottom: 41px;
		justify-content: flex-start;
		padding-left: 30px
	}

	.social-two {
		padding: 30px
	}

	.social-two__list {
		column-gap: 14px
	}

	.social-two__link {
		width: 60px;
		height: 60px
	}

	.social-two__link svg {
		width: 20px;
		height: 20px
	}

	.reviews__grid {
		row-gap: 20px;
		margin-bottom: 30px
	}

	.card-row-carousel {
		width: 100%
	}

	.card-row-carousel .slick-dots {
		bottom: 10px;
		justify-content: flex-start;
		padding-left: 30px
	}

	.msgs {
		gap: 5px
	}

	.hero__title {
		margin-bottom: 20px;
		font-size: 30px
	}

	.hero__text {
		font-size: 12px
	}

	.m-tooltip {
		right: -50px
	}

	.err404__title {
		font-size: 80px
	}

	.err404__text--center {
		max-width: 268px
	}

	.carousel404__item {
		height: 85px;
		gap: 20px;
		padding: 0 10px
	}

	.carousel404__item p {
		font-size: 70px
	}

	.equipment__title {
		margin-bottom: 20px;
		font-size: 16px
	}

	.equipment__item {
		padding-left: 36px;
		font-size: 14px;
		background-size: 21px
	}

	.equipment__item.no {
		background-size: 21px
	}

	.insurance__header {
		margin-bottom: 50px;
		padding-bottom: 30px
	}

	.insurance__header p span {
		font-size: 16px
	}

	.insurance__header p span:nth-child(2) {
		height: 28px;
		font-size: 12px
	}

	.insurance__title {
		font-size: 16px
	}

	.inspection__item span,
	.insurance__item span {
		font-size: 14px
	}

	.damage__scheme {
		row-gap: 10px;
		margin-bottom: 20px
	}

	.damage__img {
		height: 344px
	}

	.damage__marker {
		width: 22px;
		height: 22px;
		font-size: 16px;
		padding-bottom: 1px
	}

	.damage__item {
		width: 100%
	}

	.report__title {
		padding-top: 20px;
		font-size: 16px
	}

	.report__item {
		padding: 10px 0
	}

	.report__item span {
		font-size: 14px
	}

	.report__item span:nth-child(2) {
		height: 20px;
		padding: 0 12px 2px
	}

	.report__subtitle {
		padding-top: 20px;
		font-size: 14px
	}

	.car-sets__section {
		margin-bottom: 10px;
		padding: 20px;
		border-radius: 20px
	}

	.car-sets__header {
		align-items: flex-start
	}

	.car-sets__info {
		margin-right: 5px
	}

	.car-sets__info p {
		font-size: 13px
	}

	.car-sets__info p:nth-child(2),
	.car-sets__qnt {
		font-size: 12px
	}

	.car-sets__icon {
		width: 14px;
		height: 14px
	}

	.car-sets__list {
		padding-top: 20px
	}

	.car-sets__item {
		padding: 10px 0;
		font-size: 12px
	}

	.car-sets__item:hover {
		background: 0 0
	}

	.car-media__header {
		gap: 5px;
		margin-bottom: 20px
	}

	.car-media__nav {
		gap: 4px;
		margin-left: calc(((100vw - 100%)/ 2 + 45px) * -1);
		margin-right: calc(((100vw - 100%)/ 2 + 45px) * -1);
		padding-left: calc((100vw - 100%)/ 2 + 45px);
		padding-right: calc((100vw - 100%)/ 2 + 45px)
	}

	.car-media__nav a {
		height: 30px;
		padding: 2px 16px;
		font-size: 12px
	}

	.car-media__colors {
		gap: 5px
	}

	.car-media__colors a {
		width: 26px;
		height: 26px
	}

	.car-media__carousel {
		margin: 0 -5px 10px
	}

	.car-media__carousel .slick-slide {
		padding: 0 5px
	}

	.car-media__bigimg,
	.car-media__img {
		border-radius: 10px
	}

	.media-tabs__nav {
		left: 0;
		top: 93px
	}

	.video-grid {
		gap: 20px
	}

	.video-grid--4 .yt-card__img,
	.video-grid--5 .yt-card__img {
		border-radius: 20px
	}
}

@media screen and (max-width:480px) {
	.container {
		width: 100%
	}

	.top__left {
		width: calc(100% / 12 * 6 - 20px)
	}

	.top__center {
		width: calc(100% / 12 * 12 - 20px)
	}

	.top__right {
		width: calc(100% / 12 * 6 - 20px)
	}

	.city__icon {
		width: 10px;
		height: 10px;
		margin-right: 4px
	}

	.city__select span {
		font-size: 10px;
		margin-right: 3px
	}

	.city__select svg {
		width: 5px;
		height: 5px
	}

	.t-social {
		column-gap: 5px
	}

	.t-social__link {
		width: 26px;
		height: 26px
	}

	.t-social__link svg {
		width: 12px;
		height: 12px
	}

	.navbar__right {
		width: calc(100% / 12 * 8 - 20px)
	}

	.navbar__center {
		width: calc(100% / 12 * 4 - 20px)
	}

	.navbar__order {
		display: none
	}

	.navbar--twotel .navbar__center {
		width: calc(100% / 12 * 3.7 - 20px)
	}

	.navbar--twotel .navbar__right {
		width: calc(100% / 12 * 8.3 - 20px)
	}

	.logo {
		column-gap: 10px
	}

	.logo span {
		font-size: 14px
	}

	.footer__wrap {
		padding: 0 20px;
		border-radius: 10px 10px 0 0
	}

	.f-top {
		padding: 30px 0 20px
	}

	.footerbar {
		padding-top: 20px
	}

	.footerbar__left {
		align-items: flex-start
	}

	.f-contacts__row {
		gap: 15px
	}

	.f-contacts .office__info {
		min-width: 1px
	}

	.mobile-menu__header {
		padding-top: 10px
	}

	.mobile-menu__footer {
		padding: 30px 0
	}

	.mobile-menu__btns {
		padding: 20px 0
	}

	.mobile-nav {
		grid-template-columns: 1fr;
		row-gap: 30px;
		padding: 20px 0 30px
	}

	.mobile-nav__list {
		row-gap: 16px
	}

	.mobile-nav__list:nth-child(2) {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 20px;
		padding-top: 30px;
		border-top: 1px solid rgba(206, 215, 217, .5)
	}

	.mobile-nav__list:nth-child(2) .mobile-nav__link {
		font-size: 14px
	}

	.advant__img,
	.advant__item,
	.advant__title,
	.faq__item,
	.first-menu__link,
	.first-right,
	.modal__inner,
	.preview,
	.preview__img,
	.preview__img::before,
	.scheme__area,
	.social__left,
	.social__link {
		border-radius: 10px
	}

	.card {
		border-radius: 11px
	}

	.card__desc,
	.card__img {
		border-radius: 10px
	}

	.card-stock {
		border-radius: 11px
	}

	.card-row,
	.card-row__img,
	.card-stock__desc,
	.card-stock__img {
		border-radius: 10px
	}

	.card-row__del svg {
		stroke: var(--primary)
	}

	.card-row__gallery .card-row__img {
		height: 134px
	}

	.filter {
		border-radius: 10px
	}

	.filter .form-checkbox {
		margin-bottom: 0
	}

	.brands {
		grid-template-columns: repeat(2, 1fr)
	}

	.brands__item {
		border-radius: 10px
	}

	.filter-nowrap__result {
		padding: 10px 0
	}

	.box__wrap,
	.card-sm,
	.card-sm__img,
	.hits__select {
		border-radius: 10px
	}

	.box__row--nm {
		row-gap: 20px
	}

	.attention,
	.box__content .card-row__img,
	.car-card__desc,
	.gallery__carousel img,
	.specifs {
		border-radius: 10px
	}

	.price-breakdown__footer .btn {
		width: 100%;
		max-width: 320px;
		height: 50px;
		font-size: 12px
	}

	.found__table {
		margin-left: -30px;
		margin-right: -30px;
		padding-left: 30px;
		padding-right: 30px
	}

	.car-gallery,
	.car-gallery .item img,
	.car-other__item,
	.card-moto,
	.card-moto__img {
		border-radius: 10px
	}

	.car-other--sm .car-other__desc,
	.car-other__desc {
		width: calc(100% - 85px)
	}

	.selection__radio label {
		border-radius: 10px
	}

	.preview-row {
		grid-template-columns: 110px 1fr;
		border-radius: 10px
	}

	.map,
	.preview-row__img,
	.requis__load,
	.team__item {
		border-radius: 10px
	}

	.calc .btn {
		height: 50px;
		margin-top: 0;
		font-size: 12px
	}

	.account__area,
	.account__wrap,
	.article img {
		border-radius: 10px
	}

	.comparison {
		margin: 0 -30px;
		padding: 0 30px 10px
	}

	.comparison__img,
	.contract__load,
	.sets-catalog__link {
		border-radius: 10px
	}

	.entry__row .form-group label {
		margin-right: -5px
	}

	.track-auto__info {
		border-radius: 10px
	}

	.first-carousel .item {
		height: 223px
	}

	.review-card,
	.review-card__img {
		border-radius: 10px
	}

	.hero .filter,
	.hero__header {
		padding: 20px
	}

	.hero__footer {
		border-radius: 10px;
		padding: 20px
	}

	.m-tooltip {
		right: 0
	}

	.err404__area,
	.err404__img {
		border-radius: 10px
	}

	.insurance__header p span:nth-child(2) {
		padding: 4px 10px
	}

	.insurance__item span {
		max-width: 260px
	}

	.car-img {
		row-gap: 10px
	}

	.car-img__item img {
		border-radius: 10px
	}

	.companyWidgets {
		gap: 20px
	}

	.widget__item {
		width: calc(50% - 10px);
		max-width: 160px;
		height: 80px;
		padding: 10px;
		border-radius: 20px
	}

	.widget__img {
		width: 60px;
		padding-right: 6px
	}

	.widget__right {
		padding-left: 6px
	}

	.sites-reviews__qnt {
		font-size: 10px
	}

	.widget__rating {
		gap: 1px
	}

	.widget__rating svg {
		width: 10px;
		height: 14px
	}

	.car-media__nav {
		margin-left: calc(((100vw - 100%)/ 2 + 45px) * -1);
		margin-right: calc(((100vw - 100%)/ 2 + 45px) * -1);
		padding-left: calc((100vw - 100%)/ 2 + 45px);
		padding-right: calc((100vw - 100%)/ 2 + 45px)
	}

	.sidebar-title {
		font-size: 16px
	}

	.sidebar-carousel .slick-arrow {
		top: -46px;
		width: 30px;
		height: 30px
	}

	.sidebar-carousel .slick-arrow svg {
		width: 14px;
		height: 14px
	}

	.sidebar-carousel .slick-arrow.prev {
		right: 38px
	}

	.mobile-header .menu-btn {
		width: 46px
	}

	.mobile-header .menu-btn span {
		display: none
	}
}

@media screen and (max-width:374px) {
	.container {
		width: 100%
	}

	.form-range--lg {
		display: none
	}

	.navbar__right {
		width: calc(100% / 12 * 9 - 20px)
	}

	.navbar__center {
		width: calc(100% / 12 * 3 - 20px);
		position: relative;
		z-index: 10
	}

	.navbar__contacts:nth-child(2) {
		display: none
	}

	.navbar--twotel .navbar__center {
		width: calc(100% / 12 * 4.4 - 20px)
	}

	.navbar--twotel .navbar__right {
		width: calc(100% / 12 * 7.6 - 20px)
	}

	.mobile-menu__btns {
		column-gap: 10px
	}

	.mobile-menu .login-btn {
		width: 160px
	}

	.modal__inner {
		width: calc(100% - 20px)
	}

	.first-right {
		height: 350px;
		padding: 20px
	}

	.section-title {
		font-size: 22px
	}

	.section-title--sm {
		margin-bottom: 20px;
		font-size: 20px
	}

	.yt .container {
		padding-bottom: 80px
	}

	.advant {
		margin-bottom: 60px
	}

	.advant__title {
		padding: 40px 20px;
		font-size: 22px;
		line-height: 27px
	}

	.request {
		margin-bottom: 60px
	}

	.request__desc {
		padding: 30px 20px;
		border-radius: 10px
	}

	.request__img {
		padding: 10px;
		border-radius: 10px
	}

	.scheme__grid {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column
	}

	.scheme__area {
		width: 100%
	}

	.scheme__area:nth-child(2),
	.scheme__area:nth-child(3) {
		order: -1
	}

	.scheme__step {
		display: flex;
		flex-wrap: wrap;
		column-gap: 20px;
		padding: 20px
	}

	.scheme__icon {
		margin-bottom: 0
	}

	.scheme__desc {
		width: calc(100% - 42px)
	}

	.s-request {
		padding-right: 50px
	}

	.video-card__content {
		bottom: 10px;
		left: 10px;
		right: 10px
	}

	.video-card__date {
		font-size: 11px
	}

	.video-card__author {
		column-gap: 10px
	}

	.video-card__author img {
		width: 40px;
		height: 40px
	}

	.m-blog {
		margin-bottom: 60px
	}

	.section--slider {
		padding-bottom: 80px
	}

	.section__footer {
		justify-content: center;
		margin-top: 110px
	}

	.carousel .slick-arrow {
		bottom: -80px
	}

	.carousel .card,
	.carousel .card-stock,
	.carousel .review-card,
	.carousel .video-card {
		width: 260px !important;
        width: 100% !important
	}

	.card__img {
		/*height: 240px;*/
        width: calc(100vw - 20px);
	}

	.carousel-three .slick-arrow {
		bottom: -80px
	}

	.carousel-three .card,
	.carousel-three .card-stock,
	.carousel-three .review-card,
	.carousel-three .video-card {
		width: 260px !important
	}

	.card-stock__img {
		height: 188px
	}

	.card-stock__desc {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		row-gap: 10px;
		height: calc(100% - 128px);
		padding-top: 80px
	}

	.card-stock__price {
		margin-bottom: 10px;
		text-align: left
	}

	.card-row__gallery .card-row__img {
		height: 100px
	}

	.brands__item {
		height: 42px;
		padding: 0 10px
	}

	.filter-menu__list {
		padding: 0 20px 10px
	}

	.hits+.section__footer {
		margin-top: 30px
	}

	.card-sm {
		padding: 20px
	}

	.yt-card {
		width: 280px !important
	}

	.box {
		margin-bottom: 60px
	}

	.box--mb20:last-child {
		margin-bottom: 60px !important
	}

	.box__wrap {
		padding: 30px 20px
	}

	.box__wrap--main {
		padding: 60px 20px
	}

	.box__wrap--main .carousel .slick-arrow,
	.box__wrap--main .carousel-three .slick-arrow {
		bottom: -80px
	}

	.box__wrap--slider {
		padding-bottom: 140px
	}

	.box__wrap--first {
		padding: 30px 20px
	}

	.box__wrap--tr .first-left {
		padding: 0 20px
	}

	.box__grid--lg .box__wrap--main {
		padding: 30px 20px
	}

	.box__column {
		row-gap: 60px
	}

	.looking__item a {
		max-width: 200px
	}

	.catalog__footer {
		margin-top: 20px
	}

	.car-card__btns .btn {
		width: 210px
	}

	.car-card__desc {
		padding: 20px
	}

	.gallery__thumbs .slick-slide img {
		height: 54px
	}

	.specifs {
		padding: 20px
	}

	.specifs__col {
		grid-template-columns: 98px 1fr
	}

	.calc-toggle {
		margin: 0 -20px 20px
	}

	.calc-toggle__row {
		padding-left: 20px;
		padding-right: 20px
	}

	.found__table {
		margin-left: -20px;
		margin-right: -20px;
		padding-left: 20px;
		padding-right: 20px
	}

	.car-other__item {
		column-gap: 15px
	}

	.car-other__img {
		width: 70px
	}

	.selection__radio label {
		padding-right: 10px;
		font-size: 11px
	}

	.selection__radio--lg label {
		font-size: 14px
	}

	.pagination {
		flex-direction: column;
		row-gap: 20px
	}

	.preview-row {
		grid-template-columns: 100px 1fr;
		column-gap: 10px
	}

	.contacts__icon {
		margin-top: 0
	}

	.contacts__text a,
	.contacts__title {
		font-size: 16px
	}

	.team__item {
		padding: 20px 27px
	}

	.requis {
		row-gap: 15px
	}

	.account__wrap {
		padding: 25px 15px
	}

	.add-btn {
		margin: 0 15px
	}

	.comparison {
		margin: 0 -20px;
		padding: 0 20px 10px
	}

	.contract-nav {
		margin: 0 -20px 20px;
		padding: 0 20px
	}

	.entry__row .form-group:nth-child(3),
	.entry__row .form-group:nth-child(4),
	.entry__row .form-group:nth-child(5),
	.entry__row .form-group:nth-child(6),
	.entry__row .form-group:nth-child(8) {
		width: calc(100% / 12 * 12 - 20px)
	}

	.review-card__label {
		font-size: 11px
	}

	.review-card__author {
		column-gap: 10px
	}

	.review-card__author img {
		width: 40px;
		height: 40px
	}

	.main-carousel .slick-arrow {
		bottom: 400px
	}

	.m-tooltip__box {
		width: 220px;
		padding: 20px 15px
	}

	.err404__area {
		height: 150px
	}

	.err404__area:nth-child(2) {
		padding: 0 15px
	}

	.insurance__item span {
		max-width: 220px
	}

	.widget__item {
		width: 100%
	}

	.car-media__nav {
		margin-left: calc(((100vw - 100%)/ 2 + 35px) * -1);
		margin-right: calc(((100vw - 100%)/ 2 + 35px) * -1);
		padding-left: calc((100vw - 100%)/ 2 + 35px);
		padding-right: calc((100vw - 100%)/ 2 + 35px)
	}
}

@media (max-height:900px) {
	.modal__inner {
		top: 10px;
		transform: translateX(-50%)
	}
}


div.text-company {
	display: flex;
	gap:40px;
}

@media (max-width:767px) {
	div.text-company {
		display: flex;
		flex-direction: column;
		gap:10px;
	}
}



/* SS */
div.table-over {
	max-width: 100%;
	overflow:auto;
}

table.delivery-costs {
	padding:0;
	margin:0 0 36px 0;
	width:100%;
}

table.delivery-costs th {
	font-weight:bold;
	padding:10px;
}

table.delivery-costs th:first-child,
table.delivery-costs td:first-child {
	text-align: left;
}

table.delivery-costs td {
	padding:10px;
	padding:10px;
	text-align: center;
	border-bottom: 1px solid #eee;
}
