* {
	box-sizing: border-box;
}

:root {
	--font-family: "Montserrat", sans-serif;
	--second-family: "Widock TRIAL", sans-serif;
	--third-family: "Lemon Milk RUS", sans-serif;
	--font3: "VENOM", sans-serif;
	--font4: "Gotham Pro", sans-serif;
	--font5: "Inter", sans-serif;
	--font6: "Bebas Neue", sans-serif;
	--font7: "Montserrat Alternates", sans-serif;
	--font8: "Arial", sans-serif;
}

html,
body {
	min-height: 100%;
}
body {
	margin: 0;
	font-family: var(--font-family);
	background: linear-gradient(165.8deg, #000000 50.28%, #520606 100.25%);
	background: linear-gradient(165.8deg, #000000 25.28%, #520606 100.25%);
	color: #eaeaea;
	-webkit-font-smoothing: antialiased;
}
.body-lock {
	overflow: hidden;
}
img {
	max-width: 100%;
	display: block;
}
a {
	text-decoration: none;
	color: inherit;
}
ul,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}
h2,
h3,
h4,
p {
	padding: 0;
	margin: 0;
}
button {
	font: inherit;
}
.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.skip-link:focus {
	left: 10px;
	top: 10px;
	width: auto;
	height: auto;
	padding: 8px 12px;
	background: #111;
	color: #fff;
	z-index: 9999;
	border-radius: 6px;
}

.container {
	max-width: 1492px;
	margin: 0 auto;
	padding: 0 20px;
}
.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;

	padding: 12px 20px;
	background: #ff1d1d;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 18px;
	line-height: 100%;
	text-align: center;
	border: transparent;
	border-radius: 12px;
	color: #fff;
	transition:
		transform 0.15s ease,
		opacity 0.15s;
}
.btn:active {
	transform: translateY(1px);
}

.section-bg {
	background-image: url("../img/header-bg.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	margin-bottom: 133px;
	overflow: hidden;
}
.section-bg::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	pointer-events: none;
}

.site-header {
	margin-bottom: 130px;

	background: rgba(0, 0, 0, 0.56);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px); /* для старых Safari */
	box-shadow: 0 0 60px #000;
	z-index: 1000;
}
.site-header__inner {
	position: relative;
	max-width: 1860px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu-burger {
	display: none;
	width: 34px;
	height: 31px;
	background-color: #ff0004;
	align-items: flex-end;
	flex-direction: column;
	gap: 6px;
	padding: 6px;
	border: transparent;

	border-radius: 4px;
	z-index: 1000;
}
.menu-burger__item {
	width: 20px;
	height: 3px;
	background-color: #fff;
	transition: transform 0.2s ease-in;
}
.menu-burger__item-center {
	width: 13px;

	transition: width 0.1s ease-in;
}

.menu-burger.active .menu-burger__item:first-child {
	transform: translateY(6px) rotate(45deg);
}

.menu-burger.active .menu-burger__item:last-child {
	transform: translateY(-6px) rotate(-45deg);
}

.menu-burger.active .menu-burger__item-center {
	width: 0;
}

.mobile-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.94);
	min-width: 95vw;
	z-index: 100;
	border-radius: 25px;
	transform: translateY(-100%);
	transition:
		transform 0.4s ease-in-out,
		opacity 0.4s ease-in-out;
	opacity: 0;
	pointer-events: none;
}
.mobile-nav.open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: all;
}
.mobile-nav__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 36px;
	padding: 0 5px 50px;
}
.mobile-nav .logo {
	max-width: 145px;
	width: 100%;
}
.mobile-nav .contact-wrap {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}
.mobile-nav .mobile-nav__link {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 15px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
}

.logo {
	max-width: 205px;
	width: 100%;
	object-fit: contain;
}
.nav__list {
	display: flex;
	align-items: center;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav__link {
	display: inline-flex;
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 90%;
	text-transform: uppercase;
	color: #fff;
}
.contact-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 39px;
}
.contact-wrap__tg-icon {
	max-width: 24px;
	height: 24px;
	width: 100%;
	object-fit: contain;
}

.contact-wrap__phone {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 28px;
	line-height: 100%;
	text-align: right;
	color: #fff;
}

