:root {
	--main-font-family: 'Inter', sans-serif;
	--font-size: 14px;
	--font-weight: 400;
	--link-transition: all 0.3s;
	--body-background: #000;
	--ivory: #f2f2f2;
	--metallic-grey: #b5b5b5;
	--lavender: #f3ecfe;
	--lavender-transparency: rgba(243, 236, 254, 0.7);
	--light-grey: #e4e4e4;
	--pumpkin: #ffb547;
	--border-color: rgba(255, 255, 255, 0.1);
	--border-content: rgba(243, 236, 254, 0.1);
	--white-color: #fff;
	--light-slate: #d8d8d8;
	--app-title: #9f9f9f;
	--charcoal-grey: #2e2e2e;
	--medium-grey: #656565;
	--dark-gray-gradient: radial-gradient(
		66.81% 76.35% at 33.21% 63%,
		#333131 0%,
		#252525 100%
	);
	--midnight-gradient: radial-gradient(
		118.33% 85.85% at 14.2% 94.76%,
		#1a1a1a 0%,
		#313131 100%
	);
	--burger-gradient: radial-gradient(
		66.81% 76.35% at 33.21% 63%,
		rgba(51, 49, 49, 0.95) 0%,
		rgba(37, 37, 37, 0.95) 100%
	);
	--burger-sublist: radial-gradient(
		118.33% 85.85% at 14.2% 94.76%,
		rgba(26, 26, 26, 0.9) 0%,
		rgba(49, 49, 49, 0.9) 100%
	);
	--100: 100;
	--200: 200;
	--300: 300;
	--400: 400;
	--500: 500;
}
* {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}
body {
	overflow-x: hidden;
}
*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,
:active {
	outline: none;
}
a:focus,
a:active {
	outline: none;
}
nav,
footer,
header,
aside {
	display: block;
}
html {
	scroll-behavior: smooth;
}
html,
body {
	font-family: var(--main-font-family);
	background: var(--body-background);
	color: var(--lavender);
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: var(--font-size);
	font-weight: var(--400);
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,
button,
textarea {
	background: transparent;
	font-family: inherit;
}
input::-ms-clear {
	display: none;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
input[type='number'],
input[type='number']:hover,
input[type='number']:focus {
	appearance: none;
	-moz-appearance: textfield;
}
button {
	cursor: pointer;
	transition: var(--link-transition);
}
button::-moz-focus-inner {
	padding: 0;
	border: 0;
}
a,
a:visited {
	transition: var(--link-transition);
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a {
	color: inherit;
}
ul li {
	list-style: none;
}
img {
	display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}
li {
	list-style-type: none;
}
.wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	margin-right: calc(-100vw + 100%);
	position: relative;
	overflow-x: hidden;
}
.wrapper .content {
	flex: 1 1 auto;
}
.container {
	max-width: 1150px;
	margin: 0 auto;
	padding-right: 15px;
	padding-left: 15px;
}
@media (max-width: 767px) {
	.container {
		padding: 0 10px;
	}
}
.hover-active:hover {
	transform: scale(1.05);
}
.hover-active:active {
	transform: scale(0.9);
}
.main-title {
	text-align: center;
	font-weight: var(--100);
	line-height: 1.2;
	font-size: 72px;
	color: var(--lavender);
}
@media (max-width: 1124px) {
	.main-title {
		font-size: 56px;
	}
}
@media (max-width: 767px) {
	.main-title {
		font-size: 24px;
	}
}
.main-subtitle {
	font-size: 18px;
	font-weight: var(--400);
	color: var(--lavender-transparency);
	text-align: center;
	line-height: 1.2;
	margin-top: 24px;
	padding: 0 15px;
}
@media (max-width: 767px) {
	.main-subtitle {
		font-size: 12px;
		margin-top: 10px;
	}
}
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	padding: 16px 0;
	z-index: 1000;
}
.header.scrolled {
	background-color: #000c;
}
.header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #0000004d;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 40;
}
.header__overlay.overlay-open {
	opacity: 1;
	visibility: visible;
}
.header__menu {
	display: flex;
	align-items: center;
	position: relative;
}
@media (max-width: 1250px) {
	.header__menu {
		flex-direction: column;
		transition: all 0.3s ease 0s;
		position: fixed;
		height: 100%;
		width: 100%;
		top: 0;
		left: -100%;
		z-index: 50;
		padding: 50px 20px 5px;
		background: var(--burger-gradient);
		overflow-y: scroll;
		backdrop-filter: blur(2px);
	}
}

