/* убираем противную рамку вокруг ссылок */
img, a img{outline:none !important;}
a:focus{outline:none !important;}
/* скрываем каптчу гугла */
.grecaptcha-badge {visibility: hidden;}

html, body {
/* Убирает прокрутку по горизонтале, для мобильной версии */
	overflow-x: hidden;
}

@font-face {
	font-family: 'Manrope';
	src: url('/assets/fonts/manrope-variablefont.ttf') format('truetype supports variations'),
		url('/assets/fonts/manrope-variablefont.ttf') format('truetype-variations');
	font-weight: 400 700;
	font-stretch: 25% 151%;
	font-display: swap;
}

/*


@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	src: url('/assets/fonts/montserrat-medium.ttf') format('truetype');
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	src: url('/assets/fonts/montserrat-bold.ttf') format('truetype');
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 500;
	src: url('/assets/fonts/montserrat-mediumitalic.ttf') format('truetype');
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 700;
	src: url('/assets/fonts/montserrat-bolditalic.ttf') format('truetype');
	font-display: swap;
} */

/*
@font-face {
	font-family: 'Public Sans';
	font-style: normal;
	font-weight: 400 900;
	src: url('ed/assets/fonts/PublicSans-VariableFont_wght.ttf') format('truetype supports variations');
	src: url('e/assets/fonts/PublicSans-VariableFont_wght.ttf') format('truetype-variations');
	font-display: swap;
}
@font-face {
	font-family: 'Public Sans';
	font-style: italic;
	font-weight: 400 900;
	src: url('/assets/fonts/PublicSans-Italic-VariableFont_wght.ttf') format('truetype supports variations');
	src: url('/assets/fonts/PublicSans-Italic-VariableFont_wght.ttf') format('truetype-variations');
	font-display: swap;
} 
*/
:root {
	--color-primary: #2563eb;
	--color-black: #353535;
}

body {
	font-family: 'Manrope', sans-serif;
	color: var(--color-black);
	font-size: 1rem;
	margin-top: 95px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: 700;
}

p b {
	color: var(--color-black);
	font-weight: 700;
}
p strong {
	color: var(--color-primary);
	font-weight: 700;
}
.hyphens p, .hyphens li {
	text-align: justify;
	hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
}

.hyphens p:last-child, .hyphens li:last-child {
	margin-bottom: 0px;
}

/*

a:link, a:visited, a:active {
	color: #000000;
	text-decoration: underline;
}

a:hover {
	color: #000000;
	text-decoration: none;
	transition-duration: .3s;
}

*/

/* таблица в плитке */
.my-card-table td:first-child {
	padding-left: 0;
}
.my-card-table td:last-child {
	padding-right: 0;
	text-align: right;
}

/* таблица с ценами на главной */
.my-price-table {
	
}

/* ссылки в футере */
a.my-footer-link:link, a.my-footer-link:visited, a.my-footer-link:active {
	color: #ffffff;
	text-decoration: none;
}
a.my-footer-link:hover {
	color: #ffffff;
	text-decoration: underline;
	transition-duration: .15s;
}