.nav__link--active {
	color: #fff;
	position: relative;
	padding: 8px 17px;
	background: #6a0707;
	border-radius: 20px;
}

.nav__link--active::after {
	content: "";
	position: absolute;
	top: 30px;
	left: 0px;
	max-width: 232px;
	width: 100%;
	height: 90px;
	background: url(../img/nav-blood.png) no-repeat center;
	background-size: cover;
	z-index: -1;
	pointer-events: none;
}
.mobile-nav__link.nav__link--active::after {
	top: 33px;
	left: 5px;
	max-width: 113px;
	height: 49px;
}

.breadcrumbs {
	font-size: 18px;
	color: #b3b3b3;
	margin-bottom: 230px;
}

.breadcrumbs__link {
	color: #b3b3b3;
	transition: color 0.3s;
}

.breadcrumbs__link:hover {
	color: #fff;
}

.hero {
	padding-bottom: 5px;
	transition: padding-bottom 0.3s ease;
}

.hero__panel {
	position: relative;
	width: 100%;
	border-radius: 43px;
	padding: 60px 40px 17px;
	box-shadow: 0 4px 20px 0 rgba(255, 255, 255, 0.25);
	background: rgba(123, 123, 123, 0.15);
	transition:
		padding 0.3s ease,
		border-radius 0.3s ease;
}