@media (max-width: 500px) {
	.header__menu {
		padding-top: 90px;
	}
}
@media (max-width: 1250px) {
	.header__menu-body {
		height: 100%;
		overflow: auto;
		scrollbar-width: none;
	}
	.header__menu-body::-webkit-scrollbar {
		display: none;
		width: 0;
	}
}
.header__menu-list {
	display: flex;
	align-items: center;
	gap: 50px;
	flex-wrap: wrap;
}
@media (max-width: 1250px) {
	.header__menu-list {
		flex-direction: column;
		flex: 1 1 auto;
		align-items: center;
		overflow: auto;
		scrollbar-width: none;
		padding: 10px 0 0;
		gap: 40px;
	}
	.header__menu-list::-webkit-scrollbar {
		display: none;
		width: 0;
	}
}
.header__menu-item {
	font-size: 16px;
	color: var(--metallic-grey);
}
@media (max-width: 767px) {
	.header__menu-item {
		font-size: 24px;
	}
}
.header__menu-item:hover {
	color: var(--ivory);
}
.header__menu-item-sublist {
	padding: 10px;
	position: relative;
}
@media (min-width: 1250px) {
	.header__menu-item-sublist:hover svg {
		transform: rotate(180deg);
		transition: all 0.3s ease 0s;
	}
	.header__menu-item-sublist:hover:after {
		content: '';
		position: absolute;
		inset: 0;
		border: 1px solid var(--border-color);
		border-radius: 5px;
		background: var(--burger-sublist);
		height: var(--hover-height);
		pointer-events: none;
		z-index: -1;
	}
	.header__menu-item-sublist:hover .header__menu-sublist,
	.header__menu-item-sublist:hover .header__menu-sublist.show {
		visibility: visible;
		opacity: 1;
		pointer-events: all;
	}
}
@media (max-width: 1250px) {
	.header__menu-item-sublist {
		--hover-height: auto;
		overflow: auto;
	}
}
.header__menu-item-logo {
	display: none;
}
@media (max-width: 1250px) {
	.header__menu-item-logo {
		display: block;
	}
	.header__menu-item-logo img {
		width: 170px;
	}
}
.header__menu-item-active {
	color: var(--ivory);
}
.header__menu-link-wrapper {
	display: flex;
	align-items: center;
	gap: 5px;
}
.header__menu-item {
	text-transform: uppercase;
}
.header__menu-link-wrapper svg {
	transition: all 0.3s ease 0s;
	cursor: pointer;
}
@media (max-width: 1023px) {
	.header__menu-link-wrapper svg {
		width: 30px;
		height: 30px;
	}
}
.header__menu-sublist {
	position: absolute;
	top: 100%;
	left: 0;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
@media (min-width: 1250px) {
	.header__menu-sublist {
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease 0s;
		pointer-events: none;
	}
}
@media (max-width: 1250px) {
	.header__menu-sublist {
		position: relative;
		top: 0;
		flex: 1 1 100%;
		display: none;
		padding: 20px 0 0;
	}
	.header__menu-sublist.show {
		display: block;
		transition: all 0.3s ease 0s;
	}
}
.header__menu-sublist-link {
	font-size: 12px;
	font-weight: 400;
	color: var(--metallic-grey);
}
.header__menu-sublist-link:hover {
	text-decoration: underline;
}
@media (max-width: 1023px) {
	.header__menu-sublist-link {
		font-size: 14px;
	}
}
.header__menu-social {
	display: none;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}
@media (max-width: 1023px) {
	.header__menu-social {
		display: flex;
		margin: 30px 0 0;
		position: absolute;
		bottom: 20px;
		left: 0;
	}
}
.header__menu-social-link {
	font-weight: var(--500);
	font-size: 16px;
	color: var(--metallic-grey);
}
.header__menu-social-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	padding: 10px;
	border-top: 1px solid var(--metallic-grey);
	width: 100%;
	margin: 10px 0 0;
}
.header__menu-cart {
	width: 32px;
	height: 32px;
	z-index: 200;
}
@media (max-width: 1023px) {
	.header__menu-cart {
		display: none;
	}
}
.header__menu-cart-mobile {
	display: none;
}