small, .small {
	line-height: 1;
}
.bg-banner {
	background-image: url(/assets/img/bg-banner.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.logo-header {
	height: 40px;
}
.logo-footer {
	height: 40px;
}

/* Стили предупреждения о cookie
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0 !important;
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	border-radius: 0;
	transform: translateY(100%);
	transition: all 500ms ease-out;
}
.cookiealert.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0%);
	transition-delay: 500ms;
}
/* кнопка наверх */
.tostart {
	width: 3rem;
	height: 3rem;
	background-color: var(--color-primary);
	border-radius: 50%;
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 1002;
	display: none;
	opacity: 1;
}
.tostart:hover {
	cursor: pointer;
	opacity: .75;
	transition-duration: .15s;
}
.img-to-top {
	width:2rem;
	margin:0 auto;
	display:block;
	position:absolute;
	left: 8px;
	top: -3px;
}

/* аккордеон */
/* удираем нижний марджинг последнего абзаца */
.accordion-body p:last-child {
	margin-bottom: 0;
}

/* стили кнопок в слайдере */
.my-prev, .my-next {
	position: absolute;
	top: calc(50% - 1.25rem);
	color: var(--color-warning);
	background-color: #fff;
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	text-align: center;
	line-height: 2.5;
	z-index: 1000;
	cursor: pointer;
	box-shadow: 0px 8px 16px rgba(78, 80, 85, 0.12);
}
.my-next {
	right: 0px;
}
.my-next >svg {
	height: 1.5rem;
	padding-left: 3px;
}
.my-prev > svg {
	height: 1.5rem;
	padding-right: 3px;
}

/* стили верхнего меню*/
.top-menu { /* общее оформление меню */
	font-size: 1rem;
	z-index: 1000;
	position: relative;
}

.top-menu a:link, .top-menu a:visited, .top-menu a:active {
	color: var(--color-balck);
	text-decoration: none;
}

.top-menu a:hover {
	color: var(--color-primary);
}

.top-menu ul{
	display: none;
	background-color: white;
	position: absolute;
	top: 100%;
	opacity: 0;
}
.top-menu li:hover ul {
	display: block;
	opacity: 1;
	-webkit-animation: display-none-transition 0.15s both;
	animation: display-none-transition 0.15s both;
}
@-webkit-keyframes display-none-transition {
	0% {
		opacity: 0;
	}
}
@keyframes display-none-transition {
	0% {
		opacity: 0;
	}
}
.top-menu, .top-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.top-menu li {
	float: left;
	position: relative;
	height: 100%;
	padding: 0 .5rem;
}
.top-menu li a {
	display: block;
	padding: 0px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	text-align: left;
}
.top-menu ul {
	border: 1px solid var(--color-black);
}
.top-menu ul li {
	float: none;
	white-space: nowrap;
}
.top-menu li:hover {
	background-color: white;
}
.top-menu ul li:hover {
	background-color: white;
}

/* стили mmenu */
.mm-spn--light {
	/* background: #fff; */
}
.mm-spn {
	color: var(--color-primary);
}
.mm-spn a {
	color: var(--color-primary);
}
.mm-spn a:active, .mm-spn a:focus {
	/* color: var(--color-danger);*/
}

/*votes*/
.votes {
	padding: 60px 40px;
	background-color: rgba(21, 81, 229, 0.08);
}
.votes .title {
	margin-bottom: 24px;
	font-size: 24px;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
}
.votes .block-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}
.votes .block-result {
	text-align: center;
}
.vote-btn {
	border: 0;
	outline: none;
}
.vote-btn:active {
	border: 0;
	background-color: unset;
	border-color: unset;
}
.vote-btn:hover {
	opacity: .5;
}
.vote-btn:disabled {
	color: unset;
	background-color: unset;
	border-color: unset;
	border: 0;
}
/*global*/
.section {
	padding-top: 96px;
	padding-bottom: 96px;
}
.title {
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 32px;
	line-height: 115%;
	letter-spacing: -0.02em;
}
.subtitle {
	max-width: 645px;
	margin-bottom: 36px;
	line-height: 160%;
	color: #475569;
}
body .section:nth-child(even) {
	background-color: #f8fafc;
}
.text-bottom {
	margin-top: 18px;
	font-size: 13px;
	line-height: 155%;
	color: #64748b;
}
.form-check-input {
	min-width: 13px;
	min-height: 13px;
	width: 13px;
	height: 13px;
}
.form-check-label {
	font-weight: 600;
	font-size: 11px;
}
.form-check-label a {
	text-decoration: none;
	color: inherit;
}
.form-check-label a:hover,
.form-check-label a:focus,
.form-check-label a:active {
	color: var(--color-primary);
}
/*header*/
.header .logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.header .logo-text span {
	font-size: 8px;
	line-height: 100%;
	text-transform: lowercase;
	color: #475569;
}
.header .logo-text p span:first-child {
	font-weight: 700;
	font-size: 17px;
	line-height: 100%;
	text-transform: unset;
	letter-spacing: -0.01em;
	color: #475569;
}
.header .logo-text p span:last-child {
	font-weight: 700;
	font-size: 17px;
	line-height: 100%;
	text-transform: unset;
	letter-spacing: -0.01em;
	color: #2563eb;
}
.header-phone {
	font-size: 13px;
	text-decoration: none;
	color: #475569;
}
.header-mail {
	font-size: 13px;
	text-decoration: none;
	color: #475569;
}
.header-btn {
	border: 1px solid rgba(0, 0, 0, 0);
	border-radius: 14px;
	padding: 11px 14px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.3;
}
/*banner*/
.banner-list-top {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}
.banner-list-top li:not(:last-child) {
	margin-right: 8px;
}
.banner-list-top li {
	display: flex;
	align-items: center;
	border-radius: 999px;
	padding: 9px 16px;
	font-size: 13px;
	background-color: #fff;
}
.banner-list-top li img {
	margin-right: 8px;
}
.banner-title {
	margin-bottom: 24px;
	font-weight: 700;
	font-size: 43px;
	line-height: 113%;
	letter-spacing: -0.03em;
}
.bg-banner .desc {
	margin-bottom: 24px;
	line-height: 1.65;
}
.bg-banner .form-control {
	border: 1px solid #e3e9f1;
	border-radius: 14px;
	padding: 13px;
}
.bg-banner .banner-btn {
	width: 100%;
	border-radius: 14px;
	padding: 18px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
}
.bg-banner .checkboxes-container {
	margin-top: 8px;
}
.banner-list-right {
	margin-bottom: 0;
}
.banner-list-right li:not(:last-child) {
	margin-bottom: 24px;
}
.banner-list-right li {
	display: flex;
	align-items: center;
	border-radius: 10px;
	padding: 8px;
	font-size: 13px;
	font-weight: 500;
	box-shadow: 0 4px 20px 0 rgba(15, 23, 42, 0.2);
	background: rgba(255, 255, 255, 0.8);
}
.banner-list-right li img {
	margin-right: 8px;
}
/*products*/
.products .card {
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 18px;
	box-shadow: 0 10px 24px 0 rgba(2, 6, 23, 0.07);
	overflow: hidden;
}
.products .card-body {
	padding: 24px;
}
.products .card-title {
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 16px;
	line-height: 125%;
	letter-spacing: -0.01em;
}
.products .block-tile {
	margin-bottom: 12px;
}
.products .block-tile span {
	padding: 8px 16px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 999px;
	font-size: 12px;
	color: #475569;
}
.products .card-text {
	font-size: 14px;
	line-height: 155%;
	color: #475569;
}
.products .card-text ul {
	margin-bottom: 0;
	padding-left: 16px;
}
.products .block-tile span:not(:last-child) {
	margin-right: 8px;
}
.products .card-footer {
	padding: 0 24px 24px;
	border: 0;
	background-color: transparent;
}
.products .card-btn {
	border-radius: 13px;
	padding: 10px 16px;
	font-weight: 600;
	font-size: 13px;
	color: #fff;
}
/*price-table*/
.price-table .table-responsive {
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 18px;
	box-shadow: 0 10px 24px 0 rgba(2, 6, 23, 0.06);
	background-color: #fff;
}
.price-table table {
	margin-bottom: 0;
	font-size: 14px;
}
.price-table table th {
	padding: 14px 16px;
}
.price-table table th {
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #475569;
	background-color: #f8fafc;
}
.price-table table td {
	padding: 5px 16px;
	vertical-align: middle;
}
.price-table table tr td:first-child {
	text-transform: uppercase;
}
.price-table table tr td:last-child {
	text-align: right;
}
.price-table .table-btn {
	padding: 11px 13px;
	border-radius: 13px;
	font-weight: 600;
	font-size: 13px;
	line-height: 1;
	color: #fff;
}
/*about-us*/
.about-us .card {
	padding: 16px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 16px;
	box-shadow: 0 10px 22px 0 rgba(2, 6, 23, 0.06);
}
.about-us .card:not(:last-child) {
	margin-right: 8px;
}
.about-us .card-title {
	margin-bottom: 4px;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.02em;
}
.about-us .card-text {
	font-size: 12px;
	line-height: 163%;
	color: #475569;
}
/*reviews*/
.reviews .card {
	padding: 25px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 18px;
	box-shadow: 0 10px 24px 0 rgba(2, 6, 23, 0.06);
}
.reviews .card-body {
	padding: 0 0 24px;
	font-size: 15px;
	line-height: 170%;
	color: #475569;
}
.reviews .card-body p:last-child {
	margin-bottom: 0;
}
.reviews .card-footer {
	display: flex;
	align-items: center;
	padding: 0;
	border: 0;
	background-color: transparent;
}
.reviews .card-text {
	max-width: 150px;
	margin-right: 25px;
	font-size: 13px;
	color: #64748b;
}
.reviews .card-footer span {
	font-size: 14px;
	letter-spacing: 0.14em;
	color: #f59e0b;
}
/*how*/
.how .card {
	flex-direction: row;
	padding: 18px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 16px;
	box-shadow: 0 10px 24px 0 rgba(2, 6, 23, 0.06);
}
.how .card-body {
	padding: 0;
}
.how .card-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	margin-right: 8px;
	border: 1px solid rgba(37, 99, 235, 0.18);
	border-radius: 14px;
	font-weight: 800;
	color: #1d4ed8;
	background-color: rgba(37, 99, 235, 0.1);
}
.how .card-title {
	font-weight: 700;
	letter-spacing: -0.01em;
}
.how .card-text {
	font-size: 14px;
	line-height: 165%;
	color: #475569;
}
/*contacts-home*/
.contacts-home .card {
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 18px;
	padding: 16px;
	box-shadow: 0 10px 30px 0 rgba(2, 6, 23, 0.1);
}
.contacts-home .card-title {
	margin-bottom: 12px;
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	letter-spacing: -0.02em;
}
.contacts-home .card p {
	font-size: 14px;
	font-weight: 400;
	line-height: 160%;
	color: #475569;
}
.contacts-home .card b {
	font-size: 14px;
	font-weight: 400;
	line-height: 160%;
	color: #475569;
}
.contacts-home .card a {
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	line-height: 160%;
	color: #1d4ed8;
}
.contacts-home .card ul {
	font-size: 14px;
	font-weight: 400;
	line-height: 160%;
	color: #475569;
}
/*footer*/
.footer .list-rek {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}
.footer .text-copy {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}
.footer .list-nav li {
	margin-bottom: 8px;
	padding: 9px 11px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
}
.footer .list-nav li:not(:last-child) {
	margin-right: 16px;
}
.footer .list-nav li a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
}
.footer-phone,
.footer-mail {
	font-size: 13px;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.7);
}
.footer-phone span,
.footer-mail span {
	color: #fff;
}
.footer .logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.footer .logo-text span {
	font-size: 8px;
	line-height: 100%;
	text-transform: lowercase;
	color: #fff;
}
.footer .logo-text p span:first-child {
	font-weight: 700;
	font-size: 17px;
	line-height: 100%;
	text-transform: unset;
	letter-spacing: -0.01em;
	color: #fff;
}
.footer .logo-text p span:last-child {
	font-weight: 700;
	font-size: 17px;
	line-height: 100%;
	text-transform: unset;
	letter-spacing: -0.01em;
	color: #2563eb;
}
/*modal*/
.modal-header {
	border: 0;
}
.modal-body {
	padding: 0 64px 64px;
}
.modal-title {
	margin-bottom: 16px;
	font-size: 32px;
	font-weight: 700;
	text-align: center;
}
.modal-subtitle {
	margin-bottom: 32px;
	font-size: 18px;
	text-align: center;
}
.modal-body .form-control {
	height: 45px;
	border-radius: 14px;
}
.modal-body textarea.form-control {
	height: 180px;
	resize: none;
}
.modal-body button {
	display: block;
	width: 276px;
	height: 42px;
	margin: 0 auto;
	font-size: 14px;
}
/* Устройства X-Small (портретные телефоны, менее 576 пикселей) */
@media (max-width: 575.98px) {
	.hyphens p, .hyphens li {
		text-align: left;
		hyphens: none;
		-moz-hyphens: none;
		-webkit-hyphens: none;
		-ms-hyphens: none;
	}
	.tostart {
		width: 2rem;
		height: 2rem;
		right: 1.25rem;
		bottom: 1.25rem;
	}
	.img-to-top {
		width: 1.25rem;
		left: .4rem;
		top: -1px;
	}
	/* мобильная млоденная версия таблицы */
	.my-price-table {
		border: 0;
	}
	.my-price-table thead {
		display: none;
	}

	.my-price-table tr {
		display: block;
		border-bottom: 1px solid var(--color-black);
	}
	
	.my-price-table tr:last-child {
		border-bottom: 0;
	}

	.my-price-table td {
		display: block;
		text-align: right;
		border-bottom: 1px dotted var(--color-black);
		border-right: 1px solid transparent;
	}
	.my-price-table td:last-child {
		border-bottom: 0;
	}

	.my-price-table td:before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
	}
	.header-btn {
		font-size: 12px;
	}
	body {
		margin-top: 90px;
	}
	.section {
		padding-top: 48px;
		padding-bottom: 48px;
	}
	.title {
		margin-bottom: 8px;
		font-size: 24px;
	}
	.subtitle {
		margin-bottom: 24px;
		font-size: 14px;
	}
	.bg-banner {
		background-position: center top;
		background-image: url(/assets/img/bg-banner-mob.jpg);
	}
	.banner-list-top {
		margin-bottom: 16px;
	}
	.banner-list-top li {
		align-items: start;
		flex-direction: column;
		border-radius: 10px;
		padding: 4px 8px;
		font-size: 11px;
	}
	.banner-list-top li img {
		margin-right: 0;
		margin-bottom: 4px;
	}
	.banner-title {
		margin-bottom: 16px;
		font-size: 32px;
		line-height: 1;
	}
	.bg-banner .desc {
		margin-bottom: 16px;
		font-size: 12px;
		line-height: 1.5;
	}
	.bg-banner .form-control {
		padding: 9.5px;
	}
	.bg-banner .banner-btn {
		padding: 13px;
	}
	.form-check-label {
		font-size: 9px;
	}
	.banner-list-right {
		display: grid;
		gap: 8px 12px;
		grid-template-columns: repeat(2, 1fr);
	}
	.banner-list-right li:not(:last-child) {
		margin-bottom: 0;
	}
	.banner-list-right li:first-child {
		grid-column: 2 span;
	}
	.banner-list-right li {
		padding: 4px;
		font-size: 12px;
	}
	.banner-list-right li img {
		max-width: 30px;
	}
	.products .card-body {
		padding: 12px;
	}
	.products .block-tile span {
		padding: 8px;
		font-size: 10px;
	}
	.about-us .card:not(:last-child) {
		margin-right: 0;
		margin-bottom: 8px;
	}
	.reviews .card-footer {
		align-items: start;
		flex-direction: column;
	}
	.modal-header {
		padding: 10px 10px 0;
	}
	.modal-body {
		padding: 0 12px 32px;
	}
	.modal-title {
		font-size: 24px;
	}
	.modal-subtitle {
		margin-bottom: 24px;
		font-size: 14px;
	}
	.modal-body textarea.form-control {
		height: 74px;
	}
	.modal-body button {
		width: 260px;
	}
	.header-phone,
	.header-mail {
		font-size: 12px;
	}
	.reviews .card  {
		padding: 12px;
	}
	.how .card {
		padding: 12px;
	}
	.price-table table tr th:first-child {
		padding: 10px 6px 10px 8px;
		font-size: 12px;
	}
	.price-table table tr th:nth-child(2) {
		padding: 10px 6px;
		font-size: 12px;
	}
	.price-table table tr th:last-child {
		padding: 10px 8px 10px 6px;
		font-size: 12px;
	}
	.price-table table tr td:first-child {
		padding: 8px 6px 8px 8px;
		font-size: 12px;
	}
	.price-table table tr td:nth-child(2) {
		padding: 8px 6px;
		font-size: 12px;
		line-height: 1;
	}
	.price-table table tr td:last-child {
		padding: 8px 8px 8px 6px;
	}
	.price-table .table-btn {
		padding: 6px 10px;
		border-radius: 8px;
		font-size: 12px;
	}
}