.hero__logo {
	position: absolute;
	top: -175px;
	left: 0;
	transition:
		max-width 0.3s ease,
		top 0.3s ease;
}
.hero__content {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.hero__text {
	max-width: 700px;
}

.hero__title-image {
	width: 280px;
	margin-bottom: 20px;
}

.hero__title {
	max-width: 917px;
	font-family: var(--third-family);
	font-weight: 400;
	font-size: clamp(9px, 2.6vw, 48px);
	line-height: 140%;
	letter-spacing: 0.09em;
	color: #fff;
	text-transform: uppercase;
	transition:
		font-size 0.3s ease,
		line-height 0.3s ease;
}

.hero__lead {
	font-family: var(--font4);
	font-weight: 700;
	font-size: clamp(8px, 1.25vw, 24px);
	line-height: 140%;
	letter-spacing: 0.09em;
	color: #ff0004;
	transition: font-size 0.3s ease;
}

.hero__image {
	width: 450px;
	object-fit: contain;
	transform: translateY(30px);
}

.hero__phone {
	display: flex;
	margin-top: 5px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: clamp(10px, 1.5vw, 28px);
	line-height: 100%;
	text-align: right;
	color: #fff;
	transition: font-size 0.3s ease;
}

.hero__visual {
	position: absolute;
	bottom: 0;
	right: -3%;
	width: clamp(133px, 29vw, 560px);
	transition:
		width 0.3s ease,
		right 0.3s ease;
}

.hero__venom {
	width: 100%;
	height: auto;
	max-height: clamp(182px, 40vw, 767px);
	object-fit: contain;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
	transition:
		max-height 0.3s ease,
		transform 0.3s ease;
}

main {
	overflow: hidden;
}

.section {
	padding: 0 0 112px;
}
.section__title {
	/*max-width: 780px;*/
	width: 100%;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 64px;
	line-height: 127%;
	color: #fff;
	margin: 0 0 75px;
}

.wrapper {
	display: flex;
    justify-content: center;
    gap: 9px;
}
.buyout-wrapper.wrapper {
	flex-wrap: nowrap;
}
.single-wrapper.wrapper {
    flex-wrap: wrap;
}
.slide {
	flex-basis: 25%;
}

.product,
.buyout__card,
.accessory,
.single {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	border: 1.17px solid rgba(255, 255, 255, 0.14);
	border-radius: 23px;
	width: 352px;
	max-width: 352px;
	min-width: 245px;
	height: 725px;
	background: rgba(123, 123, 123, 0.15);
}
.single-wrapper.wrapper .single{
height: 200px;
}
.product__top,
.buyout__top,
.accessory__top {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 8px;
	min-height: 117px;
}

.product__top::after {
	content: "";
	position: absolute;
	bottom: 16px;
	right: 0;
	left: 0;
	max-width: 290px;
	width: 100%;
	height: 1.5px;
	background: linear-gradient(90deg, rgba(63, 63, 63, 0) 0%, #3f3f3f 50%, rgba(63, 63, 63, 0) 100%);
	margin: 0 auto;
	display: inline-block;
}

.marks {
	position: absolute;
	right: 30px;
	top: 30px;
	display: flex;
	gap: 6px;
	flex-direction: column;
	align-items: flex-end;
}
.marks__litres,
.marks__kilogrames,
.marks__nums {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	color: #fff;

	margin: 0;
	padding: 13px;

	border: 1.17px solid rgba(255, 255, 255, 0.2);
	border-radius: 117px;

	background: #202020;
}

.catalog .product__img,
.buyout__img {
	max-width: 358px;
	object-fit: contain;
	border-radius: 8px;
	padding: 12px;
}
.catalog .product__name,
.buyout .buyout__title,
.accessory__name {
	margin: 0px 0 8px;

	font-family: var(--font-family);
	font-weight: 600;
	font-size: 25px;
	margin-bottom: 23px;
	text-align: center;
	color: #fff;
}
.catalog .product__price,
.catalog .product__exchange,
.buyout__price,
.accessory__price,
.accessory__exchange {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-weight: 700;
	margin-bottom: 12px;
}

.product__bottom {
	margin-top: auto;
}

.product__info {
	margin-bottom: 29px;
	padding: 0px 30px;
}

.product__price_name,
.product__exchange-name,
.product__price_sum,
.product__exchange_sum,
.buyout__price_sum,
.buyout__price_name,
.accessory__price_name,
.accessory__price_sum,
.accessory__exchange_name,
.accessory__exchange_name {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 18px;
	color: #fff;
	margin: 0;
}

.product__btns,
.accessory__btns {
	padding: 0px 30px 30px;
}

.product__btn_more {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	color: #fff;
	margin: 23px auto 0;
	padding: 8px;
	display: block;
}

.buyout__card {
	height: 597px;
	max-width: 346px;
}

.accessory {
	width: 352px;
	height: 488px;
}

.accessory__top {
	height: 230px;
}

.accessory__name {
	margin-bottom: 0;
	margin-top: 35px;
}

.accessory__info {
	margin-bottom: 41px;
}

.accessory-wrap {
	position: relative;
}
.accessory-wrap__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.accessory-wrap__info {
	position: absolute;
	top: 58%;
	right: 0;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 0px 40px;
}
.accessory-wrap__title {
	margin: 0 0 33px;
	padding: 0;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 128px;
	line-height: 75%;
	text-align: center;
	color: rgba(255, 255, 255, 0.51);
}
.accessory-wrap__subtitle {
	margin: 0;
	padding: 0;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 32px;
	line-height: 103%;
	text-align: center;
	color: #fff;
}

.site-footer {
	padding: 28px 0;
	background: transparent;
	border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.site-footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.product__btn {
	border-radius: 14px;
	max-width: 291px;
	width: 100%;
	background: #ff0004;
}

.description {
	margin: 0px 0 100px;
}
.description .container {
	padding-inline: 10px;
}
.description__wrap {
	position: relative;
	display: flex;
	flex-direction: column;

	max-height: 300px;
	overflow: hidden;

	gap: 10px;

	max-width: 1242px;
	width: 100%;
	padding: 5px;

	transition: max-height 0.4s ease-in;
}

.description__wrap::after {
	content: "";
	inset: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(16, 16, 18, 0) 0%, #101012 80%);
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
}

.contact .description__wrap::after {content: none;}

.description__wrap.visible::after {
	opacity: 0;
}
.description__wrap p {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 175%;
	color: #fff;
	margin-bottom: 20px;
}
.description__wrap ul,.description__wrap li {
	list-style: disc;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 175%;
	color: #fff;
	margin-bottom: 20px;
    margin-left: 10px;
}



.contact .description__wrap {
	margin-top: 120px;
    max-height: max-content;
    overflow: visible;
}
.delivery h2{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 40px;
    color: #fff;
    margin-bottom: 0px;
}
.delivery p{
    font-family: var(--font5);
    font-weight: 400;
    font-size: 24px;
    color: #fff;
}
.delivery ul,.delivery li {
	list-style: disc;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 175%;
	color: #fff;
	margin-bottom: 10px;
    margin-left: 10px;
}

.description__text {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 175%;
	color: #fff;

	margin-bottom: 20px;
}
.description__wrap h2 {
	width: 100%;
	font-family: var(--font5);
	font-weight: 400;
	font-size: 44px;
	margin-bottom: 35px;
	text-transform: uppercase;
	color: #fff;
}
.description__title {
	max-width: 800px;
	width: 100%;

	font-family: var(--font5);
	font-weight: 400;
	font-size: 44px;
	margin-bottom: 35px;
	text-transform: uppercase;
	color: #fff;
}
.description__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-inline-start: 20px;
}
.description__item {
	font-size: 18px;
	list-style: disc;
}
.description__link {
	max-width: 220px;
	width: 100%;
	margin: 0;
	font-size: 16px;
}

.products__bottom {
    display: flex;
    flex-direction: column;
    gap: 20px !important;
}
.products__bottom p  {
    font-family: var(--font6);
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    color: #9f9f9f;
}
.products__bottom h2 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 110%;
    color: #9f9f9f;
    margin-bottom: 25px;
}

.products__bottom ul,.products__bottom  li {
	list-style: disc;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 175%;
	color: #9f9f9f;
	margin-bottom: 10px;
    margin-left: 10px;
}















.footer {
	position: relative;
	border-radius: 50px 50px 0 0;
	background: #1a1a1d;
	padding: 60px 20px 66px;
}

.footer .container {
	max-width: 1860px;
}

.footer::after {
	content: "";
	position: absolute;
	bottom: 16px;
	left: 0;
	max-width: 1860px;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
}
.footer__wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 130px;
}
.footer__first_list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer__logo {
	max-width: 190px;
	width: 100%;
	object-fit: contain;
	margin: 0 0 43px 24px;
}
.footer__first_text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 200%;
	color: #fff;
}