@media (max-width: 1250px) {
	.header__menu-cart-mobile {
		display: block;
		position: absolute;
		top: 20px;
		left: 20px;
	}
	.header__menu-cart-mobile img {
		width: 32px;
		height: 32px;
	}
	.header__tools-desktop {
		display: flex;
		z-index: 1;
		gap: 10px;
	}
	.header__tools-user-desktop {
		display: none;
	}
	.header__actions-menu {
		display: flex;
		align-items: center;
		gap: 24px;
		z-index: 50;
	}
	.header__tools-cart {
		z-index: 50;

		img {
			width: 40px;
		}
		span {
			width: 20px;
			height: 20px;
			right: -5px;
			font-size: 14px;
		}
	}
}
.header__tools-mobile {
	display: none;
}
@media (max-width: 375px) {
	.header__actions-menu {
		gap: 10px;
	}
	.header__menu {
		padding-top: 80px;
	}
}

.header__burger {
	position: relative;
	display: none;
	z-index: 50;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
}
@media (max-width: 1250px) {
	.header__burger {
		display: flex;
	}
	.header__menu-sublist-item {
		margin: 10px 0 0 0;
		text-align: center;
	}
}
.header__burger span {
	height: 3px;
	width: 80%;
	transform: scale(1);
	background-color: var(--light-slate);
	border-radius: 10px;
}
.header__burger:before,
.header__burger:after {
	content: '';
	position: absolute;
	height: 3px;
	width: 80%;
	background-color: var(--light-slate);
	transition: all 0.3s ease 0s;
	border-radius: 10px;
}
.header__burger:before {
	top: 7px;
}
.header__burger:after {
	bottom: 7px;
}
.header__burger.active span {
	transform: scale(0);
}
.header__burger.active:before {
	top: 50%;
	transform: rotate(-45deg) translateY(-50%);
}
.header__burger.active:after {
	bottom: 48%;
	transform: rotate(45deg) translateY(50%);
}
.header__tools-counter {
	width: 15px;
	height: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--white-color);
	font-size: 12px;
	background-color: #f00;
	position: absolute;
	top: 34%;
	right: 0;
	z-index: 2;
}
.header__tools-info {
	position: relative;
}
.header__tools-cart {
	display: flex;
	align-items: center;
	gap: 5px;
}

.header__menu-list {
	display: flex;
	align-items: center;
	gap: 50px;
	flex-wrap: wrap;
}
@media (max-width: 767px) {
	.header__menu-list {
		flex-direction: column;
		padding: 50px 0 0;
		flex: 1 1 auto;
	}
}
.header__menu-item {
	font-size: 16px;
	color: var(--metallic-grey);
}
@media (max-width: 767px) {
	.header__menu-item {
		font-size: 24px;
	}
}
.header__menu-item:hover {
	color: var(--ivory);
}
/* @media (max-width: 767px) {
	.header__menu-item-logo {
		display: block;
	}
	.header__menu-item-logo img {
		width: 170px;
	}
} */
.header__menu-item-active {
	color: var(--ivory);
}