/* Устройства Small (телефоны с горизонтальной ориентацией, менее 768 пикселей) */
@media (min-width: 576px) and (max-width: 767.98px) {
	.hyphens p, .hyphens li {
		text-align: left;
		hyphens: none;
		-moz-hyphens: none;
		-webkit-hyphens: none;
		-ms-hyphens: none;
	}
	.tostart {
		width: 2rem;
		height: 2rem;
		right: 1.25rem;
		bottom: 1.25rem;
	}
	.img-to-top {
		width: 1.25rem;
		left: .4rem;
		top: -1px;
	}
	body {
		margin-top: 92px;
	}
	.banner-list-top li {
		align-items: start;
		flex-direction: column;
		border-radius: 10px;
		padding: 4px 8px;
	}
	.banner-list-top li img {
		margin-right: 0;
		margin-bottom: 4px;
	}
	.banner-list-right {
		display: grid;
		gap: 8px 12px;
		grid-template-columns: repeat(2, 1fr);
	}
	.banner-list-right li:not(:last-child) {
		margin-bottom: 0;
	}
	.banner-list-right li:first-child {
		grid-column: 2 span;
	}
}
/* Устройства Medium (планшеты, менее 992 пикселей) */
@media  (min-width: 768px) and (max-width: 991.98px) {
	body {
		margin-top: 74px;
	}
	.banner-list-right {
		display: grid;
		gap: 8px 12px;
		grid-template-columns: repeat(2, 1fr);
	}
	.banner-list-right li:not(:last-child) {
		margin-bottom: 0;
	}
	.banner-list-right li:first-child {
		grid-column: 2 span;
	}
	.products .card-body {
		padding: 12px;
	}
	.products .block-tile span {
		padding: 8px;
	}
}


/* Устройства Large (настольные компьютеры, менее 1200 пикселей) */
@media  (min-width: 992px) and (max-width: 1199.98px) {
	.banner-list-top li {
		align-items: start;
		flex-direction: column;
		border-radius: 10px;
		padding: 4px 8px;
	}
	.banner-list-top li img {
		margin-right: 0;
		margin-bottom: 4px;
	}
	.products .card-body {
		padding: 12px;
	}
	.products .block-tile span {
		padding: 8px;
	}
	.reviews .card {
		padding: 12px;
	}
	.how .card {
		padding: 12px;
	}
	.how .card {
		padding: 12px;
	}
	.about-us .card {
		padding: 8px;
	}
}

/* Устройства X-Large (большие настольные компьютеры, менее 1400 пикселей) */
@media  (min-width: 1200px) and (max-width: 1399.98px) {

}