.footer__bottom {
	display: flex;
	gap: 10px;
}

.footer__second {
	display: flex;
	justify-content: space-between;
	gap: 160px;
}
.footer__second_catalog {
	flex-shrink: 0;
}
.footer__second_catalog,
.footer__second_company,
.footer__second_legacy {
	display: flex;
	flex-direction: column;
	gap: 21px;
}
.footer__second_title,
.footer__third_title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 22px;
	line-height: 100%;
	color: #fff;
}
.footer__third_title,
.footer__third_phone {
	margin-left: 85px;
}
.footer__second_list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer__second_link {
	color: #eaeaea;
	transition: color 0.4s ease-in;
}
.footer__second_link:hover,
.footer__second_link:active,
.footer__second_link:focus,
.footer__third_phone-number:focus,
.footer__third_phone-number:active,
.footer__third_phone-number:hover {
	color: #ff0004;
}

.footer__third {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 0 0 418px;
}

.footer__third_phone-number {
	display: inline-flex;
	margin-bottom: 20px;
}
.footer__third_phone-description {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 200%;
	color: #d482ed;
}
.footer__link {
	max-width: 416px;
	width: 100%;
	margin: auto auto 0;
}

@media (max-width: 1750px) {
	.footer__second {
		justify-content: center;
		gap: 40px;
	}
}

