/* Эксперименты с горизонтальной прокруткой
    –––––––––––––––––––––––––––––––––––––––––––––––––– */

.promo_beauty .cards {
	display: flex;
	padding: 0;
	list-style: none;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	margin: 10px 0 30px 0;
}

.promo_beauty .card {
	display: flex;
	flex-direction: column;
	flex: 0 0 100%;
	scroll-snap-align: start;
	flex-basis: calc(55% - 5px);
}

.card:not(:last-child) {
	margin-right: 10px;
}

.promo_beauty .cards::-webkit-scrollbar {
	height: 16px;
}

.promo_beauty .cards::-webkit-scrollbar-thumb,
.promo_beauty .cards::-webkit-scrollbar-track {
	border-radius: 92px;
}

.promo_beauty .cards::-webkit-scrollbar-thumb {
	background: rgb(50, 50, 50, 0.7);
}

.promo_beauty .cards::-webkit-scrollbar-thumb:hover {
	background: rgb(50, 50, 50, 0.8);
	cursor: pointer;
}

.promo_beauty .cards::-webkit-scrollbar-track {
	background: rgb(50, 50, 50, 0.1);
}

.promo_beauty .cards::-webkit-scrollbar-button:single-button {
	background-color: none;
	display: block;
	background-size: 15px;
	background-repeat: no-repeat;
}

.promo_beauty .cards::-webkit-scrollbar-button:single-button:horizontal:increment:hover {
	opacity: 0.8;
	cursor: pointer;
}

.promo_beauty .cards::-webkit-scrollbar-button:single-button:horizontal:decrement:hover {
	opacity: 0.8;
	cursor: pointer;
}

.promo_beauty .cards::-webkit-scrollbar-button:single-button:horizontal:increment {
	height: 15px;
	width: 40px;
	background-position: 10px 0px;
	background-image: url("https://store.argus-x.ru/images/metcal/promo/circle-right-solid.svg");
}

.promo_beauty .cards::-webkit-scrollbar-button:single-button:horizontal:decrement {
	height: 15px;
	width: calc(100% - 200px);
	background-position: calc(100% - 10px) 0px;
	background-image: url("https://store.argus-x.ru/images/metcal/promo/circle-left-solid.svg");
}

@media (min-width: 768px) {
	.promo_beauty .card {
		flex-basis: calc(45% - 10px);
	}
	.promo_beauty .card:not(:last-child) {
		margin-right: 20px;
	}
	.promo_beauty .cards::-webkit-scrollbar {
		height: 16px;
	}
	.promo_beauty .cards::-webkit-scrollbar-button:single-button:horizontal:increment {
		height: 15px;
	}
	.promo_beauty .cards::-webkit-scrollbar-button:single-button:horizontal:decrement {
		height: 15px;
	}
	.promo_beauty .cards::-webkit-scrollbar-button:single-button {
		background-size: 15px;
	}
}

@media (min-width: 992px) {
	.promo_beauty .card {
		flex-basis: calc(calc(100% / 3) - 20px);
	}
	.promo_beauty .card:not(:last-child) {
		margin-right: 30px;
	}
	.promo_beauty .cards::-webkit-scrollbar {
		height: 20px;
	}
	.promo_beauty .cards::-webkit-scrollbar-button:single-button:horizontal:increment {
		height: 20px;
	}
	.promo_beauty .cards::-webkit-scrollbar-button:single-button:horizontal:decrement {
		height: 20px;
	}
	.promo_beauty .cards::-webkit-scrollbar-button:single-button {
		background-size: 20px;
	}
}

@media (min-width: 1500px) {
	.promo_beauty .card {
		flex-basis: calc(25% - 30px);
	}
	.promo_beauty .card:not(:last-child) {
		margin-right: 40px;
	}
	.promo_beauty .cards::-webkit-scrollbar {
		height: 30px;
	}
	.promo_beauty .cards::-webkit-scrollbar-button:single-button:horizontal:increment {
		height: 30px;
	}
	.promo_beauty .cards::-webkit-scrollbar-button:single-button:horizontal:decrement {
		height: 30px;
	}
	.promo_beauty .cards::-webkit-scrollbar-button:single-button {
		background-size: 30px;
	}
}


/* Эксперименты с горизонтальной прокруткой
    –––––––––––––––––––––––––––––––––––––––––––––––––– */

.promo_beauty .series-section h2 {
	padding-top: 160px;
}

.promo_item {
	border-radius: 10px;
	background: rgb(255, 255, 255);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10;
	margin-bottom: 30px;
	transition: all 0.5s;
}

.promo_item img {
	transition: all 0.5s;
}

.promo_item:hover img {
	transform: scale(1.05);
}

.promo_item_desc {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10;
	padding: 20px;
	min-height: 440px;
}

.fullwidth_back {
	position: relative;
	width: calc(100vw - 16px);
	left: 50%;
	margin-left: calc(-50vw + 8px);
	background: rgb(242, 243, 244);
	padding: 90px 0;
}

.double_banner {
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin: 90px 0;
	height: 600px;
}

.double_banner_desc {
	background: #fff;
	padding: 5%;
	width: 100%;
	min-height: fit-content;
}

.promo_beauty h3 {
	color: rgb(94, 94, 94);
	font-family: Open Sans;
	font-size: 18px;
	font-weight: 300;
	line-height: 26px;
	letter-spacing: 0%;
	text-align: left;
}