.header__menu-cart {
	width: 32px;
	height: 32px;
	z-index: 200;
}
@media (max-width: 767px) {
	.header__menu-cart {
		display: none;
	}
}
.header__menu-cart-mobile {
	display: none;
}
@media (max-width: 767px) {
	.header__menu-cart-mobile {
		display: block;
		position: absolute;
		top: 20px;
		left: 20px;
	}
	.header__menu-cart-mobile img {
		width: 32px;
		height: 32px;
	}
}
.open {
	display: flex;
	left: 0;
	transition: all 0.3s ease 0s;
}
.lock {
	overflow: hidden;
}
.banner {
	max-width: 3000px;
	width: 100%;
	margin: 0 auto;
	height: 100%;
	overflow: hidden;
}
@media (max-width: 1124px) {
	.banner {
		min-height: 380px;
	}
}
@media (max-width: 767px) {
	.banner {
		min-height: 370px;
	}
}
.banner__wrapper,
.banner__wrapper-image {
	width: 100%;
	height: 100%;
}
.banner__wrapper-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 1124px) {
	.banner__wrapper-image img {
		min-height: 380px;
	}
}
@media (max-width: 767px) {
	.banner__wrapper-image img {
		min-height: 370px;
	}
}
.video-block {
	width: 100%;
	margin-top: 30px;
}
.video-block__wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.video-block__card {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 10px;
	border-radius: 10px;
	border: 1px solid var(--border-color);
	background: var(--dark-gray-gradient);
	backdrop-filter: blur(2px);
	gap: 40px;
}
@media (max-width: 767px) {
	.video-block__card {
		flex-direction: column;
		gap: 20px;
	}
}
.video-block__card-reverse {
	flex-direction: row-reverse;
	padding: 10px 10px 10px 40px;
}
@media (max-width: 767px) {
	.video-block__card-reverse {
		flex-direction: column;
		padding: 10px;
	}
}
.video-block__card-content {
	max-width: 438px;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}