@media (max-width: 1480px) {
		.contact-wrap {
		display: none;
	}
}
@media (max-width: 1460px) {
	/* .slider {
		padding-bottom: 30px;
	} */
	.swiper-pagination {
		bottom: 0 !important;
	}
}
@media (max-width: 1430px) {

	.nav__list {
		padding-right: 25px;
	}

	.footer__link {
		margin-top: 35px;
	}
}
@media (max-width: 1300px) {
	.wrapper {
		flex-wrap: wrap;
	}
.slide {
	flex-basis: 50%;
}
}
@media (max-width: 1250px) {
	.footer__wrap {
		gap: 39px;
		flex-wrap: wrap;
		flex-direction: column;
	}
	.footer__bottom {
		justify-content: space-between;
	}
}
@media (max-width: 1200px) {
	.section-bg {
		padding-top: 180px;
	}
	.buyout-wrapper.wrapper {
		flex-wrap: wrap;
	}
	.site-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
		margin-bottom: 0px;
	}
	.section__title {
		font-size: 48px;
	}
	.hero__logo {
		max-width: 295px;
		top: -140px;
	}
	.nav {
		display: none;
	}
	.menu-burger {
		display: flex;
	}
	.footer__first {
		display: flex;
		gap: 50px;
	}
	.footer__bottom {
		display: flex;
		gap: 50px;
	}
	.footer__second {
		display: flex;
	}
	.footer__third {
		flex: none;
	}
	.footer__third_title,
	.footer__third_phone {
		margin-left: 0px;
	}
}
@media (max-width: 1060px) {
	.footer__bottom {
		flex-direction: column;
	}
	.footer__second {
		justify-content: space-between;
	}
}
@media (max-width: 992px) {
	.site-header {
		margin-bottom: 70px;
	}
	.breadcrumbs {
		margin-bottom: 140px;
	}
	.hero__logo {
		max-width: 205px;
		top: -90px;
	}

	.description__item {
		font-size: 16px;
	}
	.description__text {
		font-size: 16px;
		margin-bottom: 15px;
	}
	.description__title {
		font-size: 34px;
		margin-bottom: 15px;
	}

	.footer {
		border-radius: 30px 30px 0 0;
		padding: 30px 10px 30px;
	}
	.footer__logo {
		margin-left: 0;
	}
}