.promo_beauty h2 {
	color: rgb(29, 29, 29);
	font-family: Open Sans;
	font-size: 36px;
	font-weight: 600;
	line-height: 49px;
	letter-spacing: 0%;
	margin: 0;
	margin-top: 30px;
}

.promo_beauty p {
	color: rgb(33, 32, 32);
	font-family: Open Sans;
	font-size: 24px;
	font-weight: 600;
	line-height: 33px;
	letter-spacing: 0%;
}

.promo_beauty a {
	font-family: Open Sans;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0%;
	text-align: left;
	text-decoration: none;
	pointer-events: all;
	color: rgb(0, 0, 0);
	margin: 0px 20px 8px 0px;
}

.promo_beauty .banner-video-container {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}

.promo_beauty .banner-video-container img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.promo_beauty video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.promo_beauty .promo_banner {
	position: relative;
	width: 100%;
	height: 800px;
	overflow: hidden;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	margin: 0 0 90px 0;
}

.promo_beauty .promo_banner_content {
	position: absolute;
	z-index: 2;
	text-align: center;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 15px 15px;
	top: 0;
	max-width: 1100px;
        width:90%;
}

.button_container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: auto;
}

.transparent_promo_button {
	border: 1px solid rgb(0, 0, 0, 0.3);
	border-radius: 10px;
	color: rgb(33, 32, 32);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	gap: 10;
	padding: 10px 20px 10px 20px;
	margin: 8px 20px 8px 0;
	width: fit-content;
}

.transparent_promo_button i {
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	margin-left: 10px;
}

.transparent_promo_button:hover,
.transparent_promo_button:focus {
	border: 1px solid rgb(0, 0, 0, 1);
}

.promo_beauty .black_promo_button {
	border-radius: 10px;
	background: rgb(0, 0, 0);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	gap: 10;
	padding: 10px 20px 10px 20px;
	color: rgb(254, 254, 254);
	width: fit-content;
}

.black_promo_button a {
	color: rgb(254, 254, 254);
}

.black_promo_button i {
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	margin-left: 10px;
}

.black_promo_button:hover,
.black_promo_button:focus {
	color: rgb(254, 254, 254);
	background: rgb(50, 50, 50);
}

.black_promo_button:hover a,
.black_promo_button:focus a {
	color: rgb(254, 254, 254);
}

.promo_beauty .promo_series {
	margin: 30px 0;
}

.promo_beauty .promo_item_catalog_desc p {
	margin: 0;
}

.promo_beauty .promo_item_catalog_desc h3 {
	margin: 5px 0 15px 0;
}

.promo_beauty .promo_catalog_item {
	border-radius: 10px;
	background: rgb(255, 255, 255);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: left;
	gap: 10;
	margin-bottom: 30px;
}

.button_align_center {
	justify-content: center;
}

.promo_beauty .promo_catalog_item img {
	max-height: 300px;
	width: fit-content;
}

.promo_beauty .promo_catalog_item img {
	transition: all 0.5s;
}

.promo_beauty .promo_catalog_item:hover img {
	transform: scale(1.05);
}

.promo_beauty .promo_item_catalog_desc {
	display: flex;
	gap: 10;
	padding: 20px;
	flex-direction: column;
	min-height: 180px;
}

.promo_beauty .tech_section .promo_item_desc {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 10;
	padding: 20px;
	width: 100%;
}

.promo_beauty .tech_section .promo_item_desc a {
	margin: 10px;
}

.promo_beauty .tech_section .promo_item img {
	height: 40px;
	margin-top: 20px;
}

.promo_beauty .tech_section .promo_item h3 {
	margin: 10px 0;
	min-height: 80px;
	text-align: center;
}

.promo_beauty .tech_section .promo_item_desc img {
	transition: all 0.5s;
	height: auto;
	max-height: 250px;
}

.promo_beauty .tech_section h2 {
	margin-top: 80px;
	text-align: center;
}

.promo_beauty .top_menu_navigation {
	display: flex;
	padding: 0;
	list-style: none;
	overflow-x: hidden;
	margin: 10px 0 30px 0;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
}

.promo_beauty .top_menu_navigation li {
	display: flex;
	flex-direction: column;
	flex: 0 0 100%;
	scroll-snap-align: start;
	flex-basis: 150px;
	max-width: 17%;
	margin: 5px;
}

.promo_beauty .top_menu_navigation .promo_item_desc {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 10;
	padding: 10px 5px 20px 5px;
	min-height: 0;
}

.promo_beauty .top_menu_navigation a {
	font-family: Open Sans;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0%;
	text-decoration: none;
	pointer-events: all;
	color: rgb(0, 0, 0);
	margin: 0;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.promo_beauty .series-section .promo_banner {
		height: 400px;
	}
	.promo_beauty h2 {
		font-size: 28px;
		line-height: 31px;
		margin-top: 0px;
	}
	.promo_beauty p {
		font-size: 13px;
		line-height: 17px;
		margin-top: 10px;
	}
	.promo_beauty .promo_banner {
		height: 600px;
	}
	.double_banner {
		flex-direction: column;
	}
	.promo_item_desc {
		min-height: 160px;
		padding: 10px;
	}
	.promo_beauty h3 {
		font-size: 13px;
		line-height: 16px;
		margin: 0;
	}
	.promo_beauty a {
		font-size: 13px;
		line-height: 15px;
	}
	.promo_beauty .promo_item_catalog_desc {
		padding: 10px;
		min-height: 140px;
	}
	.promo_beauty .top_menu_navigation a {
		font-size: 11px;
	}
}