@media (max-width: 767px) {
	.video-block__card-content {
		max-width: 100%;
	}
}
.video-block__card-content video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}
.video-block__card-info {
	display: flex;
	flex-direction: column;
	gap: 11px;
	max-width: 585px;
	width: 100%;
	margin: 0 auto;
}
@media (max-width: 767px) {
	.video-block__card-info {
		max-width: 100%;
		padding: 0 20px;
	}
}
.video-block__card-title {
	font-weight: var(--500);
	color: var(--ivory);
	font-size: 49px;
}
@media (max-width: 1124px) {
	.video-block__card-title {
		font-size: 35px;
	}
}
@media (max-width: 767px) {
	.video-block__card-title {
		font-size: 24px;
	}
}
.video-block__card-title span {
	font-weight: var(--100);
}
.video-block__card-description {
	color: var(--metallic-grey);
	font-weight: var(--400);
	line-height: 1.6;
}
.innovation {
	padding: 70px 0 0;
}
@media (max-width: 767px) {
	.innovation {
		padding: 40px 0 0;
	}
}
.innovation__wrapper {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	justify-content: center;
	margin: 30px 0 0;
}
@media (max-width: 1649px) {
	.innovation__wrapper {
		gap: 15px;
	}
}
@media (max-width: 767px) {
	.innovation__wrapper {
		flex-direction: column;
	}
}
.innovation__card {
	max-width: 548px;
	min-height: 500px;
	width: 100%;
	border-radius: 16px;
	padding: 28px 24px;
	border: 1px solid var(--border-color);
	background: var(--midnight-gradient);
	display: flex;
	flex-direction: column;
	gap: 24px;
	overflow: hidden;
}
@media (max-width: 1649px) {
	.innovation__card {
		max-width: 520px;
	}
}
@media (max-width: 1124px) {
	.innovation__card {
		padding: 15px;
		max-width: 490px;
	}
}
@media (max-width: 1023px) {
	.innovation__card {
		max-width: 360px;
		padding: 10px;
		gap: 10px;
	}
}
@media (max-width: 767px) {
	.innovation__card {
		max-width: 100%;
		min-height: 460px;
	}
}
.innovation__card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	border: 1px solid var(--border-content);
}
@media (max-width: 767px) {
	.innovation__card-image-last {
		object-position: left;
	}
}
.innovation__card-content {
	width: 100%;
	border-radius: 16px;
	height: 318px;
}
@media (max-width: 767px) {
	.innovation__card-content {
		height: 340px;
	}
}
@media (max-width: 575px) {
	.innovation__card-content {
		height: 318px;
	}
}
.innovation__card-content video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	border: 1px solid var(--border-content);
}
.innovation__card-wrapper {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	justify-content: space-between;
	padding: 10px 35px 0;
}
@media (max-width: 1124px) {
	.innovation__card-wrapper {
		padding: 10px;
	}
}
@media (max-width: 767px) {
	.innovation__card-wrapper {
		justify-content: space-evenly;
	}
}
@media (max-width: 575px) {
	.innovation__card-wrapper {
		padding: 0;
		margin-top: -15px;
	}
}
.innovation__card-wrapper-image {
	max-width: 250px;
	width: 100%;
}
@media (max-width: 575px) {
	.innovation__card-wrapper-image {
		margin-left: -70px;
	}
}
.innovation__card-wrapper-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.innovation__card-wrapper-info {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 10px;
}
.innovation__card-wrapper-info p {
	color: var(--app-title);
	font-size: 16px;
	font-weight: var(--500);
	text-transform: uppercase;
	text-align: center;
}
@media (max-width: 374px) {
	.innovation__card-wrapper-info p {
		font-size: 14px;
	}
}
.innovation__card-wrapper-info img {
	max-width: 140px;
	width: 100%;
	height: 100%;
}
.innovation__card-wrapper-store {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 10px;
	margin: 10px 0 0;
}
.innovation__card-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0 0 0 5px;
}
@media (max-width: 767px) {
	.innovation__card-info {
		padding: 0 0 0 10px;
	}
}
.innovation__card-title {
	font-size: 18px;
	color: var(--white-color);
}
@media (max-width: 767px) {
	.innovation__card-title {
		font-size: 14px;
	}
}
.innovation__card-subtitle {
	font-size: 16px;
	line-height: 1.5;
	color: var(--lavender-transparency);
}
@media (max-width: 767px) {
	.innovation__card-subtitle {
		font-size: 14px;
	}
}
.choose {
	padding: 70px 0 0;
}
@media (max-width: 767px) {
	.choose {
		padding: 40px 0 0;
	}
}
.choose__cards {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
@media (max-width: 1023px) {
	.choose__cards {
		gap: 10px;
	}
}
.choose__wrapper {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	margin: 30px 0 0;
}
@media (max-width: 1124px) {
	.choose__wrapper {
		gap: 10px;
	}
}
@media (max-width: 1023px) {
	.choose__wrapper {
		flex-direction: column;
	}
}
.choose__card {
	width: 100%;
	padding: 28px 24px;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	background: var(--midnight-gradient);
	display: flex;
	flex-direction: column;
	gap: 25px;
	/* min-height: 720px; */
}
@media (max-width: 1124px) {
	.choose__card {
		padding: 10px;
	}
}
/* @media (max-width: 1023px) {
	.choose__card {
		min-height: 670px;
	}
} */
.choose__card:hover .choose__card-image img {
	transition: var(--link-transition);
	transform: scale(1.08);
}
/* .choose__card-main {
	min-height: 670px;
} */
.choose__card-main .choose__card-title,
.choose__card-main .choose__card-description {
	text-align: center;
}
.choose__card-image {
	width: 100%;
	height: 100%;
	height: 318px;
	overflow: hidden;
	border-radius: 16px;
	transition: all 0.3s ease 0s;
}
.choose__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	height: 318px;
	border: 1px solid var(--border-content);
	transition: var(--link-transition);
}
.choose__card-info {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 0 0 0 5px;
}
@media (max-width: 767px) {
	.choose__card-info {
		padding: 0;
	}
}
.choose__card-title {
	font-size: 24px;
	color: var(--white-color);
}
.choose__card-description {
	line-height: 1.6;
	color: var(--lavender-transparency);
}
.choose__card-characteristics {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
@media (max-width: 767px) {
	.choose__card-characteristics {
		gap: 5px;
	}
}
@media (max-width: 374px) {
	.choose__card-characteristics {
		grid-template-columns: repeat(2, 1fr);
	}
}
.choose__card-characteristics-item {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	background-color: var(--charcoal-grey);
	padding: 16px;
}
@media (max-width: 767px) {
	.choose__card-characteristics-item {
		padding: 16px 5px;
	}
}
@media (max-width: 374px) {
	.choose__card-characteristics-item:nth-child(3) {
		grid-column: span 2;
	}
}
.choose__card-characteristics-block {
	display: flex;
	align-items: center;
	gap: 8px;
}
.choose__card-characteristics-icon {
	width: 24px;
	height: 24px;
}
.choose__card-characteristics-info {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.choose__card-characteristics-title {
	line-height: 1.6;
	color: var(--metallic-grey);
}
.choose__card-characteristics-descr {
	font-weight: var(--500);
	color: var(--medium-grey);
}
.choose__card-buy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	margin: 10px 0 0;
}
.choose__card-block {
	display: flex;
	align-items: center;
	gap: 20px;
}
.choose__card-price {
	font-size: 64px;
	font-weight: var(--500);
	color: var(--light-grey);
}
@media (max-width: 374px) {
	.choose__card-price {
		font-size: 45px;
	}
}
.choose__card-button {
	max-width: 215px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: inherit;
	border-radius: 6px;
	border: 1px solid var(--white-color);
	padding: 16px;
	transition: var(--link-transition);
}
.choose__card-button:hover {
	background: var(--lavender);
}
.choose__card-button:hover span {
	color: var(--charcoal-grey);
}
.choose__card-button span {
	color: var(--white-color);
	font-weight: var(--500);
}
.reviews {
	padding: 70px 0 0;
}
@media (max-width: 767px) {
	.reviews {
		padding: 40px 0 0;
	}
}
.reviews__wrapper {
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
	margin: 30px 0 0;
}
@media (max-width: 767px) {
	.reviews__wrapper {
		flex-direction: column;
	}
}
.reviews__total {
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	justify-content: center;
	border-radius: 25px;
	border: 1px solid var(--border-color);
	background: var(--midnight-gradient);
}
@media (max-width: 767px) {
	.reviews__total {
		width: 40%;
	}
}
@media (max-width: 575px) {
	.reviews__total {
		width: 100%;
	}
}
.reviews__total-title {
	font-size: 56px;
	font-weight: var(--500);
	color: var(--metallic-grey);
}
.reviews__total-description {
	font-weight: var(--500);
	color: var(--metallic-grey);
}
.reviews__total-stars {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2px;
}
@media (max-width: 767px) {
	.reviews__total-stars {
		width: 100%;
		justify-content: space-evenly;
	}
}
.reviews__chart {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 880px;
	width: 100%;
}
.reviews__chart-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.reviews__chart-title {
	font-size: 15px;
	color: var(--metallic-grey);
	text-align: left;
	max-width: 100px;
	width: 100%;
}
.reviews__chart-count {
	font-size: 15px;
	color: var(--metallic-grey);
	max-width: 35px;
	width: 100%;
}
.reviews__chart-line {
	max-width: 740px;
	width: 100%;
	border-radius: 16px;
	height: 5px;
	background-color: var(--light-grey);
	position: relative;
}
.reviews__chart-line span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: var(--pumpkin);
	transition: width 3s ease-out;
}
.reviews__input {
	width: 100%;
	margin: 40px 0 0;
}
.reviews__input input {
	width: 100%;
	border: 0.5px solid var(--metallic-grey);
	border-radius: 7px;
	background-color: var(--light-slate);
	padding: 24px 16px;
}
.slider {
	padding: 30px 0 30px 25px;
	overflow-x: visible;
	z-index: 20;
}
@media (max-width: 767px) {
	.slider {
		padding-left: 0;
	}
}
.slider__card {
	padding: 24px 28px 24px 16px;
	border-radius: 10px;
	max-width: 358px;
	width: 100%;
	border: 1px solid var(--border-color);
	background: var(--midnight-gradient);
	cursor: grab;
	display: flex;
	flex-direction: column;
}
@media (max-width: 767px) {
	.slider__card {
		max-width: 305px;
	}
}
.slider__card-head {
	display: flex;
	align-items: center;
	gap: 19px;
}
.slider__card-avatar img {
	width: 56px;
	height: 56px;
}
.slider__card-info {
	display: flex;
	flex-direction: column;
	gap: 11px;
	width: 100%;
}
.slider__card-block {
	display: flex;
	align-items: center;
	gap: 15px;
	width: 100%;
	justify-content: space-between;
}
.slider__card-user {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.slider__card-user-name,
.slider__card-user-surname {
	font-weight: var(--700);
	font-size: 16px;
}
.slider__card-date {
	display: flex;
	align-items: center;
	gap: 2px;
	font-weight: var(--400);
	color: var(--metallic-grey);
	flex-wrap: wrap;
}
.slider__card-stars {
	display: flex;
	align-items: center;
	gap: 3px;
}
.slider__card-stars img {
	width: 18px;
	height: 18px;
}
.slider__card-content {
	margin: 10px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.slider__card-description {
	color: var(--metallic-grey);
	line-height: 1.6;
}
.slider__card-description a {
	text-decoration-line: underline;
	color: var(--medium-grey);
}
.slider__card-description a:hover {
	color: var(--lavender);
}
.slider__card-images {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 8px 0 0;
}
@media (max-width: 374px) {
	.slider__card-images {
		flex-wrap: wrap;
		justify-content: center;
	}
}
.slider__card-images img {
	width: 118px;
	height: 88px;
	border-radius: 6px;
}
@media (max-width: 767px) {
	.slider__card-images img {
		width: 92px;
		height: 68px;
	}
}
.slider__navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px 0 0;
	gap: 20px;
}
@media (max-width: 767px) {
	.slider__navigation {
		display: none;
	}
}
.slider__navigation-prev {
	transform: rotate(180deg);
}
.slider__navigation img {
	cursor: pointer;
}
.swiper-pagination-bullet-active,
.swiper-pagination-bullet {
	background-color: var(--metallic-grey) !important;
}
.swiper-pagination-bullets {
	width: 100%;
	transform: translate(0) !important;
}
.footer {
	padding: 100px 0;
}
@media (max-width: 767px) {
	.footer {
		padding: 50px 0;
	}
}
.footer__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
@media (max-width: 767px) {
	.footer__wrapper {
		flex-direction: column;
		gap: 50px;
	}
}
.footer__main {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
@media (max-width: 575px) {
	.footer__main {
		align-items: center;
		justify-content: center;
	}
}
.footer__main-logo img {
	width: 75px;
}
.footer__main-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer__main-list-link {
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer__main-list-link:hover p {
	color: var(--lavender);
}
.footer__main-list-link img {
	width: 24px;
	height: 24px;
}
.footer__main-list-link p {
	color: var(--light-grey);
}
.footer__main-social {
	max-width: 180px;
	width: 100%;
	margin: 40px 0 0;
}
@media (max-width: 767px) {
	.footer__main-social {
		margin: 20px 0 0;
	}
}
.footer__main-social-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer__main-social-list img {
	width: 24px;
	height: 24px;
}
.footer__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(140px, 200px));
	gap: 30px;
}
@media (max-width: 767px) {
	.footer__links {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 575px) {
	.footer__links {
		grid-template-columns: repeat(1, 1fr);
		gap: 50px;
	}
}
.footer__links-block {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
@media (max-width: 575px) {
	.footer__links-block {
		align-items: center;
	}
}
.footer__links-block-title {
	font-weight: var(--500);
	font-size: 16px;
	color: var(--white-color);
}
.footer__links-block-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
@media (max-width: 575px) {
	.footer__links-block-list {
		align-items: center;
	}
}
.footer__links-block-link {
	font-weight: var(--300);
	color: var(--light-grey);
}
.footer__links-block-link:hover {
	color: var(--lavender);
	font-weight: var(--500);
}

.module-bottom-bar__wrapper {
	display: flex;
}

.blaze-modes {
	max-width: 3000px;
	width: 100%;
	margin: 20px auto;
	overflow: hidden;
}
.blaze-modes__wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}
.blaze-modes__wrapper-image {
	width: 100%;
	height: 100%;
}
.blaze-modes__wrapper-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 767px) {
	.blaze-modes__wrapper-image img {
		min-height: 776px;
		object-position: 40% center;
	}
}
.blaze-modes__wrapper-modes {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%);
	max-width: 1152px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, minmax(50px, 268px));
	gap: 20px;
	padding: 0 10px;
}
.blaze-modes__wrapper-modes img {
	margin: 0 auto;
}
@media (max-width: 1124px) {
	.blaze-modes__wrapper-modes img {
		max-width: 200px;
	}
}
@media (max-width: 767px) {
	.blaze-modes__wrapper-modes {
		grid-template-columns: repeat(2, minmax(50px, 1fr));
	}
}
.blaze-modes__wrapper-modes-item {
	max-width: 268px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
.blaze-modes__wrapper-modes-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.distributor {
	width: 100%;
	box-sizing: border-box;
	margin: 10px 0;
	opacity: 0;
	transform: translateY(-50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
	z-index: 3;
	position: relative;
}
.distributor.show-in {
	opacity: 1;
	transform: translateY(0);
}
.distributor-wrapper {
	width: 100%;
	position: relative;
	border-radius: 10px;
	border: 1px solid #1a1a1a;
	background-color: #000000;
	height: 85px;
	overflow: hidden;
}

.distributor-image {
	width: 100%;
	height: 100%;
	position: relative;
}
.distributor-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.distributor-info {
	display: flex;
	align-items: center;
	gap: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	box-sizing: border-box;
	transform: translate(-50%, -50%);
	max-width: 590px;
	width: 100%;
	box-sizing: border-box;
	padding: 0 10px;
}
.distributor-info-icon img {
	width: 75px;
	height: 58px;
}

.distributor-info-main {
	display: flex;
	flex-direction: column;
	gap: 5px;
	max-width: 500px;
	width: 100%;
}

.distributor-info-title {
	font-size: 34px;
	font-weight: 500;
	color: #d8d8d8;
}
.distributor-info-subtitle {
	font-size: 12px;
	font-weight: 400px;
	line-height: 1.2;
	color: #b5b5b5;
}

@media (max-width: 767px) {
	.distributor-info-title {
		font-size: 24px;
	}
}

@media (max-width: 500px) {
	.distributor-info-title {
		font-size: 18px;
	}
	.distributor-info-icon img {
		width: 60px;
		height: 60px;
	}
	.distributor-wrapper {
		height: 110px;
	}
}