@media (max-width: 768px) {
	.container-mobile {
		padding: 0 30px;
	}
	.section-bg {
		padding-top: 120px;
	}
	.site-header {
		padding-top: 10px;
		box-shadow: none;
		margin-bottom: 40px;
		background: transparent;
	}
	.logo {
		max-width: 140px;
	}
	.breadcrumbs {
		margin-bottom: 100px;
		font-size: 12px;
	}
	.wrapper {
		gap: 25px;
	}

	.slide {
        flex-basis: 100%;
    }

	.section-bg {
		margin-bottom: 38px;
	}
	.contact-wrap {
		display: none;
	}
	.hero__panel {
		padding: 22px 13px;
		border-radius: 25px;
	}

	.hero__visual {
		right: -3%;
		width: clamp(133px, 38vw, 300px);
	}
	.hero__logo {
		max-width: 110px;
		top: -38%;
	}
	.footer {
		padding: 20px;
	}
}
@media (max-width: 640px) {
	.section {
		padding: 0 0 80px;
	}
	.section__title {
		font-size: 30px;
		margin-bottom: 40px;
	}
	.hero__logo {
		max-width: 140px;
		top: -50%;
	}
	.footer {
		padding: 15px 0;
	}
	.footer__wrap {
		justify-content: flex-start;
	}
	.footer__first {
		gap: 25px;
	}
	.footer__logo {
		margin-bottom: 0;
		max-width: 140px;
	}
	.footer__link {
		margin-top: 0px;
		font-size: 16px;
		border-radius: 4px;
	}
	.footer__second {
		flex-wrap: wrap;
	}
}
@media (max-width: 480px) {
	.section {
		padding: 0 0 45px;
	}
	.section-bg {
		padding-top: 70px;

		background-image: url("../img/header-bg-mob.webp");
	}
	.hero {
		padding-bottom: 50px;
	}
	.menu-burger {
		padding: 4px;
		width: 20px;
		height: 18px;
		gap: 2px;
	}
	.breadcrumbs {
		margin-bottom: 60px;
		font-size: 10px;
	}
	.menu-burger__item {
		width: 12px;
		height: 1px;
	}
	.menu-burger__item-center {
		height: 1px;
	}
	.menu-burger.active .menu-burger__item:first-child {
		transform: translateY(5px) rotate(-45deg);
	}
	.menu-burger.active .menu-burger__item:last-child {
		transform: translateY(-3px) rotate(45deg);
	}

	.menu-burger__item-center {
		width: 8px;
	}

	.mobile-nav .contact-wrap {
		margin-top: 10px;
		gap: 25px;
	}
	.mobile-nav__list {
		gap: 24px;
	}
	.mobile-nav .contact-wrap__phone {
		font-size: 20px;
	}
	.logo {
		max-width: 60px;
		width: 100%;
	}
	.hero__inner {
		padding-inline: 10px;
	}
	.hero__panel {
		border-radius: 8px;
		padding: 13px 8px 16px;
	}

	.product__top, .buyout__top, .accessory__top {
		padding-inline: 5px;
	}

	.hero__logo {
		max-width: 68px;
		top: -30px;
	}

	.hero__visual {
		right: 0%;
		width: 123px;
	}
	.hero__visual.hero-head {
		right: -3%;
	}

	.hero__venom {
		max-height: 182px;
	}

	.marks {
		right: 15px;
		top: 15px;
	}
	.marks__litres,
	.marks__kilogrames,
	.marks__nums {
		font-size: 12px;
	}

	.product,
	.buyout__card,
	.accessory {
		flex: 1 1 auto;
		height: 454px;
	}
	.buyout__card {
		height: 375px;
	}
	.accessory {
		height: 405px;
	}

	.product__btns {
		padding: 0px 12px 8px;
	}
	.buyout .product__btns,
	.accessory__btns {
		padding-bottom: 15px;
	}
	.product__info {
		margin-bottom: 15px;
		padding: 0px 12px;
	}
	.catalog .product__img,
	.buyout__img {
		width: 100%;
		height: auto;
		padding: 5px;
		object-fit: contain;
		max-height: 247px;
	}
	.product__top::after {
		bottom: 13px;
	}
	.product__btn_more {
		font-size: 15px;
		margin-top: 2px;
	}

	.btn {
		font-size: 15px;
		padding: 8px 0;
		border-radius: 5px;
	}
	.catalog .product__name,
	.buyout .buyout__title,
	.accessory__name {
		font-size: 16px;
		margin-bottom: 18px;
	}

	.product__price_name,
	.product__exchange-name,
	.product__price_sum,
	.product__exchange_sum,
	.buyout__price_sum,
	.buyout__price_name,
	.accessory__price_name,
	.accessory__price_sum,
	.accessory__exchange_name,
	.accessory__exchange_name {
		font-size: 12px;
	}

	.accessory-wrap__info {
		padding-inline: 20px;
	}
	.accessory-wrap__title {
		margin: 0 0 22px;
		font-size: 104px;
	}
	.accessory-wrap__subtitle {
		font-size: 24px;
	}

	.description {
		margin-bottom: 65px;
	}

	.section__title {
		font-size: 15px;
		margin-bottom: 28px;
	}
	.description__wrap {
		gap: 5px;
		padding: 2px;
	}
	.description__title {
		font-size: 20px;
		margin-bottom: 0;
	}
	.description__text {
		font-size: 12px;
		margin-bottom: 10px;
	}
	.description__list {
		padding-inline-start: 15px;
	}
	.description__item {
		font-size: 12px;
	}
	.description__link {
		font-size: 12px;
		padding: 10px 5px;
		max-width: 140px;
		border-radius: 5px;
	}
	.footer {
		border-radius: 14px 14px 0 0;
		padding: 15px 5px;
	}

	.footer .container {
		padding-inline: 8px;
	}
	.footer__first {
		gap: 10px;
		flex-direction: column;
	}
	.footer__wrap {
		padding-bottom: 15px;
	}
	.footer__second_catalog,
	.footer__second_company,
	.footer__second_legacy {
		gap: 14px;
	}
	.footer__first_logo {
		margin-bottom: 15px;
		max-width: 130px;
	}
	.footer__first_text {
		font-size: 12px;
	}
	.footer__first_list {
		gap: 3px;
	}
	.footer__second {
		gap: 20px;
	}
	.footer__second_item {
		font-size: 14px;
	}
	.footer__second_list {
		gap: 6px;
	}
	.footer__third {
		gap: 12px;
	}
	.footer__link {
		max-width: 225px;
		font-size: 12px;
		padding: 15px 20px;
	}
	.mobile-nav .mobile-nav__link {
		font-size: 13px;
	}
	.mobile-nav__link.nav__link--active::after {
		top: 30px;
	}
}

@media (min-width: 1200px) {
	.menu-burger {
		display: none;
	}

	.mobile-nav {
		display: none;
	}
}
