.fit-cover {
	object-fit: cover;
}

.dspl_none {
	display: none;
}

.section-kicker {
	margin-bottom: 8px;
	color: #025cc5;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.section-title {
	margin-bottom: 0;
	color: #021648;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
}

.section-title-gradient {
	display: inline-block;
	background: linear-gradient(135deg, #025cc5 0%, #021648 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.scroll-animate {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .55s ease, transform .55s ease;
}

.scroll-animate.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.scroll-delay-1 {
	transition-delay: .08s;
}

.scroll-delay-2 {
	transition-delay: .16s;
}

.scroll-delay-3 {
	transition-delay: .24s;
}

.site-header {
	top: 0;
	z-index: 1030;
	margin-top: 0;
	background: rgba(255, 255, 255, .82);
	border-bottom: 1px solid rgba(2, 22, 72, .08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 12px 34px rgba(2, 22, 72, .1);
}

.site-nav {
	min-height: 72px;
	padding: 0;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-logo img {
	width: auto;
	max-width: 185px;
	max-height: 46px;
	display: block;
}

.site-menu {
	align-items: center;
	gap: 4px;
}

.site-menu .nav-link {
	padding: 10px 12px;
	border-radius: 10px;
	color: #021648;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .02em;
	transition: color .2s ease, background .2s ease;
}

.site-menu .nav-link:hover,
.site-menu .nav-link.active {
	color: #025cc5;
	background: rgba(2, 92, 197, .08);
}

@media (max-width: 1500px) {
	.site-menu .nav-link {
		padding-inline: 9px;
		font-size: 12px;
	}

	.site-actions {
		gap: 8px;
		margin-left: 8px;
	}

	.site-cabinet-btn {
		padding-inline: 13px;
	}
}

.site-dropdown {
	overflow: hidden;
	padding: 8px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 14px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 16px 38px rgba(2, 22, 72, .14);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.site-dropdown .dropdown-item {
	padding: 9px 12px;
	border-radius: 10px;
	color: #021648;
	font-weight: 700;
}

.site-dropdown .dropdown-item:hover {
	color: #025cc5;
	background: rgba(2, 92, 197, .08);
}

.site-cabinet-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	margin-left: 12px;
	padding: 0 16px;
	border-radius: 11px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 10px 22px rgba(2, 92, 197, .2);
	transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}

.site-cabinet-btn:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(2, 92, 197, .28);
}

.site-actions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-left: 12px;
}

.site-actions .site-cabinet-btn {
	margin-left: 0;
}

.site-cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border: 1px solid rgba(2, 22, 72, .1);
	border-radius: 12px;
	color: #021648;
	background: rgba(255, 255, 255, .8);
	box-shadow: 0 10px 22px rgba(2, 22, 72, .08);
	transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.site-cart-btn:hover,
.site-cart-btn.has-products {
	color: #025cc5;
	border-color: rgba(2, 92, 197, .28);
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(2, 92, 197, .16);
}

.site-cart-btn .brk-mini-cart__count {
	position: absolute;
	top: -7px;
	right: -7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border: 2px solid #fff;
	border-radius: 999px;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	background: #025cc5;
}

.brk-mini-cart__count.hidden {
	display: none !important;
}

.site-cart-btn--mobile {
	width: 100%;
	height: 46px;
	margin-top: 12px;
	gap: 8px;
	flex: none;
}

.site-cart-btn--mobile .brk-mini-cart__count {
	position: static;
	border: 0;
}

.site-menu-btn {
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(2, 22, 72, .1);
	border-radius: 12px;
	background: rgba(255, 255, 255, .7);
}

.site-menu-btn:focus {
	box-shadow: 0 0 0 3px rgba(2, 92, 197, .16);
}

.site-menu-btn span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	border-radius: 999px;
	background: #021648;
}

.site-mobile-menu {
	z-index: 1060;
	width: min(360px, 92vw);
	border-left: 1px solid rgba(2, 22, 72, .08);
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.site-mobile-menu .offcanvas-body {
	padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

.offcanvas-backdrop {
	z-index: 1050;
}

.site-cart-sidebar {
	z-index: 1080;
	width: min(430px, 94vw);
	border-left: 1px solid rgba(2, 22, 72, .08);
	background: #f7fbff;
}

.site-cart-sidebar .offcanvas-header {
	align-items: flex-start;
	padding: 22px 22px 14px;
	border-bottom: 1px solid rgba(2, 22, 72, .08);
	background: rgba(255, 255, 255, .86);
}

.site-cart-sidebar__kicker {
	display: block;
	margin-bottom: 4px;
	color: #025cc5;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
}

.site-cart-sidebar h3 {
	margin: 0;
	color: #021648;
	font-size: 26px;
	font-weight: 900;
}

.site-cart-sidebar .offcanvas-body {
	padding: 16px;
}

.brk-mini-cart__products {
	display: grid;
	gap: 12px;
}

.site-cart-empty {
	margin: 0;
	padding: 26px 18px;
	border: 1px dashed rgba(2, 22, 72, .16);
	border-radius: 16px;
	color: #59677a;
	text-align: center;
	background: rgba(255, 255, 255, .72);
}

.brk-mini-cart__product {
	position: relative;
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) 82px;
	gap: 12px;
	align-items: center;
	padding: 12px 36px 12px 12px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 16px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 14px 34px rgba(2, 22, 72, .06);
}

.brk-mini-cart__product--img {
	overflow: hidden;
	width: 72px;
	height: 72px;
	border-radius: 12px;
	background: #edf4fb;
}

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

.brk-mini-cart__product--title-price a {
	color: #021648;
	text-decoration: none;
}

.brk-mini-cart__product--title-price h4 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin: 0 0 8px;
	color: #021648;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
}

.brk-mini-cart__product--price {
	color: #025cc5;
	font-size: 14px;
	font-weight: 900;
}

.brk-quantity {
	display: grid;
	grid-template-columns: 24px 34px 24px;
	align-items: center;
	width: 82px;
	min-width: 82px;
}

.brk-quantity__arrows {
	position: relative;
	width: 24px;
	height: 30px;
	border: 0;
	border-radius: 8px;
	background: rgba(2, 92, 197, .08);
}

.brk-quantity__arrows:before {
	content: "";
	position: absolute;
	inset: 50% auto auto 50%;
	width: 8px;
	height: 2px;
	background: #025cc5;
	transform: translate(-50%, -50%);
}

.brk-quantity__arrows.plus:after {
	content: "";
	position: absolute;
	inset: 50% auto auto 50%;
	width: 2px;
	height: 8px;
	background: #025cc5;
	transform: translate(-50%, -50%);
}

.brk-quantity__value {
	width: 34px;
	height: 30px;
	border: 0;
	color: #021648;
	text-align: center;
	font-size: 14px;
	font-weight: 900;
	background: transparent;
	-moz-appearance: textfield;
	appearance: textfield;
}

.brk-quantity__value[type="number"]::-webkit-outer-spin-button,
.brk-quantity__value[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.brk-mini-cart__product--remove {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	color: #9aa6b5;
	background: transparent;
}

.brk-mini-cart__product--remove:hover {
	color: #d43f3a;
}

.site-cart-sidebar__footer {
	display: none;
	padding: 16px;
	border-top: 1px solid rgba(2, 22, 72, .08);
	background: rgba(255, 255, 255, .92);
}

.site-cart-sidebar__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
	color: #021648;
}

.site-cart-sidebar__total span {
	color: #59677a;
	font-weight: 800;
}

.site-cart-sidebar__total strong {
	color: #025cc5;
	font-size: 20px;
	font-weight: 900;
}

.site-cart-sidebar__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	border-radius: 13px;
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 18px 38px rgba(2, 92, 197, .2);
}

.site-cart-sidebar__btn:hover {
	color: #fff;
	transform: translateY(-1px);
}

.mySelector {
	position: relative;
	width: 100%;
	z-index: 20;
}

.mySelector__button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 44px 0 16px;
	color: #021648;
	font-weight: 800;
	text-align: left;
	background: rgba(255, 255, 255, .94);
}

.mySelector__button:after {
	content: "\f107";
	position: absolute;
	right: 16px;
	top: 50%;
	color: #025cc5;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	transform: translateY(-50%);
}

.mySelector__list {
	position: absolute;
	z-index: 30;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	display: none;
	max-height: 280px;
	margin: 0;
	padding: 8px;
	overflow-y: auto;
	border: 1px solid rgba(2, 22, 72, .1);
	border-radius: 14px;
	list-style: none;
	background: #fff;
	box-shadow: 0 18px 44px rgba(2, 22, 72, .14);
}

.mySelector__list.opened {
	display: block;
}

.mySelector__item {
	display: flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 10px;
	border-radius: 10px;
	color: #021648;
	font-weight: 700;
	cursor: pointer;
}

.mySelector__item:hover,
.mySelector__item.selected {
	color: #025cc5;
	background: rgba(2, 92, 197, .08);
}

.mySelector__item.d-none {
	display: none !important;
}

.mobile-nav {
	display: grid;
	gap: 8px;
}

.mobile-nav a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 0 14px;
	border-radius: 12px;
	color: #021648;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	background: rgba(2, 92, 197, .06);
}

.mobile-nav a:hover {
	color: #025cc5;
	background: rgba(2, 92, 197, .1);
}

.mobile-menu-card {
	margin-top: 18px;
	padding: 18px;
	border-radius: 16px;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.mobile-menu-card span,
.mobile-menu-card strong {
	display: block;
}

.mobile-menu-card span {
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
}

.mobile-menu-card strong {
	font-size: 18px;
	line-height: 1.25;
}

.site-cabinet-btn--mobile {
	width: 100%;
	margin: 18px 0 0;
}

/* Mobile navigation drawer */
.site-mobile-menu {
	width: min(390px, 94vw);
	overflow: hidden;
	border: 0;
	background:
		radial-gradient(circle at 110% 4%, rgba(39, 135, 242, .22), transparent 27%),
		linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
	box-shadow: -24px 0 70px rgba(2, 22, 72, .24);
}

.site-mobile-menu .offcanvas-header {
	position: relative;
	z-index: 2;
	min-height: 92px;
	padding: 20px 22px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	background:
		radial-gradient(circle at 82% -40%, rgba(64, 149, 255, .52), transparent 45%),
		linear-gradient(135deg, #073f91 0%, #021648 78%);
	box-shadow: 0 12px 30px rgba(2, 22, 72, .18);
}

.site-mobile-menu .site-logo {
	display: inline-flex;
	align-items: center;
	min-height: 45px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 13px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 10px 25px rgba(0, 0, 0, .14);
}

.site-mobile-menu .site-logo img {
	display: block;
	width: auto;
	height: 32px;
}

.site-mobile-menu .btn-close {
	width: 42px;
	height: 42px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 13px;
	filter: invert(1) grayscale(1) brightness(2);
	background-size: 13px;
	box-shadow: none;
	opacity: .9;
	transition: transform .2s ease, background-color .2s ease;
}

.site-mobile-menu .btn-close:hover,
.site-mobile-menu .btn-close:focus {
	background-color: rgba(255, 255, 255, .12);
	transform: rotate(90deg);
	opacity: 1;
}

.site-mobile-menu .offcanvas-body {
	position: relative;
	padding: 18px 16px calc(22px + env(safe-area-inset-bottom));
	scrollbar-width: thin;
	scrollbar-color: rgba(2, 92, 197, .28) transparent;
}

.mobile-nav {
	display: grid;
	gap: 5px;
}

.mobile-nav::before {
	content: "Навигация";
	display: block;
	margin: 1px 7px 7px;
	color: #78869c;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.mobile-nav a {
	position: relative;
	display: grid;
	min-height: 51px;
	padding: 6px 38px 6px 7px;
	align-items: center;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 11px;
	border: 1px solid transparent;
	border-radius: 13px;
	color: #14264d;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	background: transparent;
	transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.mobile-nav a > i {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border: 1px solid #dbe6f5;
	border-radius: 11px;
	color: #2873c5;
	font-size: 14px;
	background: #fff;
	box-shadow: 0 5px 14px rgba(18, 57, 108, .07);
}

.mobile-nav a::after {
	content: "›";
	position: absolute;
	top: 50%;
	right: 14px;
	color: #9aabc2;
	font-size: 25px;
	font-weight: 400;
	line-height: 1;
	transform: translateY(-53%);
	transition: transform .18s ease, color .18s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
	border-color: rgba(2, 92, 197, .13);
	color: #025cc5;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 9px 22px rgba(10, 48, 102, .08);
	transform: translateX(-3px);
}

.mobile-nav a:hover > i,
.mobile-nav a:focus-visible > i {
	border-color: #086acb;
	color: #fff;
	background: linear-gradient(135deg, #0878e9, #024b9f);
}

.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after {
	color: #025cc5;
	transform: translate(3px, -53%);
}

.mobile-menu-card {
	position: relative;
	margin-top: 16px;
	overflow: hidden;
	padding: 17px 18px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 17px;
	background:
		radial-gradient(circle at 95% 0, rgba(65, 151, 255, .4), transparent 38%),
		linear-gradient(135deg, #0757b2, #021648);
	box-shadow: 0 14px 30px rgba(2, 22, 72, .17);
}

.mobile-menu-card::after {
	content: "";
	position: absolute;
	right: -30px;
	bottom: -55px;
	width: 120px;
	height: 120px;
	border: 18px solid rgba(255, 255, 255, .06);
	border-radius: 50%;
}

.mobile-menu-card span {
	font-size: 10px;
	letter-spacing: .14em;
}

.mobile-menu-card strong {
	position: relative;
	z-index: 1;
	max-width: 260px;
	font-size: 15px;
	line-height: 1.4;
}

.site-mobile-menu .site-cabinet-btn--mobile,
.site-mobile-menu .site-cart-btn--mobile {
	min-height: 48px;
	border-radius: 13px;
	font-size: 13px;
	font-weight: 900;
}

.site-mobile-menu .site-cabinet-btn--mobile {
	margin-top: 14px;
}

.site-mobile-menu .site-cart-btn--mobile {
	margin-top: 8px;
	border-color: rgba(2, 92, 197, .17);
	color: #025cc5;
	background: #fff;
	box-shadow: 0 8px 20px rgba(11, 50, 104, .08);
}

.mobile-nav__group {
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 14px;
	transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.mobile-nav__group:has(.collapse.show) {
	border-color: rgba(2, 92, 197, .13);
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 9px 22px rgba(10, 48, 102, .08);
}

.mobile-nav__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 44px;
	align-items: center;
}

.mobile-nav__head > a {
	padding-right: 6px;
}

.mobile-nav__head > a::after {
	display: none;
}

.mobile-nav__head > button {
	display: inline-flex;
	width: 36px;
	height: 36px;
	padding: 0;
	align-items: center;
	justify-content: center;
	border: 1px solid #dbe6f5;
	border-radius: 11px;
	color: #2873c5;
	background: #fff;
	box-shadow: 0 5px 14px rgba(18, 57, 108, .06);
	transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.mobile-nav__head > button i {
	font-size: 11px;
	transition: transform .22s ease;
}

.mobile-nav__head > button[aria-expanded="true"] {
	color: #fff;
	background: linear-gradient(135deg, #0878e9, #024b9f);
}

.mobile-nav__head > button[aria-expanded="true"] i {
	transform: rotate(180deg);
}

.mobile-nav__submenu {
	margin: 0 9px 9px 54px;
	padding: 5px;
	border: 1px solid #e5ecf6;
	border-radius: 11px;
	background: #f5f8fc;
}

.mobile-nav__submenu a,
.mobile-nav__submenu .dropdown-item {
	position: relative;
	display: block;
	min-height: 36px;
	padding: 9px 27px 9px 12px;
	border: 0;
	border-radius: 8px;
	color: #53627a;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	background: transparent;
	box-shadow: none;
	transform: none;
}

.mobile-nav__submenu a::before {
	display: none;
}

.mobile-nav__submenu a::after {
	content: "›";
	right: 10px;
	font-size: 18px;
}

.mobile-nav__submenu a:hover,
.mobile-nav__submenu a:focus-visible {
	border: 0;
	color: #025cc5;
	background: #fff;
	box-shadow: none;
	transform: none;
}

/* .simple-slider .swiper-slide {
	height: 500px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.simple-slider .swiper-button-next, .simple-slider .swiper-button-prev {
	width: 50px;
	margin-left: 20px;
	margin-right: 20px;
} */

@media (max-width:767px) {

	html,
	body {
		margin-top: 0;
		scroll-padding-top: 64px;
	}

	body {
		padding-top: 64px;
		padding-bottom: calc(78px + env(safe-area-inset-bottom));
	}

	.site-header,
	.site-header.sticky-top {
		position: fixed !important;
		top: 0 !important;
		left: 0;
		right: 0;
		margin-top: 0 !important;
		transform: none !important;
	}

	.site-nav {
		min-height: 64px;
	}

	.site-logo img {
		max-width: 150px;
		max-height: 40px;
	}

	.site-cart-sidebar {
		z-index: 1080;
	}

	.site-cart-sidebar__footer {
		padding-bottom: calc(16px + env(safe-area-inset-bottom));
	}

	.site-footer__panel {
		padding: 20px;
		border-radius: 18px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-scroll-top {
		right: 14px;
		bottom: calc(92px + env(safe-area-inset-bottom));
		width: 48px;
		height: 48px;
		border-radius: 14px;
	}

	.mobile-app-nav {
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: calc(10px + env(safe-area-inset-bottom));
		z-index: 1065;
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 4px;
		min-height: 64px;
		padding: 8px;
		border: 1px solid rgba(2, 22, 72, .08);
		border-radius: 20px;
		background: rgba(255, 255, 255, .94);
		box-shadow: 0 18px 48px rgba(2, 22, 72, .2);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
	}

	body.cart-sidebar-open .mobile-app-nav,
	body.mobile-menu-open .mobile-app-nav {
		display: none;
	}

	.mobile-app-nav__item {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 3px;
		min-width: 0;
		padding: 0;
		border: 0;
		border-radius: 14px;
		color: #59677a;
		text-decoration: none;
		font-size: 10px;
		font-weight: 900;
		line-height: 1.1;
		background: transparent;
	}

	.mobile-app-nav__item i {
		color: #025cc5;
		font-size: 18px;
		line-height: 1;
	}

	.mobile-app-nav__item span {
		overflow: hidden;
		max-width: 100%;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.mobile-app-nav__item:hover,
	.mobile-app-nav__item:focus {
		color: #021648;
		background: rgba(2, 92, 197, .08);
	}

	.mobile-app-nav__item .brk-mini-cart__count {
		position: absolute;
		top: 2px;
		right: 8px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 17px;
		height: 17px;
		padding: 0 5px;
		border: 2px solid #fff;
		border-radius: 999px;
		color: #fff;
		font-size: 10px;
		font-style: normal;
		font-weight: 900;
		line-height: 1;
		background: #025cc5;
	}

	.section-kicker {
		font-size: 12px;
	}

	.section-title {
		font-size: 32px;
	}

	/* .simple-slider .swiper-button-next,
	.simple-slider .swiper-button-prev {
		display: none;
	} */
}

@media (max-width:767px) {
	/* .simple-slider .swiper-slide {
		height: 360px;
	} */
}

.stories-list {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 12px;
	scrollbar-width: none;
}

.stories-list::-webkit-scrollbar {
	display: none;
}

.stories-item {
	flex: 0 0 calc((100% - 96px) / 7);
	min-width: 0;
	scroll-snap-align: start;
	text-align: center;
}

.stories-img {
	aspect-ratio: 1;
	border-radius: 50%;
	padding: 4px;
	background: linear-gradient(135deg, #025cc5, #18b58f 45%, #f7c948);
	box-shadow: 0 8px 22px rgba(2, 22, 72, .18);
}

.stories-img img {
	width: 100%;
	height: 100%;
	display: block;
	border: 3px solid #fff;
	border-radius: 50%;
	object-fit: cover;
	background: #fff;
}

.stories-title {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width:767px) {
	.stories-list {
		gap: 12px;
	}

	.stories-item {
		flex-basis: calc((100% - 48px) / 4.3);
	}

	.stories-title {
		font-size: 12px;
	}

	.direction-card__body {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		padding: 13px;
	}

	.direction-card__icon {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
	}

	.direction-card__title {
		font-size: 15px;
	}
}

.catalog-card {
	display: block;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(2, 22, 72, .08);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.catalog-card:hover {
	transform: translateY(-4px);
	border-color: rgba(2, 92, 197, .22);
	box-shadow: 0 16px 42px rgba(2, 22, 72, .14);
}

.catalog-card__img {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.catalog-card__img:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 22, 72, 0) 45%, rgba(2, 22, 72, .58));
}

.catalog-card__img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .25s ease;
}

.catalog-card:hover .catalog-card__img img {
	transform: scale(1.04);
}

.catalog-card__img span {
	position: absolute;
	right: 16px;
	bottom: 14px;
	z-index: 1;
	display: inline-block;
	padding: 5px 12px;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	background: rgba(255, 255, 255, .18);
	backdrop-filter: blur(6px);
}

.catalog-card__body {
	display: block;
	padding: 18px;
}

.catalog-card__title {
	display: block;
	margin-bottom: 8px;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.2;
	color: rgb(2, 22, 72);
}

.catalog-card__text {
	display: block;
	min-height: 48px;
	margin-bottom: 14px;
	color: #5f6b7a;
	font-size: 15px;
	line-height: 1.45;
}

.catalog-card__link {
	display: inline-flex;
	align-items: center;
	color: #025cc5;
	font-weight: 700;
}

.business-section {
	background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.business-image {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	border-radius: 18px;
	box-shadow: 0 18px 46px rgba(2, 22, 72, .14);
}

.business-image:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 22, 72, 0) 45%, rgba(2, 22, 72, .62));
}

.business-image img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	display: block;
	object-fit: cover;
}

.business-image__label {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 22px;
	z-index: 1;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .38);
	border-radius: 14px;
	color: #fff;
	background: rgba(255, 255, 255, .16);
	backdrop-filter: blur(8px);
}

.business-image__label span,
.business-image__label strong {
	display: block;
}

.business-image__label span {
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .08em;
}

.business-image__label strong {
	font-size: 24px;
	line-height: 1.2;
}

.business-content {
	padding-left: 20px;
}

.business-text {
	margin: 18px 0 0;
	color: #4c5a6a;
	font-size: 19px;
	line-height: 1.45;
}

.business-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 24px;
}

.business-point {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 86px;
	padding: 16px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 14px;
	color: #021648;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	background: #fff;
	box-shadow: 0 10px 28px rgba(2, 22, 72, .07);
}

.business-point__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.business-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	margin-top: 24px;
	padding: 0 24px;
	border-radius: 12px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 12px 28px rgba(2, 92, 197, .22);
	transition: transform .2s ease, box-shadow .2s ease;
}

.business-btn:hover {
	color: #fff;
	box-shadow: 0 16px 34px rgba(2, 92, 197, .28);
	transform: translateY(-1px);
}

.advantages-section {
	background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.advantage-card {
	position: relative;
	height: 100%;
	min-height: 230px;
	overflow: hidden;
	padding: 24px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(2, 22, 72, .08);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.advantage-card:after {
	content: "";
	position: absolute;
	right: -36px;
	bottom: -42px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(2, 92, 197, .08);
}

.advantage-card:hover {
	transform: translateY(-4px);
	border-color: rgba(2, 92, 197, .22);
	box-shadow: 0 18px 44px rgba(2, 22, 72, .13);
}

.advantage-card__top {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 22px;
}

.advantage-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	color: #fff;
	font-size: 21px;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 12px 24px rgba(2, 92, 197, .22);
}

.advantage-card__num {
	color: rgba(2, 22, 72, .1);
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
}

.advantage-card__title {
	position: relative;
	z-index: 1;
	margin-bottom: 10px;
	color: #021648;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
}

.advantage-card__text {
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	color: #5f6b7a;
	font-size: 15px;
	line-height: 1.5;
}

.advantage-card--accent {
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.advantage-card--accent:after {
	background: rgba(255, 255, 255, .12);
}

.advantage-card--accent .advantage-card__icon {
	color: #021648;
	background: #fff;
	box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
}

.advantage-card--accent .advantage-card__num {
	color: rgba(255, 255, 255, .16);
}

.advantage-card--accent .advantage-card__title {
	color: #fff;
}

.advantage-card--accent .advantage-card__text {
	color: rgba(255, 255, 255, .78);
}

.process-section {
	background: #fff;
}

.process-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.process-grid:before {
	content: "";
	position: absolute;
	left: 7%;
	right: 7%;
	top: 48px;
	height: 2px;
	background: linear-gradient(90deg, rgba(2, 92, 197, .1), rgba(2, 92, 197, .35), rgba(2, 22, 72, .1));
}

.process-step {
	position: relative;
	z-index: 1;
	min-height: 260px;
	overflow: hidden;
	padding: 22px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 18px;
	color: #021648;
	background: #fff;
	box-shadow: 0 12px 32px rgba(2, 22, 72, .08);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.process-step:after {
	content: "";
	position: absolute;
	inset: auto -32px -48px auto;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(2, 92, 197, .08);
	transition: transform .22s ease, background .22s ease;
}

.process-step:hover {
	transform: translateY(-6px);
	border-color: rgba(2, 92, 197, .24);
	box-shadow: 0 20px 48px rgba(2, 22, 72, .15);
}

.process-step:hover:after {
	transform: scale(1.2);
	background: rgba(2, 92, 197, .12);
}

.process-step__num {
	display: block;
	margin-bottom: 16px;
	color: rgba(2, 22, 72, .14);
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
	transition: color .22s ease, transform .22s ease;
}

.process-step:hover .process-step__num {
	color: rgba(2, 92, 197, .22);
	transform: translateX(4px);
}

.process-step__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin-bottom: 18px;
	border-radius: 15px;
	color: #fff;
	font-size: 20px;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 12px 24px rgba(2, 92, 197, .2);
	transition: transform .22s ease, box-shadow .22s ease;
}

.process-step:hover .process-step__icon {
	transform: translateY(-3px) rotate(-4deg);
	box-shadow: 0 16px 30px rgba(2, 92, 197, .28);
}

.process-step__title {
	position: relative;
	z-index: 1;
	margin-bottom: 10px;
	color: #021648;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
}

.process-step__text {
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	color: #5f6b7a;
	font-size: 14px;
	line-height: 1.45;
}

.process-step__arrow {
	position: absolute;
	right: 20px;
	bottom: 18px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	color: #025cc5;
	background: rgba(2, 92, 197, .08);
	transition: transform .22s ease, color .22s ease, background .22s ease;
}

.process-step:hover .process-step__arrow {
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
	transform: translateX(4px);
}

.process-step--accent {
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.process-step--accent:after {
	background: rgba(255, 255, 255, .12);
}

.process-step--accent .process-step__num {
	color: rgba(255, 255, 255, .2);
}

.process-step--accent .process-step__icon,
.process-step--accent .process-step__arrow {
	color: #021648;
	background: #fff;
}

.process-step--accent .process-step__title {
	color: #fff;
}

.process-step--accent .process-step__text {
	color: rgba(255, 255, 255, .78);
}

.directions-section {
	background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.direction-card {
	display: block;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 18px;
	color: #021648;
	text-decoration: none;
	background: #fff;
	box-shadow: 0 12px 32px rgba(2, 22, 72, .08);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.direction-card:hover {
	color: #021648;
	transform: translateY(-5px);
	border-color: rgba(2, 92, 197, .24);
	box-shadow: 0 20px 46px rgba(2, 22, 72, .14);
}

.direction-card__img {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #eef3f8;
}

.direction-card__img:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 22, 72, 0) 48%, rgba(2, 22, 72, .5));
}

.direction-card__img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .25s ease;
}

.direction-card:hover .direction-card__img img {
	transform: scale(1.05);
}

.direction-card__body {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
}

.direction-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.direction-card__title {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
}

.company-section {
	background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.company-panel {
	overflow: hidden;
	padding: 28px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(2, 22, 72, .1);
}

.company-image {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	border-radius: 18px;
	background: #eef3f8;
}

.company-image:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 22, 72, 0) 42%, rgba(2, 22, 72, .66));
}

.company-image img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	display: block;
	object-fit: cover;
}

.company-image__badge {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 22px;
	z-index: 1;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .38);
	border-radius: 14px;
	color: #fff;
	background: rgba(255, 255, 255, .16);
	backdrop-filter: blur(8px);
}

.company-image__badge span,
.company-image__badge strong {
	display: block;
}

.company-image__badge span {
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .08em;
}

.company-image__badge strong {
	font-size: 24px;
	line-height: 1.2;
}

.company-content {
	padding-right: 12px;
}

.company-text {
	margin: 20px 0 0;
	color: #4c5a6a;
	font-size: 19px;
	line-height: 1.45;
}

.company-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 24px;
}

.company-stat {
	padding: 18px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 14px;
	background: #f7faff;
}

.company-stat__value {
	display: block;
	margin-bottom: 4px;
	color: #025cc5;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
}

.company-stat__label {
	display: block;
	color: #5f6b7a;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
}

.company-list {
	display: grid;
	gap: 10px;
	margin-top: 22px;
}

.company-list span {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #021648;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.company-list i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.company-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	margin-top: 26px;
	padding: 0 24px;
	border-radius: 12px;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	text-decoration: none;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 12px 28px rgba(2, 92, 197, .22);
	transition: transform .2s ease, box-shadow .2s ease;
}

.company-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(2, 92, 197, .3);
}

.contact-section {
	background: linear-gradient(135deg, #025cc5 0%, #021648 100%);
}

.contact-panel {
	position: relative;
	overflow: hidden;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 22px 54px rgba(2, 22, 72, .24);
}

.contact-panel:after {
	content: "";
	position: absolute;
	right: -70px;
	bottom: -90px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(2, 92, 197, .08);
}

.contact-text {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #4c5a6a;
	font-size: 19px;
	line-height: 1.45;
}

.contact-list {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 10px;
	margin-top: 22px;
}

.contact-list span {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #021648;
	font-size: 16px;
	font-weight: 700;
}

.contact-list i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.contact-actions {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 12px;
}

.contact-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 20px;
	border-radius: 12px;
	font-size: 17px;
	font-weight: 800;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.contact-btn:hover {
	transform: translateY(-2px);
}

.contact-btn--primary {
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 12px 28px rgba(2, 92, 197, .22);
}

.contact-btn--primary:hover {
	color: #fff;
	box-shadow: 0 16px 34px rgba(2, 92, 197, .3);
}

.contact-btn--outline {
	border: 1px solid rgba(2, 92, 197, .24);
	color: #021648;
	background: #fff;
}

.contact-btn--outline:hover {
	color: #025cc5;
	background: #f7faff;
}

.contact-note {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px;
	border-radius: 14px;
	color: #4c5a6a;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	background: #f7faff;
}

.contact-note i {
	color: #025cc5;
	font-size: 20px;
}

.catalog-page {
	background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
}

.catalog-hero {
	background: linear-gradient(135deg, #025cc5 0%, #021648 100%);
}

.catalog-hero__panel {
	overflow: hidden;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 22px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 22px 54px rgba(2, 22, 72, .22);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.catalog-breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: #8492a6;
	font-size: 14px;
	font-weight: 700;
}

.catalog-breadcrumb a {
	color: #025cc5;
	text-decoration: none;
}

.catalog-breadcrumb i {
	font-size: 11px;
}

.catalog-hero__text {
	max-width: 620px;
	margin: 18px 0 0;
	color: #4c5a6a;
	font-size: 19px;
	line-height: 1.45;
}

.catalog-hero__media {
	position: relative;
	overflow: hidden;
	min-height: 330px;
	border-radius: 18px;
	background: #eef3f8;
}

.catalog-hero__media:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 22, 72, 0) 42%, rgba(2, 22, 72, .62));
}

.catalog-hero__media img {
	width: 100%;
	height: 100%;
	min-height: 330px;
	display: block;
	object-fit: cover;
}

.catalog-hero__badge {
	position: absolute;
	left: 18px;
	bottom: 18px;
	z-index: 1;
	display: inline-flex;
	gap: 8px;
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, .36);
	border-radius: 999px;
	color: #fff;
	font-weight: 800;
	background: rgba(255, 255, 255, .16);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.catalog-filter {
	padding: 20px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 18px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 14px 34px rgba(2, 22, 72, .08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.catalog-filter__label {
	display: block;
	margin-bottom: 8px;
	color: #021648;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.catalog-filter__select {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid rgba(2, 22, 72, .1);
	border-radius: 12px;
	color: #021648;
	font-weight: 700;
	background-color: #fff;
}

.catalog-page-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 18px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 12px 32px rgba(2, 22, 72, .08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.catalog-page-card:hover {
	transform: translateY(-5px);
	border-color: rgba(2, 92, 197, .22);
	box-shadow: 0 20px 46px rgba(2, 22, 72, .14);
}

.catalog-page-card__img {
	position: relative;
	overflow: hidden;
	height: 320px;
	background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.catalog-page-card__img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .25s ease;
}

.catalog-page-card:hover .catalog-page-card__img img {
	transform: scale(1.04);
}

.catalog-page-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 10px;
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, #e53935, #ff6b3d);
	box-shadow: 0 8px 18px rgba(229, 57, 53, .24);
}

.catalog-page-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px;
}

.catalog-page-card__cat {
	margin-bottom: 6px;
	color: #8492a6;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

.catalog-page-card__title {
	min-height: 48px;
	margin-bottom: 10px;
	color: #021648;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.3;
}

.catalog-page-card__descr {
	display: -webkit-box;
	min-height: 44px;
	overflow: hidden;
	color: #5f6b7a;
	font-size: 14px;
	line-height: 1.45;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.catalog-page-card__meta {
	margin-top: 14px;
	color: #5f6b7a;
	font-size: 13px;
}

.catalog-page-card__price {
	display: block;
	margin-bottom: 4px;
	color: #021648;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
}

.catalog-page-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 16px;
}

.catalog-page-card__link,
.catalog-page-card__cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border: 0;
	border-radius: 10px;
	font-weight: 800;
	text-decoration: none;
}

.catalog-page-card__link {
	flex: 1;
	gap: 8px;
	padding: 0 14px;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.catalog-page-card__link:hover {
	color: #fff;
}

.catalog-page-card__cart {
	flex: 0 0 42px;
	width: 42px;
	color: #025cc5;
	background: rgba(2, 92, 197, .1);
}

.catalog-page-card__cart:hover {
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.catalog-empty {
	padding: 38px 24px;
	border: 1px solid rgba(2, 92, 197, .12);
	border-radius: 20px;
	text-align: center;
	color: #001747;
	background: rgba(255, 255, 255, .84);
	box-shadow: 0 24px 70px rgba(2, 22, 72, .08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.catalog-empty i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 16px;
	border-radius: 18px;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 14px 30px rgba(2, 92, 197, .22);
}

.catalog-empty h3 {
	margin-bottom: 8px;
	font-size: 24px;
	font-weight: 900;
}

.catalog-empty p {
	margin: 0;
	color: rgba(0, 23, 71, .66);
}

.inner-page {
	overflow: hidden;
	background: linear-gradient(180deg, #f7faff 0%, #fff 44%, #eef5ff 100%);
}

.page-hero {
	position: relative;
	overflow: hidden;
	padding: 76px 0;
	color: #fff;
	background:
		radial-gradient(circle at 84% 32%, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, 0) 28%),
		radial-gradient(circle at 10% 14%, rgba(61, 137, 255, .58) 0%, rgba(61, 137, 255, 0) 34%),
		linear-gradient(120deg, #025cc5 0%, #021648 48%, #020b23 100%);
}

.page-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(3, 40, 112, .88) 0%, rgba(2, 22, 72, .92) 42%, rgba(2, 12, 43, .96) 100%);
	pointer-events: none;
}

.page-hero:after {
	content: "";
	position: absolute;
	right: -140px;
	bottom: -180px;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, .24) 0%, rgba(255, 255, 255, 0) 72%);
	filter: blur(2px);
	animation: heroGlow 16s ease-in-out infinite alternate;
}

.page-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
}

.page-hero>img.page-hero__bg {
	display: none;
}

.detail-hero>img.page-hero__bg,
.marketing-hero>img.page-hero__bg {
	display: none;
}

.page-hero__orb {
	position: absolute;
	display: block;
	border-radius: 50%;
	filter: blur(2px);
	opacity: .7;
	animation: heroFloat 18s ease-in-out infinite alternate;
}

.page-hero__orb--one {
	top: -80px;
	left: -70px;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(255, 255, 255, .28) 0%, rgba(255, 255, 255, 0) 72%);
}

.page-hero__orb--two {
	right: 6%;
	top: 12%;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(99, 174, 255, .24) 0%, rgba(99, 174, 255, 0) 70%);
	animation-duration: 22s;
}

.page-hero__orb--three {
	left: 45%;
	bottom: -90px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 74%);
	animation-duration: 20s;
}

.page-hero__grid {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 22% 30%, rgba(255, 255, 255, .16), transparent 18%),
		radial-gradient(circle at 76% 22%, rgba(91, 166, 255, .18), transparent 20%),
		radial-gradient(circle at 58% 78%, rgba(255, 255, 255, .1), transparent 24%);
	opacity: .72;
	animation: heroLights 18s ease-in-out infinite alternate;
}

@keyframes heroGlow {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}

	to {
		transform: translate3d(-24px, -18px, 0) scale(1.06);
	}
}

@keyframes heroFloat {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}

	to {
		transform: translate3d(20px, -24px, 0) scale(1.06);
	}
}

@keyframes heroLights {
	from {
		transform: translate3d(-16px, 8px, 0) scale(1);
		opacity: .52;
	}

	to {
		transform: translate3d(18px, -12px, 0) scale(1.04);
		opacity: .82;
	}
}

.page-hero__panel {
	position: relative;
	z-index: 1;
	max-width: 860px;
}

.page-hero__content {
	position: relative;
	z-index: 2;
	max-width: 860px;
}

.page-hero__content:before {
	content: "";
	position: absolute;
	z-index: -1;
	left: -80px;
	top: -70px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, .14), transparent 68%);
	filter: blur(1px);
	animation: heroLights 20s ease-in-out infinite alternate;
}

.page-hero__breadcrumb {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
	list-style: none;
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 999px;
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
	font-weight: 800;
	background: rgba(255, 255, 255, .13);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.page-hero__breadcrumb li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.page-hero__breadcrumb a {
	color: #fff;
	text-decoration: none;
}

.page-hero__breadcrumb i {
	font-size: 11px;
}

.page-hero__title {
	margin: 0;
	color: #fff;
	font-size: 48px;
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
	text-transform: uppercase;
	background: none;
	background-clip: border-box;
	-webkit-background-clip: border-box;
	-webkit-text-fill-color: #fff;
}

.page-hero__text {
	max-width: 660px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .78);
	font-size: 18px;
	line-height: 1.5;
}

.page-hero .section-title-gradient,
.page-hero h1,
.page-hero h2,
.page-hero p,
.page-hero span {
	color: #fff;
	-webkit-text-fill-color: currentColor;
}

.page-hero .page-hero__text,
.page-hero .page-hero__breadcrumb,
.page-hero .page-hero__breadcrumb span {
	color: rgba(255, 255, 255, .82);
	-webkit-text-fill-color: currentColor;
}

.page-hero .page-hero__breadcrumb a {
	color: #fff;
	-webkit-text-fill-color: #fff;
}

.page-hero .legal-text {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-weight: 900;
	line-height: 1.15;
	-webkit-text-fill-color: #fff;
}

.page-hero h2.legal-text {
	font-size: clamp(34px, 5vw, 58px);
	text-transform: uppercase;
}

.page-hero h3.legal-text {
	margin-bottom: 18px;
	color: rgba(255, 255, 255, .82);
	font-size: clamp(18px, 2.2vw, 26px);
	line-height: 1.35;
	text-transform: none;
	-webkit-text-fill-color: rgba(255, 255, 255, .82);
}

.page-section {
	padding: 70px 0;
}

.page-card {
	position: relative;
	overflow: hidden;
	height: 100%;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 20px;
	background: rgba(255, 255, 255, .84);
	box-shadow: 0 18px 46px rgba(2, 22, 72, .09);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.page-card:hover {
	transform: translateY(-5px);
	border-color: rgba(2, 92, 197, .2);
	box-shadow: 0 26px 58px rgba(2, 22, 72, .14);
}

.page-card__img {
	position: relative;
	overflow: hidden;
	display: block;
	height: 290px;
	background: #eef3f8;
}

.page-card__img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .28s ease;
}

.page-card:hover .page-card__img img {
	transform: scale(1.04);
}

.page-card__body {
	display: flex;
	flex-direction: column;
	min-height: 168px;
	padding: 20px;
}

.page-card__tag {
	width: max-content;
	margin-bottom: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	color: #025cc5;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	background: rgba(2, 92, 197, .1);
}

.page-card__title {
	margin: 0 0 16px;
	color: #021648;
	font-size: 21px;
	font-weight: 900;
	line-height: 1.25;
}

.page-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: max-content;
	margin-top: auto;
	color: #025cc5;
	font-weight: 900;
	text-decoration: none;
	transition: transform .2s ease, color .2s ease;
}

.page-card__link:hover {
	color: #021648;
	transform: translateX(3px);
}

.article-panel,
.form-panel,
.info-panel {
	padding: 28px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 22px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 18px 46px rgba(2, 22, 72, .09);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.article-panel {
	color: #263241;
	font-size: 17px;
	line-height: 1.7;
}

.article-panel img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
}

.detail-article__cover {
	position: relative;
	overflow: hidden;
	margin: 0 0 26px;
	border-radius: 20px;
	background: #eef3f8;
	box-shadow: 0 18px 42px rgba(2, 22, 72, .12);
}

.detail-article__cover:after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(2, 22, 72, 0) 52%, rgba(2, 22, 72, .28));
	pointer-events: none;
}

.detail-article__cover img {
	display: block;
	width: 100%;
	height: clamp(260px, 36vw, 430px);
	object-fit: cover;
	border-radius: 0;
}

.article-panel h1,
.article-panel h2,
.article-panel h3,
.info-panel h2,
.form-panel h2 {
	color: #021648;
	font-weight: 900;
	letter-spacing: 0;
}

.gallery-card {
	position: relative;
	overflow: hidden;
	display: block;
	height: 240px;
	border-radius: 18px;
	background: #eef3f8;
	box-shadow: 0 18px 42px rgba(2, 22, 72, .1);
}

.gallery-card img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .28s ease;
}

.gallery-card span {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
	background: rgba(2, 22, 72, .28);
	opacity: 0;
	transition: opacity .2s ease;
}

.gallery-card:hover img {
	transform: scale(1.05);
}

.gallery-card:hover span {
	opacity: 1;
}

.detail-page {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 18%, rgba(2, 92, 197, .1), transparent 28%),
		radial-gradient(circle at 94% 58%, rgba(2, 22, 72, .08), transparent 24%),
		linear-gradient(180deg, #f7faff 0%, #fff 42%, #eef5ff 100%);
}

.detail-hero {
	min-height: 520px;
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .2), transparent 28%),
		radial-gradient(circle at 14% 82%, rgba(75, 150, 255, .28), transparent 30%),
		linear-gradient(135deg, #025cc5 0%, #021648 54%, #020b23 100%);
}

.detail-hero:before {
	background:
		radial-gradient(circle at 78% 22%, rgba(255, 255, 255, .16), transparent 22%),
		radial-gradient(circle at 18% 76%, rgba(91, 166, 255, .18), transparent 26%),
		linear-gradient(120deg, rgba(2, 22, 72, .86) 0%, rgba(2, 92, 197, .62) 52%, rgba(2, 12, 43, .9) 100%);
}

.detail-hero:after {
	right: 7%;
	bottom: -120px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 66%);
	box-shadow:
		-260px -80px 0 rgba(255, 255, 255, .06),
		-110px -250px 0 rgba(91, 166, 255, .1);
	animation: heroGlow 16s ease-in-out infinite alternate;
}

.detail-hero .page-hero__bg {
	display: none;
}

.detail-hero .page-hero__content {
	max-width: 880px;
}

.detail-hero__tag {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 38px;
	margin-bottom: 18px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	background: rgba(255, 255, 255, .14);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.detail-hero .page-hero__title {
	max-width: 980px;
	font-size: 58px;
}

.detail-hero .page-hero__text {
	max-width: 760px;
	color: rgba(255, 255, 255, .84);
}

.promotion-countdown {
	display: inline-flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 22px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 16px;
	background: rgba(2, 22, 72, .3);
	box-shadow: 0 16px 36px rgba(2, 12, 43, .18);
	backdrop-filter: blur(8px);
}

.promotion-countdown__label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, .86);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.promotion-countdown__items {
	display: grid;
	grid-template-columns: repeat(4, minmax(64px, 1fr));
	gap: 8px;
}

.promotion-countdown__items>span {
	display: flex;
	min-width: 72px;
	padding: 8px 10px;
	border-radius: 11px;
	background: rgba(255, 255, 255, .12);
	align-items: center;
	flex-direction: column;
}

.promotion-countdown__items strong {
	color: #fff;
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
}

.promotion-countdown__items small {
	margin-top: 5px;
	color: rgba(255, 255, 255, .72);
	font-size: 10px;
	line-height: 1;
	text-transform: uppercase;
}

.promotion-countdown--article {
	width: 100%;
	margin-top: 0;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.detail-hero__actions,
.detail-article__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.detail-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 14px;
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 16px 34px rgba(2, 92, 197, .2);
	transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.detail-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 22px 44px rgba(2, 22, 72, .26);
}

.detail-btn--light {
	color: #021648;
	background: rgba(255, 255, 255, .94);
}

.detail-btn--light:hover {
	color: #021648;
}

.detail-btn--outline {
	border-color: rgba(2, 92, 197, .18);
	color: #021648;
	background: rgba(255, 255, 255, .72);
}

.detail-btn--outline:hover {
	color: #021648;
}

.detail-article,
.detail-aside,
.detail-media,
.detail-benefit {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 26px;
	background: rgba(255, 255, 255, .82);
	box-shadow: 0 22px 58px rgba(2, 22, 72, .1);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.detail-article {
	min-height: 100%;
	padding: 34px;
}

.detail-article:before,
.detail-aside:before,
.detail-benefit:before {
	content: "";
	position: absolute;
	right: -80px;
	top: -80px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(2, 92, 197, .08);
	pointer-events: none;
}

.detail-article h1,
.detail-article h2,
.detail-article h3 {
	color: #021648;
	font-weight: 900;
}

.detail-article h2 {
	margin-bottom: 18px;
	font-size: 34px;
	line-height: 1.15;
}

.detail-article p,
.detail-article div,
.detail-article li {
	color: #263241;
	font-size: 18px;
	line-height: 1.72;
}

.detail-article__kicker {
	display: inline-flex;
	margin-bottom: 12px;
	color: #025cc5;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.detail-article--promo {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.promotion-description {
	position: relative;
}

.detail-article .promotion-description__content {
	position: relative;
	max-height: 10.3em;
	overflow: hidden;
	transition: max-height .35s ease;
}

.promotion-description:not(.is-expanded):not(.promotion-description--short):after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 42px;
	height: 46px;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}

.detail-article .promotion-description.is-expanded .promotion-description__content {
	max-height: none;
}

.detail-article .promotion-description__toggle {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	padding: 0;
	border: 0;
	color: #025cc5;
	font-size: 14px;
	font-weight: 800;
	background: none;
	cursor: pointer;
}

.promotion-description__toggle:hover {
	color: #021648;
}

.promotion-description__toggle[hidden] {
	display: none;
}

.detail-aside {
	position: sticky;
	top: 104px;
	padding: 28px;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.detail-aside:hover,
.detail-benefit:hover,
.detail-media:hover {
	transform: translateY(-5px);
	border-color: rgba(2, 92, 197, .2);
	box-shadow: 0 28px 68px rgba(2, 22, 72, .16);
}

.detail-aside__icon,
.detail-benefit i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 18px;
	border-radius: 16px;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 14px 30px rgba(2, 92, 197, .18);
}

.detail-aside h3,
.detail-benefit h3 {
	margin: 0 0 12px;
	color: #021648;
	font-size: 22px;
	font-weight: 900;
}

.detail-aside p,
.detail-benefit p {
	margin: 0;
	color: #5f6b7a;
	font-size: 15px;
	line-height: 1.55;
}

.detail-aside__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
	color: #025cc5;
	font-weight: 900;
	text-decoration: none;
	transition: transform .2s ease, color .2s ease;
}

.detail-aside__link:hover {
	color: #021648;
	transform: translateX(4px);
}

.detail-related {
	margin-top: 18px;
	padding: 20px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 22px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 18px 46px rgba(2, 22, 72, .09);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.detail-related__head {
	margin-bottom: 14px;
}

.detail-related__head span {
	display: inline-flex;
	margin-bottom: 6px;
	color: #025cc5;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.detail-related__head h3 {
	margin: 0;
	color: #021648;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.15;
}

.detail-related__list {
	display: grid;
	gap: 12px;
}

.detail-related__item {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 12px;
	align-items: stretch;
	padding: 10px;
	border: 1px solid rgba(2, 22, 72, .07);
	border-radius: 16px;
	color: #021648;
	text-decoration: none;
	background: rgba(247, 251, 255, .76);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.detail-related__item:hover {
	color: #021648;
	transform: translateY(-2px);
	border-color: rgba(2, 92, 197, .18);
	box-shadow: 0 14px 34px rgba(2, 22, 72, .1);
}

.detail-related__img {
	overflow: hidden;
	display: block;
	min-height: 88px;
	border-radius: 13px;
	background: #eef3f8;
}

.detail-related__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .24s ease;
}

.detail-related__item:hover .detail-related__img img {
	transform: scale(1.05);
}

.detail-related__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
}

.detail-related__tag {
	width: max-content;
	margin-bottom: 6px;
	padding: 4px 8px;
	border-radius: 999px;
	color: #025cc5;
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
	background: rgba(2, 92, 197, .09);
}

.detail-related__body strong {
	overflow: hidden;
	display: -webkit-box;
	margin-bottom: 5px;
	color: #021648;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.detail-related__body small {
	overflow: hidden;
	display: -webkit-box;
	color: #5f6b7a;
	font-size: 12px;
	line-height: 1.35;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.detail-media {
	height: 100%;
	min-height: 470px;
	background: #eef3f8;
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.detail-media:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 22, 72, 0) 48%, rgba(2, 22, 72, .62));
}

.detail-media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .35s ease;
}

.detail-media:hover img {
	transform: scale(1.06);
}

.detail-media span {
	position: absolute;
	left: 22px;
	bottom: 22px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: 999px;
	color: #fff;
	font-weight: 900;
	background: rgba(255, 255, 255, .16);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.detail-benefit {
	height: 100%;
	padding: 24px;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.detail-section-head span {
	display: inline-flex;
	margin-bottom: 6px;
	color: #025cc5;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.detail-gallery .gallery-card {
	border-radius: 20px;
	box-shadow: 0 18px 46px rgba(2, 22, 72, .1);
}

.form-panel input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.form-panel textarea,
.form-panel select {
	width: 100%;
	min-height: 48px;
	margin-bottom: 14px;
	padding: 12px 14px;
	border: 1px solid rgba(2, 22, 72, .1);
	border-radius: 12px;
	color: #021648;
	background: rgba(255, 255, 255, .94);
}

.form-panel textarea {
	min-height: 132px;
	resize: vertical;
}

.form-panel input:focus,
.form-panel textarea:focus,
.form-panel select:focus {
	border-color: rgba(2, 92, 197, .45);
	outline: 0;
	box-shadow: 0 0 0 4px rgba(2, 92, 197, .1);
}

.form-panel__submit,
.page-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 0 22px;
	border: 0;
	border-radius: 12px;
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 16px 34px rgba(2, 92, 197, .2);
	transition: transform .2s ease, box-shadow .2s ease;
}

.form-panel__submit:hover,
.page-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 20px 42px rgba(2, 92, 197, .26);
}

.info-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.info-list__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #263241;
	font-weight: 700;
}

.info-list__item i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.page-video {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 20px;
	background: #eef3f8;
	box-shadow: 0 18px 46px rgba(2, 22, 72, .1);
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.page-video:hover {
	transform: translateY(-5px);
	border-color: rgba(2, 92, 197, .22);
	box-shadow: 0 26px 58px rgba(2, 22, 72, .15);
}

.page-video .overlay-image {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-size: cover;
	transition: transform .28s ease;
}

.page-video .overlay-image:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 22, 72, .06), rgba(2, 22, 72, .52));
}

.page-video:hover .overlay-image {
	transform: scale(1.04);
}

.page-video__play {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 18px 34px rgba(2, 22, 72, .32);
	transition: transform .2s ease, box-shadow .2s ease;
}

.page-video__play:hover {
	color: #fff;
	transform: scale(1.06);
	box-shadow: 0 22px 44px rgba(2, 22, 72, .38);
}

.feature-card {
	position: relative;
	overflow: hidden;
	min-height: 320px;
	display: flex;
	align-items: flex-end;
	padding: 22px;
	border-radius: 20px;
	color: #fff;
	background: #021648;
	box-shadow: 0 18px 46px rgba(2, 22, 72, .12);
	transition: transform .24s ease, box-shadow .24s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 26px 58px rgba(2, 22, 72, .18);
}

.feature-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .28s ease;
}

.feature-card:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(2, 22, 72, .1), rgba(2, 22, 72, .78));
}

.feature-card:hover img {
	transform: scale(1.05);
}

.feature-card__content {
	position: relative;
	z-index: 2;
}

.feature-card__content h3 {
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 900;
}

.feature-card__content p {
	margin: 0;
	color: rgba(255, 255, 255, .78);
	line-height: 1.45;
}

.company-content-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	overflow: hidden;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 22px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 18px 46px rgba(2, 22, 72, .09);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.company-content-card:nth-child(even) .company-content-card__media {
	order: 2;
}

.company-content-card__media {
	min-height: 360px;
	background: #eef3f8;
}

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

.company-content-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 34px;
}

.company-content-card__body h2 {
	margin-bottom: 18px;
}

.company-content-card__text {
	color: #263241;
	font-size: 17px;
	line-height: 1.65;
}

.mission-panel {
	position: relative;
	overflow: hidden;
	min-height: 420px;
	display: flex;
	align-items: center;
	border-radius: 24px;
	color: #fff;
	background: #021648;
	box-shadow: 0 26px 70px rgba(2, 22, 72, .2);
}

.mission-panel img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .38;
}

.mission-panel:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(2, 22, 72, .9), rgba(2, 92, 197, .52));
}

.mission-panel__content {
	position: relative;
	z-index: 1;
	max-width: 620px;
	padding: 44px;
}

.mission-panel__content h2 {
	color: #fff;
	font-size: 40px;
	font-weight: 900;
}

.mission-panel__text {
	color: rgba(255, 255, 255, .82);
	font-size: 18px;
	line-height: 1.65;
}

.about-page {
	background: linear-gradient(180deg, #f7faff 0%, #fff 38%, #eef5ff 100%);
}

.about-hero {
	padding: 88px 0;
}

.about-hero__label {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 14px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 999px;
	color: rgba(255, 255, 255, .9);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.about-hero__panel {
	position: relative;
	overflow: hidden;
	display: grid;
	gap: 14px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
	box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.about-hero__panel:before {
	content: "HAZNA";
	position: absolute;
	right: -12px;
	bottom: -18px;
	color: rgba(255, 255, 255, .07);
	font-size: 82px;
	font-weight: 900;
	line-height: 1;
	pointer-events: none;
}

.about-hero__stat {
	position: relative;
	z-index: 1;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 16px;
	background: rgba(255, 255, 255, .1);
}

.about-hero__stat strong {
	display: block;
	margin-bottom: 4px;
	color: #fff;
	font-size: 40px;
	font-weight: 900;
	line-height: 1;
}

.about-hero__stat span {
	display: block;
	color: rgba(255, 255, 255, .8);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.about-intro-section,
.about-values-section,
.about-story-section,
.about-mission-section {
	padding: 64px 0;
}

.about-intro {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	gap: 28px;
	align-items: stretch;
}

.about-intro__text {
	position: relative;
	overflow: hidden;
	padding: 34px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 24px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 18px 46px rgba(2, 22, 72, .08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.about-intro__text:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #025cc5, #18b58f, #f7c948);
}

.about-intro__text .section-title,
.about-intro__text p {
	position: relative;
	z-index: 1;
}

.about-intro__text p {
	margin: 20px 0 0;
	color: #4c5a6a;
	font-size: 18px;
	line-height: 1.6;
}

.about-intro__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.about-principle,
.about-value-card {
	position: relative;
	overflow: hidden;
	height: 100%;
	padding: 24px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 20px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 18px 46px rgba(2, 22, 72, .08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.about-principle:hover,
.about-value-card:hover,
.about-story-card:hover {
	transform: translateY(-4px);
	border-color: rgba(2, 92, 197, .22);
	box-shadow: 0 26px 58px rgba(2, 22, 72, .13);
}

.about-principle i,
.about-value-card i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 14px;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 14px 30px rgba(2, 92, 197, .18);
}

.about-principle h3,
.about-value-card h3 {
	margin: 0 0 10px;
	color: #021648;
	font-size: 21px;
	font-weight: 900;
}

.about-principle p,
.about-value-card p {
	margin: 0;
	color: #5f6b7a;
	font-size: 15px;
	line-height: 1.5;
}

.about-value-card span {
	position: absolute;
	top: 18px;
	right: 20px;
	color: rgba(2, 22, 72, .12);
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
}

.about-value-card--accent {
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.about-value-card--accent h3,
.about-value-card--accent p {
	color: #fff;
}

.about-value-card--accent i {
	color: #025cc5;
	background: #fff;
}

.about-value-card--accent span {
	color: rgba(255, 255, 255, .18);
}

.about-story-head {
	max-width: 720px;
	margin-bottom: 28px;
}

.about-story-list {
	display: grid;
	gap: 24px;
}

.about-story-card {
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.about-story-card__num {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 34px;
	margin-bottom: 18px;
	padding: 0 12px;
	border-radius: 999px;
	color: #025cc5;
	font-size: 13px;
	font-weight: 900;
	background: rgba(2, 92, 197, .08);
}

.about-story-card .company-content-card__text p:last-child,
.about-mission-panel .mission-panel__text p:last-child {
	margin-bottom: 0;
}

.about-mission-section {
	padding-top: 24px;
}

.about-mission-panel {
	min-height: 500px;
}

.about-mission-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.about-outline-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 24px;
	border: 1px solid rgba(255, 255, 255, .32);
	border-radius: 12px;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	text-decoration: none;
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: transform .2s ease, background .2s ease;
}

.about-outline-btn:hover {
	color: #fff;
	background: rgba(255, 255, 255, .2);
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.about-hero {
		padding: 64px 0;
	}

	.about-intro {
		grid-template-columns: 1fr;
	}

	.about-intro__grid {
		grid-template-columns: 1fr;
	}

	.about-intro-section,
	.about-values-section,
	.about-story-section,
	.about-mission-section {
		padding: 46px 0;
	}

	.about-story-head {
		text-align: center;
		margin-right: auto;
		margin-left: auto;
	}

	.about-story-card,
	.company-content-card {
		grid-template-columns: 1fr;
	}

	.company-content-card:nth-child(even) .company-content-card__media {
		order: 0;
	}

	.about-mission-panel {
		min-height: 440px;
	}
}

@media (max-width: 767px) {
	.about-hero {
		padding: 44px 0;
	}

	.about-hero .page-hero__title {
		font-size: 34px;
	}

	.about-hero__panel,
	.about-intro__text,
	.about-principle,
	.about-value-card,
	.company-content-card__body {
		padding: 20px;
	}

	.about-hero__stat strong {
		font-size: 32px;
	}

	.about-intro-section,
	.about-values-section,
	.about-story-section,
	.about-mission-section {
		padding: 34px 0;
	}

	.about-intro__text p,
	.company-content-card__text,
	.mission-panel__text {
		font-size: 16px;
		line-height: 1.55;
	}

	.company-content-card__media {
		min-height: 260px;
	}

	.about-mission-panel {
		min-height: 520px;
	}

	.about-mission-panel .mission-panel__content {
		padding: 26px;
	}

	.about-mission-panel__actions,
	.about-outline-btn,
	.about-mission-panel .company-btn {
		width: 100%;
	}
}

.map-panel {
	overflow: hidden;
	height: 420px;
	border-radius: 22px;
	box-shadow: 0 18px 46px rgba(2, 22, 72, .12);
}

.warehouse-card {
	height: 100%;
	padding: 22px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 18px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 16px 38px rgba(2, 22, 72, .08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.warehouse-card:hover {
	transform: translateY(-4px);
	border-color: rgba(2, 92, 197, .2);
	box-shadow: 0 22px 48px rgba(2, 22, 72, .13);
}

.warehouse-card__title {
	margin-bottom: 8px;
	color: #021648;
	font-size: 18px;
	font-weight: 900;
}

.warehouse-card__meta {
	color: #5f6b7a;
	font-size: 14px;
	line-height: 1.5;
}

.warehouse-card__links {
	display: flex;
	gap: 8px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.warehouse-card__links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	color: #025cc5;
	background: rgba(2, 92, 197, .1);
	text-decoration: none;
	transition: color .2s ease, background .2s ease, transform .2s ease;
}

.warehouse-card__links a:hover {
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
	transform: translateY(-2px);
}

.page-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.page-pagination a,
.page-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 12px;
	color: #021648;
	font-weight: 900;
	text-decoration: none;
	background: rgba(255, 255, 255, .86);
}

.page-pagination .current,
.page-pagination a:hover {
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.ref-card {
	position: relative;
	overflow: hidden;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 28px;
	color: #fff;
	background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
	box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.ref-card:before {
	content: "";
	position: absolute;
	top: -80px;
	right: -90px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	pointer-events: none;
}

.ref-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, .12);
}

.ref-card__body {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 30px;
	align-items: center;
}

.ref-card__image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.ref-card__image img,
.ref-card__image .ref-card__avatar {
	width: 220px;
	height: 293px;
	border-radius: 28px;
	border: 5px solid rgba(255, 255, 255, .28);
	object-fit: cover;
	box-shadow: 0 18px 50px rgba(2, 22, 72, .22);
}

.ref-card__details {
	text-align: left;
}

@media (max-width: 991px) {
	.ref-card__body {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.ref-card__details {
		text-align: center;
	}
}

.ref-card__header {
	margin-bottom: 18px;
}

.ref-card h2 {
	margin-bottom: 8px;
	font-size: 24px;
	font-weight: 900;
}

.ref-card__header p {
	margin: 0;
	color: rgba(255, 255, 255, .8);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.55;
}

.ref-card__meta {
	display: grid;
	gap: 8px;
	color: rgba(255, 255, 255, .86);
	font-weight: 700;
}

.ref-card__meta span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 14px;
	background: rgba(255, 255, 255, .08);
}

.ref-card__meta i {
	color: rgba(255, 255, 255, .88);
}

.ref-card__social {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.ref-card__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 12px;
	color: #fff;
	text-decoration: none;
	background: rgba(255, 255, 255, .14);
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.ref-card__social a:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, .26);
	box-shadow: 0 10px 24px rgba(2, 22, 72, .16);
}

@media (max-width: 767px) {
	.ref-hero {
		padding: 36px 0 44px;
	}

	.ref-hero .container-fluid {
		padding-right: 18px;
		padding-left: 18px;
	}

	.ref-card {
		padding: 28px 18px;
		border-radius: 24px;
	}

	.ref-card:before {
		top: -70px;
		right: -80px;
		width: 190px;
		height: 190px;
	}

	.ref-card__badge {
		justify-content: center;
		max-width: 100%;
		margin: 0 auto 22px;
		padding: 8px 13px;
		font-size: 11px;
		line-height: 1.2;
		text-align: center;
		letter-spacing: .08em;
	}

	.ref-card__body {
		gap: 22px;
	}

	.ref-card__image img,
	.ref-card__image .ref-card__avatar {
		width: 220px;
		height: 293px;
		border-width: 5px;
		border-radius: 24px;
	}

	.ref-card__header {
		margin-bottom: 16px;
	}

	.ref-card h2 {
		margin-bottom: 10px;
		font-size: clamp(24px, 7vw, 30px);
		line-height: 1.12;
	}

	.ref-card__header p {
		max-width: 280px;
		margin: 0 auto;
		font-size: 14px;
		line-height: 1.45;
	}

	.ref-card__meta {
		gap: 7px;
	}

	.ref-card__meta span {
		width: 100%;
		min-width: 0;
		padding: 10px;
		font-size: 14px;
		line-height: 1.3;
		overflow-wrap: anywhere;
	}

	.ref-card__social {
		gap: 7px;
		margin-top: 18px;
	}

	.ref-card__social a {
		width: 40px;
		height: 40px;
		border-radius: 12px;
	}

	.ref-hero .page-hero__panel {
		text-align: center;
	}

	.ref-hero .page-hero__breadcrumb {
		justify-content: center;
	}

	.ref-hero .page-hero__title {
		font-size: 34px;
	}

	.ref-hero .page-hero__text {
		margin-right: auto;
		margin-left: auto;
		font-size: 16px;
	}
}

@media (max-width: 390px) {
	.ref-hero .container-fluid {
		padding-right: 12px;
		padding-left: 12px;
	}

	.ref-card {
		padding: 24px 14px;
	}

	.ref-card__image img,
	.ref-card__image .ref-card__avatar {
		width: 210px;
		height: 280px;
	}
}

@media (max-width: 340px) {

	.ref-card__image img,
	.ref-card__image .ref-card__avatar {
		width: 190px;
		height: 253px;
	}
}

.feature-card {
	text-decoration: none;
}

.review-mini {
	display: flex;
	gap: 16px;
	padding: 18px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 18px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 14px 34px rgba(2, 22, 72, .08);
}

.review-mini img {
	flex: 0 0 66px;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	object-fit: cover;
}

.review-mini h3 {
	margin: 0 0 3px;
	color: #021648;
	font-size: 17px;
	font-weight: 900;
}

.review-mini span {
	display: block;
	margin-bottom: 8px;
	color: #025cc5;
	font-size: 13px;
	font-weight: 800;
}

.review-mini p {
	margin: 0;
	color: #5f6b7a;
	line-height: 1.5;
}

.legal-title {
	margin: 0 0 14px;
	color: #021648;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0;
}

.legal-text {
	color: #263241;
	font-size: 16px;
	line-height: 1.7;
}

.inner-page>section .container,
.inner-page>section .container-fluid {
	position: relative;
}

.inner-page section .container.pt-20,
.inner-page section .container.pt-30 {
	margin-bottom: 18px;
	padding: 24px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 20px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 18px 46px rgba(2, 22, 72, .08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.inner-page section .container.pt-20:first-child,
.inner-page section .container.pt-30:first-child {
	margin-top: 58px;
}

.inner-page section .container.pt-20:last-child,
.inner-page section .container.pt-30:last-child {
	margin-bottom: 58px;
}

.site-footer {
	background: linear-gradient(180deg, #021648 0%, #061234 100%);
}

.site-footer__panel {
	overflow: hidden;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 22px;
	color: #fff;
	background: linear-gradient(135deg, rgba(2, 22, 72, .92), rgba(6, 18, 52, .86));
	box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.site-footer__logo {
	display: inline-flex;
	margin-bottom: 16px;
}

.site-footer__logo img {
	max-width: 160px;
	max-height: 44px;
}

.site-footer__text {
	max-width: 360px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, .78);
	font-size: 15px;
	line-height: 1.5;
}

.site-footer__title {
	margin-bottom: 14px;
	color: #fff;
	font-size: 16px;
	font-weight: 800;
}

.site-footer__links {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__links a {
	color: rgba(255, 255, 255, .76);
	font-weight: 700;
	text-decoration: none;
	transition: color .2s ease, transform .2s ease;
}

.site-footer__links a:hover {
	color: #fff;
	transform: translateX(2px);
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	color: #fff;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .08);
	transition: transform .2s ease, background .2s ease;
}

.site-footer__social a:hover {
	transform: translateY(-2px);
	background: rgba(2, 92, 197, .55);
}

.site-footer__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 12px;
	color: #021648;
	font-weight: 800;
	text-decoration: none;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
	transition: transform .2s ease, box-shadow .2s ease;
}

.site-footer__btn:hover {
	color: #021648;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .66);
	font-size: 14px;
	font-weight: 700;
}

.mobile-app-nav {
	display: none;
}

@media (max-width:767px) {
	.mobile-app-nav {
		display: grid;
	}
}

.site-scroll-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 1040;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border: 1px solid rgba(255, 255, 255, .32);
	border-radius: 16px;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 18px 42px rgba(2, 22, 72, .24);
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px) scale(.92);
	transition: opacity .22s ease, visibility .22s ease, transform .22s ease, box-shadow .22s ease;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.site-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.site-scroll-top:hover {
	color: #fff;
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 22px 52px rgba(2, 22, 72, .3);
}

.site-scroll-top:focus {
	outline: 0;
	box-shadow: 0 0 0 4px rgba(2, 92, 197, .18), 0 18px 42px rgba(2, 22, 72, .24);
}

.site-scroll-top i {
	font-size: 18px;
	line-height: 1;
}

.promotions-section {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
}

.promo-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 18px;
	color: #021648;
	background: #fff;
	box-shadow: 0 14px 34px rgba(2, 22, 72, .1);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.promo-card:hover {
	color: #021648;
	transform: translateY(-5px);
	border-color: rgba(2, 92, 197, .22);
	box-shadow: 0 20px 48px rgba(2, 22, 72, .16);
}

.promo-card__img {
	position: relative;
	display: block;
	overflow: hidden;
	height: 360px;
	background: #eef3f8;
}

.promo-card__img:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 22, 72, 0) 48%, rgba(2, 22, 72, .58));
}

.promo-card__img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .25s ease;
}

.promo-card:hover .promo-card__img img {
	transform: scale(1.04);
}

.promo-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 13px;
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, #e53935, #ff6b3d);
	box-shadow: 0 10px 22px rgba(229, 57, 53, .28);
}

.promo-card__badge i {
	margin-right: 6px;
}

.promo-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px;
}

.promo-card__date {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 10px;
	color: #8492a6;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

.promo-card__title {
	display: block;
	min-height: 56px;
	margin-bottom: 10px;
	overflow: hidden;
	color: #021648;
	font-size: 23px;
	font-weight: 800;
	line-height: 1.2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.promo-card__text {
	display: -webkit-box;
	min-height: 44px;
	overflow: hidden;
	color: #5f6b7a;
	font-size: 15px;
	line-height: 1.45;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.promo-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 22px;
}

.promotions-section .promo-card__footer {
	justify-content: flex-end;
}

.promo-card__price {
	color: #021648;
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
}

.promo-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.promo-card--dark {
	background: linear-gradient(180deg, #021648 0%, #0a2f74 100%);
}

.promo-card--dark,
.promo-card--dark:hover,
.promo-card--dark .promo-card__title,
.promo-card--dark .promo-card__price {
	color: #fff;
}

.promo-card--dark .promo-card__text,
.promo-card--dark .promo-card__date {
	color: rgba(255, 255, 255, .74);
}

.promo-card--dark .promo-card__link {
	color: #021648;
	background: #fff;
}

.promotions-section__all,
.news-section__all,
.home-products__all {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.promotions-section__all a,
.news-section__all a,
.home-products__all a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid rgba(2, 92, 197, .16);
	border-radius: 11px;
	color: #025cc5;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	background: #fff;
	box-shadow: 0 10px 26px rgba(2, 22, 72, .08);
	transition: transform .2s ease, box-shadow .2s ease;
}

.promotions-section__all a:hover,
.news-section__all a:hover,
.home-products__all a:hover {
	color: #025cc5;
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(2, 22, 72, .12);
}

.promotions-page {
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 18%, rgba(2, 92, 197, .1), transparent 28%),
		linear-gradient(180deg, #f6f9ff 0%, #fff 42%, #f7faff 100%);
}

.promotions-page__hero {
	background:
		radial-gradient(circle at 82% 24%, rgba(255, 255, 255, .18), transparent 28%),
		radial-gradient(circle at 12% 72%, rgba(75, 150, 255, .34), transparent 30%),
		linear-gradient(135deg, #025cc5 0%, #021648 54%, #020b23 100%);
}

.promotions-page__hero:before {
	background:
		radial-gradient(circle at 78% 22%, rgba(255, 255, 255, .16), transparent 22%),
		radial-gradient(circle at 18% 72%, rgba(91, 166, 255, .2), transparent 26%),
		linear-gradient(120deg, rgba(2, 22, 72, .82), rgba(2, 92, 197, .62), rgba(2, 12, 43, .9));
}

.promotions-page__hero:after {
	right: 8%;
	bottom: -170px;
	width: 460px;
	height: 460px;
	background:
		radial-gradient(circle, rgba(255, 255, 255, .18), transparent 64%);
	box-shadow:
		-360px -120px 0 rgba(255, 255, 255, .05),
		-140px -260px 0 rgba(75, 150, 255, .12);
	animation: heroGlow 16s ease-in-out infinite alternate;
}

.promotions-page__list {
	position: relative;
}

.promotions-page__list:before {
	content: "";
	position: absolute;
	top: 50px;
	right: -170px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: rgba(2, 92, 197, .08);
	pointer-events: none;
}

.promotions-page__head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 24px;
	background: rgba(255, 255, 255, .72);
	box-shadow: 0 20px 50px rgba(2, 22, 72, .08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.promotions-page__eyebrow {
	display: inline-flex;
	align-items: center;
	margin-bottom: 8px;
	color: #025cc5;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.promotions-page__head h2 {
	margin: 0;
	font-size: 38px;
	line-height: 1.1;
}

.promotions-page__catalog {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 13px;
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 16px 34px rgba(2, 92, 197, .18);
	transition: transform .2s ease, box-shadow .2s ease;
}

.promotions-page__catalog:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 20px 42px rgba(2, 92, 197, .24);
}

.promotions-page-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 24px;
	color: #021648;
	text-decoration: none;
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 18px 48px rgba(2, 22, 72, .09);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.promotions-page-card:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(2, 92, 197, .26), rgba(255, 255, 255, 0) 34%, rgba(2, 22, 72, .14));
	opacity: 0;
	pointer-events: none;
	transition: opacity .24s ease;
}

.promotions-page-card:hover {
	color: #021648;
	transform: translateY(-7px);
	border-color: rgba(2, 92, 197, .22);
	box-shadow: 0 28px 70px rgba(2, 22, 72, .16);
}

.promotions-page-card:hover:before {
	opacity: 1;
}

.promotions-page-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	height: 285px;
	background: #eef3f8;
}

.promotions-page-card__media:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 22, 72, 0) 42%, rgba(2, 22, 72, .58));
}

.promotions-page-card__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .35s ease;
}

.promotions-page-card:hover .promotions-page-card__media img {
	transform: scale(1.07);
}

.promotions-page-card__badge {
	position: absolute;
	left: 18px;
	bottom: 18px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 0 13px;
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	background: rgba(255, 255, 255, .16);
	box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.promotion-detail-image {
	width: 100%;
}

.promotion-detail-image img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 26px;
	box-shadow: 0 22px 58px rgba(2, 22, 72, .1);
}

.promotion-detail-page .page-section {
	padding: 24px 0 50px;
}

.promotion-page-breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	min-height: 36px;
	margin-bottom: 12px;
	padding: 7px 12px;
	border: 1px solid rgba(2, 92, 197, .12);
	border-radius: 12px;
	color: #637083;
	font-size: 13px;
	font-weight: 700;
	background: rgba(255, 255, 255, .82);
	box-shadow: 0 8px 24px rgba(2, 22, 72, .06);
}

.promotion-page-breadcrumb a {
	flex: 0 0 auto;
	color: #025cc5;
	text-decoration: none;
}

.promotion-page-breadcrumb i {
	flex: 0 0 auto;
	font-size: 9px;
	color: #9aa7b7;
}

.promotion-page-breadcrumb span {
	min-width: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.promotions-page-card__countdown {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 32px;
	padding: 0 11px;
	border: 1px solid rgba(255, 255, 255, .42);
	border-radius: 999px;
	color: #fff;
	font-size: 11px;
	line-height: 1;
	white-space: nowrap;
	background: rgba(2, 22, 72, .78);
	box-shadow: 0 8px 22px rgba(2, 12, 43, .22);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.promotions-page-card__countdown strong {
	font-size: 11px;
	font-weight: 800;
}

.promotions-page-card__body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px;
}

.promotions-page-card__meta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	color: #6c7a8e;
	font-size: 13px;
	font-weight: 800;
}

.promotions-page-card__title {
	margin-bottom: 12px;
	color: #021648;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.18;
}

.promotions-page-card__text {
	display: -webkit-box;
	overflow: hidden;
	color: #5f6b7a;
	font-size: 15px;
	line-height: 1.55;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.promotions-page-card__footer {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: max-content;
	margin-top: auto;
	padding-top: 24px;
	color: #025cc5;
	font-weight: 900;
	transition: transform .2s ease, color .2s ease;
}

.promotions-page-card:hover .promotions-page-card__footer {
	color: #021648;
	transform: translateX(5px);
}

.promotions-page-card--dark {
	color: #fff;
	background: linear-gradient(180deg, rgba(2, 22, 72, .96), rgba(4, 48, 112, .94));
}

.promotions-page-card--dark,
.promotions-page-card--dark:hover,
.promotions-page-card--dark .promotions-page-card__title {
	color: #fff;
}

.promotions-page-card--dark .promotions-page-card__meta,
.promotions-page-card--dark .promotions-page-card__text {
	color: rgba(255, 255, 255, .76);
}

.promotions-page-card--dark .promotions-page-card__footer {
	color: #fff;
}

.promotions-page__empty {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 190px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 24px;
	color: #6c7a8e;
	font-size: 18px;
	font-weight: 900;
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 18px 48px rgba(2, 22, 72, .08);
}

.marketing-page {
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 16%, rgba(2, 92, 197, .1), transparent 28%),
		radial-gradient(circle at 92% 62%, rgba(2, 22, 72, .08), transparent 24%),
		linear-gradient(180deg, #f7faff 0%, #fff 46%, #eef5ff 100%);
}

.marketing-hero .page-hero__bg {
	opacity: .23;
}

.marketing-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.marketing-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 20px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 14px;
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 18px 38px rgba(2, 92, 197, .22);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.marketing-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 22px 48px rgba(2, 22, 72, .28);
}

.marketing-btn--light {
	color: #021648;
	background: rgba(255, 255, 255, .92);
}

.marketing-btn--light:hover {
	color: #021648;
}

.marketing-kicker {
	display: inline-flex;
	align-items: center;
	margin-bottom: 10px;
	color: #025cc5;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.marketing-panel,
.marketing-step,
.marketing-info-card,
.marketing-sticky,
.marketing-term,
.marketing-cta__panel,
.marketing-empty {
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 24px;
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 18px 48px rgba(2, 22, 72, .09);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.marketing-panel,
.marketing-step,
.marketing-info-card,
.marketing-term {
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.marketing-panel:hover,
.marketing-step:hover,
.marketing-info-card:hover,
.marketing-term:hover {
	transform: translateY(-5px);
	border-color: rgba(2, 92, 197, .2);
	box-shadow: 0 26px 62px rgba(2, 22, 72, .14);
}

.marketing-panel {
	position: relative;
	overflow: hidden;
	height: 100%;
	padding: 30px;
}

.marketing-panel--dark {
	color: #fff;
	background:
		radial-gradient(circle at 82% 16%, rgba(255, 255, 255, .18), transparent 28%),
		linear-gradient(145deg, #021648 0%, #025cc5 100%);
}

.marketing-panel--dark .marketing-kicker,
.marketing-panel--dark p {
	color: rgba(255, 255, 255, .78);
}

.marketing-panel h2,
.marketing-sticky h2,
.marketing-cta__panel h2 {
	margin: 0 0 16px;
	color: #021648;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.12;
}

.marketing-panel--dark h2 {
	color: #fff;
}

.marketing-panel p,
.marketing-step p,
.marketing-sticky p,
.marketing-cta__panel p {
	margin: 0;
	color: #5f6b7a;
	font-size: 16px;
	line-height: 1.6;
}

.marketing-panel__line {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .18);
}

.marketing-panel__line span {
	color: #fff;
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
}

.marketing-panel__line small {
	color: rgba(255, 255, 255, .74);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.marketing-step {
	height: 100%;
	padding: 24px;
}

.marketing-step i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 15px;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 14px 30px rgba(2, 92, 197, .18);
}

.marketing-step h3,
.marketing-info-card h3 {
	margin: 0 0 10px;
	color: #021648;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.2;
}

.marketing-section-head {
	max-width: 780px;
	margin-bottom: 30px;
}

.marketing-section-head h2 {
	margin: 0;
	font-size: 42px;
	line-height: 1.1;
}

.marketing-info-card {
	position: relative;
	overflow: hidden;
	height: 100%;
	padding: 28px;
}

.marketing-info-card:before {
	content: "";
	position: absolute;
	right: -70px;
	top: -70px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(2, 92, 197, .08);
}

.marketing-info-card--accent {
	background: linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(238, 245, 255, .9));
}

.marketing-info-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 34px;
	margin-bottom: 16px;
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.marketing-info-card__text {
	position: relative;
	z-index: 1;
	color: #5f6b7a;
	font-size: 16px;
	line-height: 1.7;
}

.marketing-info-card__text p,
.marketing-info-card__text div {
	margin-bottom: 0;
}

.marketing-sticky {
	position: sticky;
	top: 104px;
	padding: 28px;
}

.marketing-accordion {
	display: grid;
	gap: 14px;
}

.marketing-legacy-accordion .accordion {
	display: grid;
	gap: 14px;
}

.marketing-legacy-group {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 24px;
	background: rgba(255, 255, 255, .62);
	box-shadow: 0 18px 48px rgba(2, 22, 72, .08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.marketing-legacy-group--status {
	background:
		radial-gradient(circle at 92% 6%, rgba(2, 92, 197, .12), transparent 24%),
		rgba(255, 255, 255, .68);
}

.marketing-legacy-title {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.marketing-legacy-title span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	color: #025cc5;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	background: rgba(2, 92, 197, .09);
}

.marketing-legacy-title h3 {
	margin: 0;
	color: #021648;
	font-size: 26px;
	font-weight: 900;
	line-height: 1.15;
}

.marketing-legacy-accordion .card {
	overflow: hidden;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 20px;
	background: rgba(255, 255, 255, .82);
	box-shadow: 0 18px 46px rgba(2, 22, 72, .08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.marketing-legacy-accordion .card:hover {
	transform: translateY(-3px);
	border-color: rgba(2, 92, 197, .2);
	box-shadow: 0 24px 58px rgba(2, 22, 72, .13);
}

.marketing-legacy-accordion .card-header {
	position: relative;
	min-height: 70px;
	padding: 0;
	border: 0;
	background: transparent;
}

.marketing-legacy-accordion .card-header h5 {
	margin: 0;
}

.marketing-legacy-accordion .card-title {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 70px;
	padding: 0 64px 0 22px;
	color: #021648;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.25;
	text-decoration: none;
}

.marketing-legacy-accordion .card-title i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 12px 26px rgba(2, 92, 197, .18);
}

.marketing-legacy-accordion .card-toggle-icon {
	position: absolute;
	top: 50%;
	right: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	color: #025cc5;
	text-decoration: none;
	transform: translateY(-50%);
	transition: transform .2s ease, background .2s ease;
}

.marketing-legacy-accordion .card-toggle-icon:before {
	content: "\f078";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 13px;
}

.marketing-legacy-accordion .card-toggle-icon:not(.collapsed) {
	transform: translateY(-50%) rotate(180deg);
	background: rgba(2, 92, 197, .08);
}

.marketing-legacy-accordion .card-toggle-icon .arrow,
.marketing-legacy-accordion .card-dash {
	display: none;
}

.marketing-legacy-accordion .collapse {
	display: none;
}

.marketing-legacy-accordion .collapse.show {
	display: block;
}

.marketing-legacy-accordion .card-block {
	padding: 0 24px 24px 72px;
	color: #263241;
	font-size: 16px;
	line-height: 1.68;
}

.marketing-legacy-accordion .card-block p {
	margin: 0;
	color: #263241;
	font-size: 16px;
	line-height: 1.68;
}

.marketing-legacy-accordion strong {
	color: #021648;
	font-weight: 900;
}

.marketing-note {
	padding-top: 0;
}

.marketing-note__panel {
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 24px;
	background:
		radial-gradient(circle at 88% 20%, rgba(2, 92, 197, .13), transparent 26%),
		rgba(255, 255, 255, .82);
	box-shadow: 0 20px 52px rgba(2, 22, 72, .09);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.marketing-note__panel h2 {
	margin: 0 0 14px;
	color: #021648;
	font-size: 32px;
	font-weight: 900;
}

.marketing-note__panel p {
	margin: 0;
	color: #5f6b7a;
	font-size: 17px;
	line-height: 1.65;
}

.marketing-term {
	overflow: hidden;
}

.marketing-term summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 70px;
	padding: 0 22px;
	color: #021648;
	font-size: 18px;
	font-weight: 900;
	cursor: pointer;
	list-style: none;
}

.marketing-term summary::-webkit-details-marker {
	display: none;
}

.marketing-term summary span {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.marketing-term summary span i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.marketing-term summary>i {
	color: #025cc5;
	transition: transform .2s ease;
}

.marketing-term[open] summary>i {
	transform: rotate(180deg);
}

.marketing-term p {
	margin: 0;
	padding: 0 22px 22px 72px;
	color: #5f6b7a;
	font-size: 16px;
	line-height: 1.6;
}

.marketing-cta {
	padding-top: 0;
}

.marketing-cta__panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 34px;
	background:
		radial-gradient(circle at 88% 18%, rgba(2, 92, 197, .16), transparent 24%),
		rgba(255, 255, 255, .8);
}

.marketing-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 180px;
	color: #6c7a8e;
	font-size: 18px;
	font-weight: 900;
}

.news-section {
	background: #fff;
}

.news-card {
	display: block;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 16px;
	color: #021648;
	background: #fff;
	box-shadow: 0 10px 30px rgba(2, 22, 72, .08);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.news-card:hover {
	color: #021648;
	transform: translateY(-4px);
	border-color: rgba(2, 92, 197, .22);
	box-shadow: 0 16px 42px rgba(2, 22, 72, .14);
}

.news-card__img {
	position: relative;
	display: block;
	overflow: hidden;
	height: 260px;
	background: #eef3f8;
}

.news-card__img:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 22, 72, 0) 45%, rgba(2, 22, 72, .5));
}

.news-card__img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .25s ease;
}

.news-card__placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	color: rgba(255, 255, 255, .92);
	background:
		radial-gradient(circle at 76% 24%, rgba(65, 151, 255, .55), transparent 28%),
		linear-gradient(135deg, #025cc5 0%, #021648 100%);
}

.news-card__placeholder i {
	font-size: 42px;
}

.news-card__placeholder small {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .14em;
}

.news-card:hover .news-card__img img {
	transform: scale(1.04);
}

.news-card__tag {
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 12px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	background: rgba(255, 255, 255, .16);
	backdrop-filter: blur(8px);
}

.news-card__tag i {
	margin-right: 6px;
}

.news-card__body {
	display: flex;
	flex-direction: column;
	min-height: 260px;
	padding: 20px;
}

.news-card__date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	color: #8492a6;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
}

.news-card__title {
	display: -webkit-box;
	min-height: 53px;
	margin-bottom: 10px;
	overflow: hidden;
	color: #021648;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.25;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-card__text {
	display: -webkit-box;
	min-height: 44px;
	overflow: hidden;
	color: #5f6b7a;
	font-size: 15px;
	line-height: 1.45;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 18px;
	color: #025cc5;
	font-weight: 800;
	line-height: 1.2;
}

@media (max-width:767px) {
	.catalog-card__body {
		padding: 15px;
	}

	.catalog-card__text {
		min-height: auto;
	}

	.business-image,
	.business-image img {
		min-height: 360px;
	}

	.business-image__label {
		left: 14px;
		right: 14px;
		bottom: 14px;
		padding: 14px;
	}

	.business-image__label strong {
		font-size: 20px;
	}

	.business-content {
		padding-left: 0;
	}

	.business-text {
		font-size: 17px;
	}

	.business-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.business-point {
		min-height: 74px;
	}

	.business-btn {
		width: 100%;
	}

	.advantage-card {
		min-height: auto;
		padding: 20px;
	}

	.advantage-card__top {
		margin-bottom: 18px;
	}

	.advantage-card__title {
		font-size: 20px;
	}

	.process-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.process-grid:before {
		display: none;
	}

	.process-step {
		min-height: auto;
		padding: 20px;
	}

	.process-step__num {
		margin-bottom: 12px;
		font-size: 34px;
	}

	.process-step__title {
		font-size: 19px;
	}

	.company-panel {
		padding: 16px;
		border-radius: 18px;
	}

	.company-image,
	.company-image img {
		min-height: 360px;
	}

	.company-image__badge {
		left: 14px;
		right: 14px;
		bottom: 14px;
		padding: 14px;
	}

	.company-image__badge strong {
		font-size: 20px;
	}

	.company-content {
		padding-right: 0;
	}

	.company-text {
		font-size: 17px;
	}

	.company-stats {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.company-btn {
		width: 100%;
	}

	.contact-panel {
		padding: 20px;
		border-radius: 18px;
	}

	.contact-text {
		font-size: 17px;
	}

	.contact-list span {
		align-items: flex-start;
		font-size: 15px;
	}

	.catalog-hero__panel {
		padding: 20px;
		border-radius: 18px;
	}

	.catalog-hero__text {
		font-size: 17px;
	}

	.catalog-hero__media,
	.catalog-hero__media img {
		min-height: 240px;
	}

	.catalog-filter {
		padding: 16px;
	}

	.catalog-page-card__img {
		height: 210px;
	}

	.catalog-page-card__body {
		padding: 12px;
	}

	.catalog-page-card__cat {
		font-size: 11px;
	}

	.catalog-page-card__title {
		min-height: auto;
		font-size: 14px;
		line-height: 1.25;
	}

	.catalog-page-card__descr {
		min-height: 38px;
		font-size: 12px;
	}

	.catalog-page-card__price {
		font-size: 18px;
	}

	.catalog-page-card__actions {
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
	}

	.catalog-page-card__link,
	.catalog-page-card__cart {
		width: 100%;
		min-height: 38px;
		font-size: 13px;
	}

	.detail-hero {
		min-height: 460px;
		padding: 58px 0;
	}

	.detail-hero .page-hero__title {
		font-size: 34px;
	}

	.detail-hero__actions,
	.detail-article__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.promotion-countdown {
		display: flex;
	}

	.promotion-countdown__items {
		grid-template-columns: repeat(4, 1fr);
	}

	.promotion-countdown__items>span {
		min-width: 0;
		padding: 8px 4px;
	}

	.detail-btn {
		width: 100%;
		min-height: 44px;
	}

	.detail-article,
	.detail-aside,
	.detail-benefit {
		padding: 20px;
		border-radius: 18px;
	}

	.detail-article h2 {
		font-size: 25px;
	}

	.detail-article__cover {
		margin-bottom: 20px;
		border-radius: 16px;
	}

	.detail-article__cover img {
		height: 260px;
	}

	.detail-article p,
	.detail-article div,
	.detail-article li {
		font-size: 16px;
		line-height: 1.6;
	}

	.detail-aside {
		position: relative;
		top: auto;
	}

	.detail-related {
		padding: 16px;
		border-radius: 18px;
	}

	.detail-related__item {
		grid-template-columns: 78px minmax(0, 1fr);
	}

	.detail-related__img {
		min-height: 78px;
	}

	.detail-media {
		min-height: 300px;
		border-radius: 18px;
	}

	.promo-card__img {
		height: 300px;
	}

	.promo-card__body {
		padding: 18px;
	}

	.promo-card__title {
		font-size: 20px;
	}

	.promo-card__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.promotions-page__head {
		align-items: flex-start;
		flex-direction: column;
		padding: 18px;
		border-radius: 18px;
	}

	.promotions-page__head h2 {
		font-size: 30px;
	}

	.promotions-page__catalog {
		width: 100%;
	}

	.promotions-page-card {
		border-radius: 18px;
	}

	.promotions-page-card__media {
		height: 230px;
	}

	.promotions-page-card__body {
		padding: 18px;
	}

	.promotions-page-card__title {
		font-size: 20px;
	}

	.promotions-page-card__text {
		font-size: 14px;
		-webkit-line-clamp: 2;
	}

	.marketing-hero__actions,
	.marketing-cta__panel {
		align-items: stretch;
		flex-direction: column;
	}

	.marketing-btn {
		width: 100%;
		min-height: 46px;
	}

	.marketing-panel,
	.marketing-step,
	.marketing-info-card,
	.marketing-sticky,
	.marketing-cta__panel {
		padding: 20px;
		border-radius: 18px;
	}

	.marketing-panel h2,
	.marketing-sticky h2,
	.marketing-cta__panel h2 {
		font-size: 27px;
	}

	.marketing-section-head h2 {
		font-size: 31px;
	}

	.marketing-panel__line {
		align-items: flex-start;
		flex-direction: column;
	}

	.marketing-step h3,
	.marketing-info-card h3 {
		font-size: 19px;
	}

	.marketing-sticky {
		position: relative;
		top: auto;
	}

	.marketing-term summary {
		min-height: 62px;
		padding: 0 16px;
		font-size: 16px;
	}

	.marketing-term summary span i {
		width: 34px;
		height: 34px;
	}

	.marketing-term p {
		padding: 0 16px 18px;
		font-size: 15px;
	}

	.marketing-legacy-group {
		padding: 14px;
		border-radius: 18px;
	}

	.marketing-legacy-title {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.marketing-legacy-title h3 {
		font-size: 22px;
	}

	.marketing-legacy-accordion .card {
		border-radius: 16px;
	}

	.marketing-legacy-accordion .card-title {
		min-height: 62px;
		padding: 0 50px 0 14px;
		font-size: 15px;
	}

	.marketing-legacy-accordion .card-title i {
		flex-basis: 34px;
		width: 34px;
		height: 34px;
	}

	.marketing-legacy-accordion .card-toggle-icon {
		right: 12px;
	}

	.marketing-legacy-accordion .card-block {
		padding: 0 16px 18px;
	}

	.marketing-legacy-accordion .card-block p {
		font-size: 15px;
		line-height: 1.6;
	}

	.news-card__img {
		height: 220px;
	}

	.news-card__body {
		min-height: auto;
		padding: 17px;
	}

	.news-card__title {
		font-size: 19px;
	}
}

.product-card {
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(2, 22, 72, .08);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
	transform: translateY(-4px);
	border-color: rgba(2, 92, 197, .22);
	box-shadow: 0 16px 42px rgba(2, 22, 72, .14);
}

.product-card__img {
	position: relative;
	display: block;
	height: 480px;
	overflow: hidden;
	background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.product-card__img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .25s ease;
}

.catalog-product-card .product-card__img {
	height: 360px;
}

.product-card:hover .product-card__img img {
	transform: scale(1.04);
}

.home-product-card {
	display: flex;
	flex-direction: column;
}

.home-product-card .product-card__img {
	height: 320px;
}

.home-product-card .product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.home-product-card .product-card__btn {
	margin-top: auto;
}

.product-page {
	overflow: hidden;
	background: linear-gradient(180deg, #f7faff 0%, #fff 46%, #eef5ff 100%);
}

.product-hero {
	padding: 28px 0 34px;
}

.product-section {
	padding: 34px 0;
}

.product-section--info {
	padding-top: 18px;
}

.product-section--extra {
	padding-top: 0;
}

.product-breadcrumb {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 18px;
	color: #6b7788;
	font-size: 14px;
	font-weight: 800;
}

.product-breadcrumb a {
	color: #025cc5;
	text-decoration: none;
}

.product-breadcrumb i {
	color: #9aa5b1;
	font-size: 11px;
}

.product-gallery,
.product-summary,
.product-tabs,
.product-reviews,
.product-review-form {
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 18px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 18px 46px rgba(2, 22, 72, .08);
}

.product-gallery {
	padding: 18px;
}

.product-gallery__main {
	position: relative;
	display: block;
	overflow: hidden;
	height: 560px;
	border-radius: 14px;
	background: #fff;
}

.product-gallery__main img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.product-gallery__badge {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 6px 12px;
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	background: linear-gradient(135deg, #e53935, #ff6b3d);
	box-shadow: 0 8px 18px rgba(229, 57, 53, .24);
}

.product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.product-gallery__thumb {
	overflow: hidden;
	display: block;
	aspect-ratio: 1;
	border: 2px solid transparent;
	border-radius: 10px;
	background: #eef3f8;
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
	border-color: #025cc5;
}

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

.product-summary {
	padding: 32px;
}

.product-summary__category {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.product-summary__category span {
	color: #8492a6;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.product-summary__category a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 12px;
	border-radius: 999px;
	color: #025cc5;
	font-weight: 800;
	text-decoration: none;
	background: rgba(2, 92, 197, .08);
}

.product-summary__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.product-summary__head h1 {
	margin: 0;
	color: #021648;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.08;
}

.product-copy {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(2, 92, 197, .18);
	border-radius: 12px;
	color: #025cc5;
	background: #fff;
	cursor: pointer;
}

.product-summary__intro {
	margin-top: 20px;
	color: #445165;
	font-size: 16px;
	line-height: 1.62;
}

.product-summary__intro p:last-child {
	margin-bottom: 0;
}

.product-buy {
	margin-top: 28px;
	padding: 22px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 16px;
	background: #f8fbff;
}

.product-buy__label {
	display: block;
	margin-bottom: 7px;
	color: #8492a6;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.product-buy__price {
	color: #021648;
	font-size: 36px;
	font-weight: 900;
	line-height: 1;
}

.product-buy__note {
	margin-top: 16px;
	padding: 11px 14px;
	border-radius: 12px;
	color: #025cc5;
	font-size: 14px;
	font-weight: 700;
	background: rgba(2, 92, 197, .08);
}

.product-buy__actions {
	display: block;
	margin-top: 18px;
}

.product-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 18px;
	border: 0;
	border-radius: 12px;
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 12px 28px rgba(2, 92, 197, .22);
	cursor: pointer;
}

.product-buy__actions .product-action {
	width: 100%;
}

.product-action:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(2, 92, 197, .3);
}

.product-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.product-share>span {
	color: #8492a6;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.product-tabs {
	overflow: hidden;
}

.product-tabs--secondary {
	background: rgba(255, 255, 255, .94);
}

.product-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 14px;
	border-bottom: 1px solid rgba(2, 22, 72, .08);
}

.product-tabs__nav button {
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 12px;
	color: #021648;
	font-weight: 900;
	background: #fff;
	cursor: pointer;
}

.product-tabs__nav button.active {
	border-color: transparent;
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 12px 28px rgba(2, 92, 197, .18);
}

.product-tabs__content {
	padding: 28px;
}

.product-tab {
	display: none;
}

.product-tab.active {
	display: block;
}

.product-tab,
.product-tab p,
.product-tab li,
.product-tab div {
	color: #344154;
	font-size: 16px;
	line-height: 1.68;
}

.product-tab h1,
.product-tab h2,
.product-tab h3,
.product-tab h4,
.product-tab h5 {
	color: #021648;
	font-weight: 900;
}

.product-tab table {
	width: 100%;
	max-width: 100%;
	margin: 16px 0;
	border-collapse: collapse;
}

.product-tab table td,
.product-tab table th {
	padding: 10px;
	border: 1px solid rgba(2, 22, 72, .12);
}

.product-pack {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin-bottom: 22px;
}

.product-pack__group {
	padding: 16px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 14px;
	background: #f8fbff;
}

.product-pack__group h3 {
	margin: 0 0 10px;
	font-size: 17px;
}

.product-pack__group p {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin: 8px 0;
}

.product-pack__group a {
	color: #025cc5;
	font-weight: 800;
}

.product-section__head {
	margin-bottom: 14px;
	text-align: center;
}

.product-section__head span {
	display: inline-flex;
	margin-bottom: 6px;
	color: #025cc5;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.product-section__head h2,
.product-review-form h2 {
	margin: 0;
	color: #021648;
	font-weight: 900;
}

.product-reviews {
	max-height: 640px;
	padding: 18px;
	overflow-y: auto;
}

.product-review {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(2, 22, 72, .08);
}

.product-review:last-child {
	border-bottom: 0;
}

.product-review img {
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	object-fit: cover;
}

.product-review h3 {
	margin: 0 0 6px;
	color: #021648;
	font-size: 17px;
	font-weight: 900;
}

.product-review div div {
	color: #5f6b7a;
	line-height: 1.55;
}

.product-empty {
	padding: 34px 18px;
	color: #8492a6;
	text-align: center;
	font-weight: 800;
}

.product-review-form {
	padding: 24px;
}

.product-review-form textarea {
	margin-top: 16px;
}

.product-review-form--guest p {
	margin: 14px 0 18px;
	color: #5f6b7a;
}

.product-certificate {
	position: relative;
	overflow: hidden;
	display: block;
	height: 260px;
	border-radius: 14px;
	background: #eef3f8;
	box-shadow: 0 12px 30px rgba(2, 22, 72, .08);
}

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

.product-certificate span {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
	opacity: 0;
	background: rgba(2, 22, 72, .42);
	transition: opacity .2s ease;
}

.product-certificate:hover span {
	opacity: 1;
}

@media (max-width: 991px) {
	.product-hero {
		padding: 24px 0 30px;
	}

	.product-section {
		padding: 30px 0;
	}

	.product-section--info {
		padding-top: 16px;
	}

	.product-gallery__main,
	.product-gallery__main img {
		height: 420px;
	}

	.product-summary {
		padding: 24px;
	}

	.product-summary__head h1 {
		font-size: 34px;
	}
}

@media (max-width: 575px) {
	.product-hero {
		padding: 18px 0 24px;
	}

	.product-section {
		padding: 24px 0;
	}

	.product-section--info {
		padding-top: 12px;
	}

	.product-gallery,
	.product-summary,
	.product-tabs,
	.product-reviews,
	.product-review-form {
		border-radius: 14px;
	}

	.product-gallery {
		padding: 10px;
	}

	.product-gallery__main,
	.product-gallery__main img {
		height: 320px;
	}

	.product-gallery__thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.product-summary {
		padding: 18px;
	}

	.product-summary__head h1 {
		font-size: 28px;
	}

	.product-copy {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
	}

	.product-buy {
		padding: 16px;
	}

	.product-buy__price {
		font-size: 30px;
	}

	.product-tabs__nav {
		display: grid;
		grid-template-columns: 1fr;
	}

	.product-tabs__content {
		padding: 18px;
	}

	.product-tab,
	.product-tab p,
	.product-tab li,
	.product-tab div {
		font-size: 15px;
		line-height: 1.55;
	}

	.product-review {
		align-items: flex-start;
	}

	.product-certificate {
		height: 210px;
	}
}

.product-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 10px;
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	background: linear-gradient(135deg, #e53935, #ff6b3d);
	box-shadow: 0 8px 18px rgba(229, 57, 53, .24);
}

.product-card__body {
	padding: 18px;
}

.product-card__art {
	margin-bottom: 6px;
	color: #8492a6;
	font-size: 13px;
	line-height: 1.2;
}

.product-card__title {
	min-height: 48px;
	margin-bottom: 12px;
	color: rgb(2, 22, 72);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
}

.product-card__descr {
	display: -webkit-box;
	min-height: 42px;
	margin-bottom: 14px;
	overflow: hidden;
	color: #59677a;
	font-size: 14px;
	line-height: 1.45;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product-card__prices {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 16px;
}

.product-card__price {
	color: rgb(2, 22, 72);
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
}

.product-card__old-price {
	color: #9aa5b1;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-decoration: line-through;
}

.product-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 44px;
	border: 0;
	border-radius: 10px;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	background: linear-gradient(135deg, #025cc5, #021648);
	transition: transform .2s ease, box-shadow .2s ease;
}

.product-card__note {
	margin: -4px 0 12px;
	color: #59677a;
	font-size: 12px;
	font-weight: 800;
}

.product-card__btn:hover {
	color: #fff;
	box-shadow: 0 10px 22px rgba(2, 92, 197, .22);
	transform: translateY(-1px);
}

@media (max-width:767px) {
	.product-card__img,
	.catalog-product-card .product-card__img,
	.home-product-card .product-card__img {
		height: clamp(175px, 48vw, 190px);
		background: #fff;
	}

	.catalog-product-card .product-card__img img,
	.home-product-card .product-card__img img {
		object-fit: cover;
		object-position: center;
	}

	.catalog-products.py-5 {
		padding-top: 24px !important;
	}

	.catalog-filter + .row {
		margin-top: 18px !important;
	}

	.product-card__body {
		padding: 12px;
	}

	.product-card__art {
		font-size: 11px;
	}

	.product-card__title {
		min-height: auto;
		margin-bottom: 10px;
		font-size: 14px;
		line-height: 1.25;
	}

	.product-card__descr {
		min-height: 34px;
		margin-bottom: 10px;
		font-size: 12px;
		line-height: 1.35;
	}

	.product-card__prices {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
		margin-bottom: 12px;
	}

	.product-card__price {
		font-size: 19px;
	}

	.product-card__old-price {
		font-size: 14px;
	}

	.product-card__btn {
		min-height: 38px;
		gap: 6px;
		border-radius: 8px;
		font-size: 13px;
	}

	.product-card__badge {
		top: 10px;
		left: 10px;
		min-height: 24px;
		padding: 4px 8px;
		font-size: 11px;
	}
}

.catalog-card,
.catalog-page-card,
.product-card,
.promo-card,
.promotions-page-card,
.news-card,
.direction-card,
.advantage-card,
.process-step,
.company-panel,
.contact-panel,
.business-point,
.company-stat,
.contact-note {
	background-color: rgba(255, 255, 255, .82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.business-image__label,
.company-image__badge,
.catalog-card__img span,
.news-card__tag {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.catalog-card,
.catalog-page-card,
.product-card,
.promo-card,
.news-card,
.direction-card,
.advantage-card,
.process-step,
.business-point,
.company-stat {
	will-change: transform;
}

.business-point,
.company-stat,
.contact-note {
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.business-point:hover,
.company-stat:hover,
.contact-note:hover {
	transform: translateY(-3px);
	border-color: rgba(2, 92, 197, .2);
	box-shadow: 0 14px 34px rgba(2, 22, 72, .12);
}

.product-card:hover .product-card__btn,
.promo-card:hover .promo-card__link,
.promotions-page-card:hover .promotions-page-card__footer,
.news-card:hover .news-card__link,
.catalog-card:hover .catalog-card__link {
	transform: translateX(2px);
}

.main-page,
.main-wrapper {
	overflow: hidden;
	background: linear-gradient(180deg, #f7faff 0%, #fff 45%, #eef5ff 100%);
}

.main-container {
	background: transparent;
}

.breadcrumbs__section {
	position: relative;
	overflow: hidden;
	min-height: 270px;
	display: flex;
	align-items: center;
	color: #fff;
	background-color: #021648;
	background-position: center;
	background-size: cover;
}

.breadcrumbs__section:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(135deg, rgba(2, 92, 197, .88), rgba(2, 22, 72, .9));
}

.breadcrumbs__section:after {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -160px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
}

.breadcrumbs__section .container,
.breadcrumbs__wrapper {
	position: relative;
	z-index: 1;
}

.breadcrumbs__wrapper {
	width: 100%;
}

.breadcrumbs__title h2,
.breadcrumbs__wrapper h2 {
	margin: 0 0 12px;
	font-size: 44px;
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
	text-transform: uppercase;
}

.breadcrumbs__subtitle h3,
.breadcrumbs__wrapper h5 {
	color: rgba(255, 255, 255, .82);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0;
}

.breadcrumb {
	gap: 10px;
	margin: 0;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 999px;
	background: rgba(255, 255, 255, .14);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.breadcrumb,
.breadcrumb a,
.breadcrumb .active {
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.breadcrumb a:hover {
	color: rgba(255, 255, 255, .78);
}

.section_title,
.main-container h1.font__family-montserrat,
.main-container h2.font__weight-bold,
.main-container h3.section_title {
	display: inline-block;
	color: transparent;
	font-weight: 900;
	letter-spacing: 0;
	background: linear-gradient(135deg, #025cc5 0%, #021648 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.shape-box,
.brk-ic-left-slide,
.video-wrap,
.alert-clean,
.brk-form,
.brk-form-strict,
.contact-panel-legacy,
.main-container .card,
.main-container .table,
.main-container article,
.warehouse-card {
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 20px;
	background: rgba(255, 255, 255, .84);
	box-shadow: 0 18px 46px rgba(2, 22, 72, .09);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.shape-box,
.brk-ic-left-slide,
.video-wrap {
	overflow: hidden;
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.shape-box:hover,
.brk-ic-left-slide:hover,
.video-wrap:hover,
.main-container .card:hover,
.warehouse-card:hover {
	transform: translateY(-5px);
	border-color: rgba(2, 92, 197, .2);
	box-shadow: 0 26px 58px rgba(2, 22, 72, .14);
}

.shape-box img,
.brk-ic-left-slide__img,
.video-wrap .overlay-image {
	transition: transform .28s ease;
}

.shape-box:hover img,
.brk-ic-left-slide:hover .brk-ic-left-slide__img,
.video-wrap:hover .overlay-image {
	transform: scale(1.04);
}

.btn-gradient,
.btn-backgrounds,
.icon__btn,
.main-container button[type="submit"],
.main-container input[type="submit"] {
	border: 0;
	border-radius: 12px;
	color: #fff;
	font-weight: 800;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 14px 30px rgba(2, 92, 197, .18);
	transition: transform .2s ease, box-shadow .2s ease;
}

.btn-gradient:hover,
.btn-backgrounds:hover,
.icon__btn:hover,
.main-container button[type="submit"]:hover,
.main-container input[type="submit"]:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(2, 92, 197, .24);
}

.brk-form input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
.brk-form textarea,
.brk-form select,
.brk-form-strict input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
.brk-form-strict textarea,
.brk-form-strict select,
.main-container input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
.main-container textarea,
.main-container select {
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	border: 1px solid rgba(2, 22, 72, .1);
	border-radius: 12px;
	color: #021648;
	line-height: 1.35;
	background: rgba(255, 255, 255, .92);
	box-shadow: none;
}

.brk-form textarea,
.brk-form-strict textarea,
.main-container textarea {
	min-height: 118px;
	resize: vertical;
}

.brk-form select,
.brk-form-strict select,
.main-container select {
	padding-right: 42px;
}

.brk-form input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):focus,
.brk-form textarea:focus,
.brk-form select:focus,
.brk-form-strict input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):focus,
.brk-form-strict textarea:focus,
.brk-form-strict select:focus,
.main-container input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):focus,
.main-container textarea:focus,
.main-container select:focus {
	border-color: rgba(2, 92, 197, .45);
	outline: 0;
	box-shadow: 0 0 0 4px rgba(2, 92, 197, .1);
}

.main-container .table {
	overflow: hidden;
}

.main-container .table th {
	color: #021648;
	font-weight: 900;
	background: rgba(2, 92, 197, .08);
}

.main-container .table td {
	vertical-align: middle;
}

.pagination .page-link,
.pagination a {
	border: 1px solid rgba(2, 22, 72, .08);
	color: #021648;
	font-weight: 800;
	background: rgba(255, 255, 255, .9);
}

.pagination .active .page-link,
.pagination .page-link:hover,
.pagination a:hover {
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
}

.scroll-animate.is-visible .shape-box,
.scroll-animate.is-visible .brk-ic-left-slide,
.scroll-animate.is-visible .video-wrap {
	transform: translateY(0);
}

.section-title-gradient,
.product-card__btn,
.promo-card__link,
.business-btn,
.company-btn,
.contact-btn,
.process-step__arrow {
	transition-property: transform, box-shadow, color, background;
	transition-duration: .2s;
	transition-timing-function: ease;
}

.auth-body {
	min-height: 100vh;
	color: #021648;
	background:
		radial-gradient(circle at 12% 12%, rgba(2, 92, 197, .16), transparent 30%),
		radial-gradient(circle at 88% 20%, rgba(255, 255, 255, .55), transparent 28%),
		linear-gradient(135deg, #eef5ff 0%, #f8fbff 42%, #e7f1ff 100%);
}

.auth-page {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.auth-bg-shape {
	position: fixed;
	z-index: 0;
	border-radius: 999px;
	pointer-events: none;
	filter: blur(2px);
}

.auth-bg-shape--one {
	top: -160px;
	right: -120px;
	width: 420px;
	height: 420px;
	background: rgba(2, 92, 197, .14);
}

.auth-bg-shape--two {
	left: -170px;
	bottom: -180px;
	width: 520px;
	height: 520px;
	background: rgba(2, 22, 72, .1);
}

.auth-shell {
	position: relative;
	z-index: 1;
	padding: 32px 0;
}

.auth-card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .78);
	border-radius: 28px;
	background: rgba(255, 255, 255, .76);
	box-shadow: 0 34px 90px rgba(2, 22, 72, .16);
	backdrop-filter: blur(18px);
}

.auth-side {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 46px;
	color: #fff;
	background:
		linear-gradient(145deg, rgba(2, 92, 197, .94), rgba(2, 22, 72, .98)),
		url("/images/banners/businessman-g01108b07e_1920.jpg") center / cover;
}

.auth-side:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(2, 92, 197, .88), rgba(2, 22, 72, .96));
}

.auth-side>* {
	position: relative;
	z-index: 1;
}

.auth-logo {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 58px;
}

.auth-logo img {
	display: block;
	width: 170px;
	max-width: 100%;
}

.auth-kicker {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 12px;
	color: #025cc5;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.auth-side .auth-kicker {
	color: rgba(255, 255, 255, .8);
}

.auth-side h1 {
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(38px, 5vw, 54px);
	font-weight: 900;
	line-height: .98;
}

.auth-side p {
	max-width: 430px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, .78);
	font-size: 17px;
	line-height: 1.65;
}

.auth-side__list {
	display: grid;
	gap: 12px;
	margin-top: auto;
}

.auth-side__list span {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, .9);
	font-weight: 800;
}

.auth-side__list i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: #025cc5;
	background: #fff;
}

.auth-back {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	margin-top: 34px;
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	transition: transform .2s ease, opacity .2s ease;
}

.auth-back:hover {
	color: #fff;
	opacity: .82;
	transform: translateX(-4px);
}

.auth-form-panel {
	display: flex;
	align-items: center;
	min-height: 100%;
	padding: 42px 48px;
}

.auth-form {
	width: 100%;
	padding: clamp(24px, 3vw, 36px);
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 22px;
	background: rgba(255, 255, 255, .74);
	box-shadow: 0 18px 48px rgba(2, 22, 72, .06);
}

.auth-form__head {
	margin-bottom: 26px;
}

.auth-form__head h2 {
	margin: 0;
	color: #021648;
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 900;
	line-height: 1.05;
}

.auth-form .form-row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -8px;
	margin-left: -8px;
}

.auth-form .form-row>[class*="col-"] {
	padding-right: 8px;
	padding-left: 8px;
}

.auth-form .form-group {
	margin-bottom: 16px;
}

.auth-form label {
	display: block;
	margin-bottom: 7px;
	color: #344154;
	font-size: 13px;
	font-weight: 800;
}

.auth-form .form-control,
.auth-modal .form-control {
	height: 50px;
	padding: 12px 16px;
	border: 1px solid rgba(2, 22, 72, .1);
	border-radius: 14px;
	color: #021648;
	font-weight: 700;
	background: rgba(255, 255, 255, .9);
	box-shadow: none;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.auth-form .form-control:focus,
.auth-modal .form-control:focus {
	border-color: rgba(2, 92, 197, .52);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(2, 92, 197, .1);
}

.auth-input-icon {
	position: relative;
}

.auth-input-icon .form-control {
	padding-right: 52px;
}

.auth-input-icon i,
.auth-input-icon span {
	position: absolute;
	top: 50%;
	right: 15px;
	z-index: 2;
	color: #025cc5;
	transform: translateY(-50%);
}

.auth-sponsor {
	margin-bottom: 22px;
	padding: 15px 18px;
	border: 1px solid rgba(2, 92, 197, .12);
	border-radius: 18px;
	color: #021648;
	font-weight: 700;
	text-align: center;
	background: rgba(2, 92, 197, .06);
}

.auth-tabs {
	margin-bottom: 14px;
}

.auth-tabs__nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	padding: 6px;
	margin: 0 0 14px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 16px;
	list-style: none;
	background: rgba(2, 22, 72, .04);
}

.auth-tabs__nav .brk-tab {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	border-radius: 12px;
	color: #59677a;
	font-weight: 900;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.auth-tabs__nav .brk-tab.active {
	color: #fff;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 14px 30px rgba(2, 92, 197, .2);
}

.auth-tabs__content .brk-tab-item {
	display: none;
}

.auth-captcha {
	display: grid;
	grid-template-columns: minmax(120px, 1fr) 34px minmax(100px, 1fr);
	align-items: center;
	gap: 10px;
	margin: 6px 0 18px;
}

.auth-captcha img {
	/* height: 58px; */
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(2, 22, 72, .08);
}

.auth-captcha i {
	color: #025cc5;
	transition: transform .2s ease;
}

.auth-captcha i:hover {
	transform: rotate(90deg);
}

.auth-agreement {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 16px 0 20px;
	color: #344154;
	font-size: 14px;
	line-height: 1.45;
}

.auth-agreement--compact {
	margin: 0;
}

.auth-agreement input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: #025cc5;
}

.auth-agreement label {
	margin: 0;
	color: inherit;
	font-size: inherit;
	font-weight: 700;
}

.auth-agreement a,
.auth-inline-link,
.auth-bottom-link a {
	color: #025cc5;
	font-weight: 900;
	text-decoration: none;
}

.auth-agreement a:hover,
.auth-inline-link:hover,
.auth-bottom-link a:hover {
	color: #021648;
}

.auth-form-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 12px 0 24px;
}

.auth-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 54px;
	border: 0;
	border-radius: 16px;
	color: #fff;
	font-weight: 900;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 18px 38px rgba(2, 92, 197, .24);
	transition: transform .2s ease, box-shadow .2s ease;
}

.auth-submit:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 24px 48px rgba(2, 92, 197, .32);
}

.auth-submit--modal {
	width: auto;
	min-width: 190px;
	padding: 0 22px;
}

.auth-bottom-link {
	margin-top: 20px;
	color: #59677a;
	font-weight: 700;
	text-align: center;
}

.auth-alert {
	border: 0;
	border-radius: 16px;
	color: #8b1020;
	font-weight: 800;
	background: rgba(255, 61, 84, .1);
}

.auth-modal .modal-content {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 22px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 28px 70px rgba(2, 22, 72, .18);
}

.auth-modal .modal-header {
	border-bottom: 1px solid rgba(2, 22, 72, .08);
}

.auth-modal .modal-title {
	color: #021648;
	font-weight: 900;
}

.breadcrumbs__section {
	position: relative;
	overflow: hidden;
	min-height: 270px;
	color: #fff;
	background:
		radial-gradient(circle at 15% 25%, rgba(2, 92, 197, .45), transparent 34%),
		linear-gradient(135deg, #025cc5, #021648);
}

.breadcrumbs__section:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(2, 22, 72, .82), rgba(2, 92, 197, .62)),
		var(--breadcrumbs-bg, none);
	background-size: cover;
	background-position: center;
}

.breadcrumbs__section:after {
	content: "";
	position: absolute;
	right: -90px;
	bottom: -150px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
}

.breadcrumbs__section .brk-abs-bg-overlay {
	display: none;
}

.breadcrumbs__wrapper {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 270px;
	padding: 84px 0 64px;
}

.breadcrumbs__title h2,
.breadcrumbs__subtitle h3 {
	color: #fff !important;
	text-align: left;
	text-shadow: 0 14px 34px rgba(2, 22, 72, .2);
}

.breadcrumbs__title h2 {
	margin: 0;
	font-size: clamp(34px, 5vw, 62px);
	font-weight: 900;
	line-height: 1.02;
}

.breadcrumbs__subtitle h3 {
	color: rgba(255, 255, 255, .82) !important;
	font-size: 17px;
	font-weight: 700;
	text-transform: none !important;
}

.breadcrumbs__subtitle .breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 14px 0 0;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 999px;
	color: #fff !important;
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(12px);
}

.breadcrumbs__subtitle .breadcrumb li,
.breadcrumbs__subtitle .breadcrumb a {
	color: #fff !important;
	font-weight: 800;
}

.cart-hero {
	min-height: 250px;
	background:
		radial-gradient(circle at 18% 70%, rgba(255, 255, 255, .2), transparent 30%),
		linear-gradient(135deg, #025cc5 0%, #021648 100%);
}

.cart-hero:before {
	background:
		linear-gradient(135deg, rgba(2, 22, 72, .78), rgba(2, 92, 197, .58)),
		var(--breadcrumbs-bg, none);
	background-size: cover;
	background-position: center;
}

.cart-hero:after {
	right: auto;
	left: 34%;
	bottom: -170px;
	width: 420px;
	height: 420px;
	background: rgba(255, 255, 255, .1);
}

.cart-hero .breadcrumbs__wrapper {
	min-height: 250px;
}

.cart-hero .breadcrumbs__title h2 {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.cart-hero .breadcrumbs__title h2:before {
	content: "\f07a";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 18px;
	color: #fff;
	font-family: "Font Awesome 6 Free";
	font-size: 24px;
	font-weight: 900;
	background: rgba(255, 255, 255, .13);
	box-shadow: 0 18px 44px rgba(2, 22, 72, .16);
}

.cart-hero .breadcrumbs__subtitle .breadcrumb {
	border-radius: 16px;
}

.cart-hero .breadcrumbs__subtitle .breadcrumb .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	color: rgba(255, 255, 255, .72);
	font-size: 11px;
}

.main-wrapper,
.main-container {
	background:
		radial-gradient(circle at 95% 8%, rgba(2, 92, 197, .08), transparent 24%),
		#f7fbff;
}

.brk-sc-shop-item__main,
.brk-cart,
.brk-checkout-order {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .78);
	border-radius: 24px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 28px 70px rgba(2, 22, 72, .1);
	backdrop-filter: blur(16px);
}

.brk-sc-shop-item__main {
	padding: 28px;
}

.product_images_block {
	display: grid;
	gap: 14px;
}

.product_main_image,
.product_gallery_images a {
	overflow: hidden;
	border-radius: 20px;
	background: #edf4fb;
}

.product_main_image .product_gallery_img>div {
	width: min(520px, 82vw);
	min-height: 480px;
	background-size: cover;
	background-position: center;
	transition: transform .25s ease;
}

.product_main_image:hover .product_gallery_img>div {
	transform: scale(1.035);
}

.product_gallery_images {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.product_gallery_images a>div {
	width: 74px;
	height: 74px;
	background-size: cover;
	background-position: center;
}

.brk-sc-shop-item__info {
	padding: 12px 0 12px 18px;
}

.brk-sc-category__title,
.brk-sc-category__items a,
.brk-sc-category__items span {
	color: #59677a !important;
	font-weight: 800;
}

.product_name {
	color: #021648 !important;
	font-size: clamp(28px, 4vw, 46px) !important;
	font-weight: 900 !important;
	line-height: 1.08 !important;
}

.brk-sc-shop-item__info .btn,
.add_cart,
#order_finish {
	border: 0 !important;
	border-radius: 14px !important;
	color: #fff !important;
	font-weight: 900 !important;
	background: linear-gradient(135deg, #025cc5, #021648) !important;
	box-shadow: 0 18px 38px rgba(2, 92, 197, .22);
	transition: transform .2s ease, box-shadow .2s ease;
}

.brk-sc-shop-item__info .btn:hover,
.add_cart:hover,
#order_finish:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 48px rgba(2, 92, 197, .3);
}

.brk-tabs,
.brk-tabs-content,
.brk-tab-item {
	color: #344154;
}

.brk-tabs-nav {
	border-radius: 16px;
}

.brk-tabs-nav .brk-tab {
	transition: color .2s ease, background .2s ease, transform .2s ease;
}

.brk-tabs-nav .brk-tab:hover {
	transform: translateY(-1px);
}

.brk-cart {
	padding: 22px;
}

.brk-cart__table-scroll {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	border-radius: 16px;
}

.brk-cart__table-scroll::-webkit-scrollbar {
	height: 8px;
}

.brk-cart__table-scroll::-webkit-scrollbar-track {
	border-radius: 999px;
	background: rgba(2, 22, 72, .06);
}

.brk-cart__table-scroll::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(2, 92, 197, .28);
}

.brk-cart table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 12px;
}

.brk-cart thead th {
	padding: 0 14px 8px;
	color: #59677a;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.brk-cart tbody tr {
	background: rgba(255, 255, 255, .82);
	box-shadow: 0 14px 34px rgba(2, 22, 72, .06);
	transition: transform .2s ease, box-shadow .2s ease;
}

.brk-cart tbody tr:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 44px rgba(2, 22, 72, .1);
}

.brk-cart tbody td {
	padding: 14px;
	vertical-align: middle;
	border-top: 1px solid rgba(2, 22, 72, .07);
	border-bottom: 1px solid rgba(2, 22, 72, .07);
	color: #344154;
}

.brk-cart tbody td:first-child {
	border-left: 1px solid rgba(2, 22, 72, .07);
	border-radius: 16px 0 0 16px;
}

.brk-cart tbody td:last-child {
	border-right: 1px solid rgba(2, 22, 72, .07);
	border-radius: 0 16px 16px 0;
}

.brk-cart__header,
.brk-cart__footer,
.brk-checkout-order__header,
.brk-checkout-order__footer {
	border-color: rgba(2, 22, 72, .08) !important;
	background: rgba(255, 255, 255, .66);
}

.brk-cart__title,
.brk-checkout-order__header h1 {
	color: #021648 !important;
	font-weight: 900 !important;
	text-decoration: none;
}

.brk-cart__product,
.brk-checkout-order-item {
	border-radius: 18px;
	background: rgba(255, 255, 255, .78);
	transition: transform .2s ease, box-shadow .2s ease;
}

.brk-cart__product:hover,
.brk-checkout-order-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(2, 22, 72, .08);
}

.brk-cart__img,
.brk-checkout-order-item__img {
	width: 92px;
	height: 92px;
	border-radius: 14px;
	background: #edf4fb;
	object-fit: cover;
}

.brk-cart__remove {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	margin-right: 12px;
	border-radius: 11px;
	color: #9aa6b5;
	background: rgba(2, 22, 72, .05);
	transition: color .2s ease, background .2s ease;
}

.brk-cart__remove:before {
	content: "\f00d";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	line-height: 1;
}

.brk-cart__remove:hover {
	color: #d43f3a;
	background: rgba(212, 63, 58, .08);
}

.brk-cart__count {
	display: inline-grid;
	grid-template-columns: 30px 54px 30px;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.brk-cart__count .change_cartcount {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 34px;
	border-radius: 10px;
	background: rgba(2, 92, 197, .08);
}

.brk-cart__count .change_cartcount i {
	font-size: 18px !important;
}

.brk-cart__count input {
	width: 54px;
	height: 34px;
	border: 1px solid rgba(2, 22, 72, .1);
	border-radius: 10px;
	color: #021648;
	text-align: center;
	font-weight: 900;
	background: #fff;
	-moz-appearance: textfield;
	appearance: textfield;
}

.brk-cart__count input[type="number"]::-webkit-outer-spin-button,
.brk-cart__count input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.brk-cart__footer-total,
.brk-checkout-order__footer-section {
	color: #021648;
}

.brk-cart__footer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
	gap: 18px;
	align-items: stretch;
	padding: 18px;
	border-radius: 18px;
}

.brk-cart__footer-coupon,
.brk-cart__footer-total {
	padding: 18px;
	border: 1px solid rgba(2, 22, 72, .07);
	border-radius: 16px;
	background: rgba(255, 255, 255, .78);
}

.brk-form-label {
	display: block;
	margin-bottom: 10px;
	color: #59677a;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.cart_delivery_list,
.brk-form-strict input,
.brk-form-strict textarea,
.brk-form-strict select,
.mySelector__button {
	width: 100%;
	min-height: 48px;
	border: 1px solid rgba(2, 22, 72, .1) !important;
	border-radius: 13px !important;
	color: #021648;
	background: #fff;
}

.cart_delivery_list {
	padding: 0 14px;
	font-weight: 800;
}

.brk-cart__footer-total-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 0;
}

.brk-cart__footer-total-item+.brk-cart__footer-total-item {
	border-top: 1px solid rgba(2, 22, 72, .07);
}

.brk-cart__lb-option-row {
	align-items: stretch;
	padding: 12px 0;
}

.brk-cart__lb-option {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 14px;
	border: 1px solid rgba(2, 92, 197, .12);
	border-radius: 14px;
	color: #344154;
	line-height: 1.45;
	background: rgba(2, 92, 197, .05);
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.brk-cart__lb-option:hover {
	border-color: rgba(2, 92, 197, .24);
	background: rgba(2, 92, 197, .08);
	box-shadow: 0 12px 28px rgba(2, 92, 197, .08);
}

.brk-cart__lb-option input[type="checkbox"] {
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	margin: 1px 0 0;
	border: 2px solid rgba(2, 92, 197, .35);
	border-radius: 7px;
	background: #fff;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.brk-cart__lb-option input[type="checkbox"]:checked {
	border-color: #025cc5;
	background: #025cc5;
	box-shadow: 0 8px 18px rgba(2, 92, 197, .18);
}

.brk-cart__lb-option input[type="checkbox"]:checked:after {
	content: "\f00c";
	position: absolute;
	inset: 50% auto auto 50%;
	color: #fff;
	font-family: "Font Awesome 6 Free";
	font-size: 12px;
	font-weight: 900;
	transform: translate(-50%, -50%);
}

.brk-cart__lb-option span {
	display: block;
	min-width: 0;
	padding-left: 0 !important;
}

.brk-cart__lb-option strong {
	color: #025cc5;
	white-space: nowrap;
}

.wrap_cart_choose_block {
	height: 100%;
	padding: 16px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 16px;
	background: rgba(255, 255, 255, .78);
}

.cart_choose_block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0;
	padding: 8px 0;
	border-top: 1px solid rgba(2, 22, 72, .06);
}

.cart_choose_block input {
	width: 72px;
	min-height: 36px;
	border: 1px solid rgba(2, 22, 72, .1);
	border-radius: 10px;
	text-align: center;
	font-weight: 900;
}

.brk-base-font-color {
	color: #025cc5 !important;
}

.wrap_checkout_pay_types {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.checkout_pay_types {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 132px;
	padding: 20px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 20px;
	background: rgba(255, 255, 255, .82);
	box-shadow: 0 14px 34px rgba(2, 22, 72, .06);
	cursor: pointer;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.checkout_pay_types:hover,
.checkout_pay_types.paytype_checked {
	border-color: rgba(2, 92, 197, .36);
	transform: translateY(-2px);
	box-shadow: 0 22px 46px rgba(2, 92, 197, .12);
}

.checkout_pay_types.paytype_disabled {
	opacity: .52;
	cursor: not-allowed;
}

.checkout_pay_types img {
	width: 70px;
	height: 70px;
	object-fit: contain;
}

.checkout_pay_types p {
	color: #344154;
}

.checkout_pay_types strong {
	color: #021648;
}

.brk-checkout-order__list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 16px;
	list-style: none;
}

.brk-checkout-order-item {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr) 110px 60px 120px;
	gap: 12px;
	align-items: center;
	padding: 12px;
}

.brk-checkout-order-item__img {
	width: 82px;
	height: 82px;
}

.brk-checkout-order-item__title {
	margin: 0;
	color: #021648;
}

.brk-checkout-order-item p {
	margin: 0;
}

.brk-checkout-order {
	position: relative;
	overflow: visible;
	margin-top: 0;
	padding: 22px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 18px;
	background: rgba(255, 255, 255, .88);
	box-shadow: 0 22px 60px rgba(2, 22, 72, .08);
}

.main-container .brk-form-strict {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.brk-checkout-order__header {
	padding: 8px 0 20px;
	border: 0 !important;
	background: transparent !important;
}

.brk-checkout-order__footer {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 12px;
	padding: 0;
	border: 0 !important;
	background: transparent !important;
}

.brk-checkout-order__footer-section {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 96px;
	padding: 18px;
	border: 1px solid rgba(2, 22, 72, .07);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 251, 255, .84));
	box-shadow: 0 12px 30px rgba(2, 22, 72, .05);
}

.brk-checkout-order__footer-section:last-child {
	border-right: 1px solid rgba(2, 22, 72, .07);
}

.brk-checkout-order__footer-section h3 {
	margin: 0;
	text-align: center;
}

.wrap_checkout_pay_types {
	width: 100%;
	padding: 0;
}

.checkout_pay_types {
	position: relative;
	min-height: 150px;
	border-width: 2px;
}

.checkout_pay_types.paytype_checked:after {
	content: "\f00c";
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	color: #fff;
	font-family: "Font Awesome 6 Free";
	font-size: 13px;
	font-weight: 900;
	background: #025cc5;
}

.checkout_pay_types.paytype_disabled {
	filter: grayscale(.15);
}

.checkout-pay-disabled,
.checkout_pay_types .cl_red {
	margin-top: 8px;
	color: #d43f3a !important;
	font-size: 13px;
	font-weight: 800;
}

.brk-checkout-order .p16 {
	position: relative;
	z-index: 5;
	margin-top: 18px;
	padding: 24px;
	border: 1px solid rgba(2, 22, 72, .08);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 251, 255, .86));
	box-shadow: 0 16px 38px rgba(2, 22, 72, .06);
}

.brk-checkout-order .p16>.row {
	row-gap: 14px;
}

.brk-checkout-order h4 {
	width: 100%;
	margin: 0 0 12px !important;
	color: #021648;
	font-size: 24px !important;
	line-height: 1.2 !important;
}

.brk-checkout-order .dashedline,
.brk-checkout-order .max_w_600 {
	color: #344154;
}

.brk-checkout-order textarea {
	min-height: 110px !important;
}

#sel_warehouse_town+.mySelector,
#sel_warehouse+.mySelector {
	margin-bottom: 4px;
	z-index: 50;
}

#order_finish {
	min-width: 280px;
	min-height: 56px;
	border: 0;
	border-radius: 14px;
	color: #fff;
	font-weight: 900;
	background: linear-gradient(135deg, #025cc5, #021648);
	box-shadow: 0 18px 38px rgba(2, 92, 197, .22);
}

.brk-checkout-order__list {
	overflow: visible;
	padding: 0 0 10px;
}

.brk-checkout-order-item {
	grid-template-columns: 86px minmax(0, 1fr) 120px 70px 130px;
	min-height: 116px;
	padding: 16px 18px;
	border: 1px solid rgba(2, 22, 72, .07);
}

.brk-checkout-order-item__title {
	font-size: 20px !important;
	line-height: 1.25 !important;
}

.brk-checkout-order-item__price,
.brk-checkout-order-item__count,
.brk-checkout-order-item__price-total {
	font-size: 15px;
}

.brk-checkout-order__footer.brk-form {
	display: block;
	margin-top: 18px;
	padding: 24px;
	border: 1px solid rgba(2, 22, 72, .08) !important;
	border-radius: 18px;
	background: rgba(255, 255, 255, .82) !important;
	box-shadow: 0 16px 38px rgba(2, 22, 72, .06);
}

.brk-checkout-order__footer.brk-form:before {
	content: "Способ оплаты";
	display: block;
	margin-bottom: 16px;
	color: #021648;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.2;
}

/* .brk-checkout-order .p16 h4:before {
	content: "04";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-right: 10px;
	border-radius: 11px;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	background: #025cc5;
	vertical-align: middle;
} */

.brk-checkout-order .p16>.row:first-child {
	padding-bottom: 16px;
}

.brk-checkout-order .p16>.row.mt-20 {
	position: relative;
	z-index: 10;
	margin-top: 6px !important;
	padding: 18px;
	border: 1px solid rgba(2, 92, 197, .12);
	border-radius: 16px;
	background: rgba(237, 244, 251, .62);
}

.brk-checkout-order .p16>.row.mt-20:before {
	content: "Выберите город, затем склад для выдачи заказа";
	display: block;
	width: 100%;
	margin: 0 15px 14px;
	color: #59677a;
	font-size: 14px;
	font-weight: 800;
}

.brk-checkout-order .mySelector {
	position: relative;
	z-index: 60;
}

.brk-checkout-order .mySelector__button {
	min-height: 54px;
	padding-left: 18px;
	box-shadow: 0 10px 24px rgba(2, 22, 72, .05);
}

.brk-checkout-order .mySelector__list {
	max-height: 220px;
	border-radius: 13px;
}

.brk-checkout-order .p16>.row.mt-20 .mySelector__list {
	top: auto;
	bottom: calc(100% + 8px);
}

.brk-checkout-order .mySelector__item {
	min-height: 38px;
	font-size: 14px;
}

.brk-checkout-order .d-flex.justify-content-center.flex-md-row.flex-column.py-3 {
	position: relative;
	z-index: 1;
	justify-content: flex-end !important;
	padding: 22px 0 0 !important;
}

.system-page {
	min-height: 100vh;
	background:
		radial-gradient(circle at 14% 18%, rgba(2, 92, 197, .2), transparent 30%),
		radial-gradient(circle at 86% 22%, rgba(255, 255, 255, .55), transparent 28%),
		linear-gradient(135deg, #025cc5, #021648);
}

.system-hero {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 72px);
	padding: 120px 0 70px;
}

.system-hero:before {
	content: "";
	position: absolute;
	right: -130px;
	bottom: -170px;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
}

.system-card {
	position: relative;
	z-index: 1;
	padding: clamp(32px, 5vw, 58px);
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 28px;
	color: #fff;
	text-align: center;
	background: rgba(255, 255, 255, .14);
	box-shadow: 0 34px 90px rgba(2, 22, 72, .24);
	backdrop-filter: blur(18px);
}

.system-code {
	display: inline-flex;
	margin-bottom: 18px;
	font-size: clamp(74px, 13vw, 150px);
	font-weight: 900;
	line-height: .8;
	background: linear-gradient(135deg, #fff, rgba(255, 255, 255, .36));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.system-card h1 {
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(32px, 5vw, 58px);
	font-weight: 900;
}

.system-card p {
	max-width: 620px;
	margin: 0 auto 30px;
	color: rgba(255, 255, 255, .82);
	font-size: 18px;
	line-height: 1.65;
}

.system-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

@media (max-width: 991px) {
	.breadcrumbs__wrapper {
		min-height: 230px;
		padding: 68px 0 48px;
	}

	.cart-hero,
	.cart-hero .breadcrumbs__wrapper {
		min-height: 220px;
	}

	.cart-hero .breadcrumbs__title h2:before {
		width: 50px;
		height: 50px;
		flex-basis: 50px;
		border-radius: 16px;
		font-size: 21px;
	}

	.brk-sc-shop-item__info {
		padding: 24px 0 0;
	}

	.product_main_image .product_gallery_img>div {
		width: 100%;
		min-height: 360px;
	}

	.wrap_checkout_pay_types {
		grid-template-columns: 1fr;
	}

	.brk-checkout-order {
		padding: 16px;
	}

	.brk-checkout-order__footer {
		grid-template-columns: 1fr;
	}

	.brk-checkout-order__footer-section {
		min-height: 76px;
	}

	.brk-cart__footer {
		grid-template-columns: 1fr;
	}

	.brk-cart {
		max-width: 100%;
		overflow: hidden;
	}

	.brk-cart__table-scroll table {
		min-width: 760px;
	}

	.brk-checkout-order-item {
		grid-template-columns: 70px minmax(0, 1fr);
		min-height: 0;
	}

	.brk-checkout-order-item__title {
		font-size: 16px !important;
	}

	.brk-checkout-order-item__price,
	.brk-checkout-order-item__count,
	.brk-checkout-order-item__price-total {
		grid-column: 2;
		text-align: left !important;
	}

	.brk-checkout-order .p16 {
		padding: 16px;
	}

	.brk-checkout-order .p16>.row.mt-20 {
		padding: 14px;
	}

	.brk-checkout-order .p16>.row.mt-20 .mySelector__list {
		top: calc(100% + 8px);
		bottom: auto;
	}

	.brk-checkout-order .d-flex.justify-content-center.flex-md-row.flex-column.py-3 {
		justify-content: center !important;
	}

	#order_finish {
		width: 100%;
	}
}

@media (max-width: 575px) {

	.breadcrumbs__section,
	.breadcrumbs__wrapper {
		min-height: 210px;
	}

	.cart-hero,
	.cart-hero .breadcrumbs__wrapper {
		min-height: 196px;
	}

	.cart-hero .breadcrumbs__wrapper {
		padding: 42px 0 34px;
	}

	.breadcrumbs__title h2 {
		font-size: 32px;
	}

	.cart-hero .breadcrumbs__title {
		padding-right: 0 !important;
	}

	.cart-hero .breadcrumbs__title h2 {
		gap: 10px;
		font-size: 30px;
	}

	.cart-hero .breadcrumbs__title h2:before {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
		border-radius: 14px;
		font-size: 18px;
	}

	.cart-hero .breadcrumbs__subtitle h3 {
		margin-bottom: 0 !important;
		font-size: 15px;
		line-height: 1.35 !important;
	}

	.breadcrumbs__subtitle .breadcrumb {
		align-items: flex-start;
		border-radius: 18px;
	}

	.cart-hero .breadcrumbs__subtitle .breadcrumb {
		align-items: center;
		margin-top: 12px;
		padding: 9px 12px;
		border-radius: 14px;
		font-size: 13px;
	}

	.brk-sc-shop-item__main,
	.brk-cart,
	.brk-checkout-order {
		border-radius: 18px;
		padding: 16px;
	}

	.product_main_image .product_gallery_img>div {
		min-height: 300px;
	}

	.brk-cart {
		max-width: 100%;
		overflow: hidden;
	}

	.brk-cart__table-scroll {
		margin: 0 -16px;
		padding: 0 16px 8px;
	}

	.brk-cart__table-scroll table {
		min-width: 720px;
	}

	.brk-cart__img {
		width: 72px;
		height: 72px;
	}

	.brk-cart__footer {
		min-width: 0;
		padding: 12px;
	}

	.brk-cart__footer-total-item {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.brk-cart__lb-option-row {
		padding: 10px 0;
	}

	.brk-cart__lb-option {
		flex-direction: row;
		gap: 10px;
		padding: 12px;
		font-size: 13px;
	}

	.brk-cart__lb-option input[type="checkbox"] {
		width: 21px;
		height: 21px;
		flex-basis: 21px;
	}
}

@media (max-width: 991px) {
	.auth-shell {
		padding: 18px 0;
	}

	.auth-side {
		min-height: auto;
		padding: 30px;
	}

	.auth-logo {
		margin-bottom: 30px;
	}

	.auth-form-panel {
		padding: 30px;
	}
}

@media (max-width: 575px) {
	.auth-card {
		border-radius: 20px;
	}

	.auth-side,
	.auth-form-panel {
		padding: 24px 18px;
	}

	.auth-captcha {
		grid-template-columns: 1fr 34px;
	}

	.auth-captcha input {
		grid-column: 1 / -1;
	}

	.auth-form-row {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {

	.scroll-animate,
	.scroll-animate.is-visible,
	.catalog-card,
	.catalog-page-card,
	.product-card,
	.promo-card,
	.news-card,
	.direction-card,
	.advantage-card,
	.process-step,
	.business-point,
	.company-stat,
	.contact-note,
	.product-card__img img,
	.promo-card__img img,
	.news-card__img img,
	.direction-card__img img,
	.catalog-card__img img {
		transition: none;
		transform: none;
	}
}

@media (max-width:767px) {
	.mobile-app-nav {
		display: grid;
	}

	.site-scroll-top {
		bottom: calc(92px + env(safe-area-inset-bottom));
	}
}

/* Public responsive safety layer */
html,
body {
	max-width: 100%;
	overflow-x: clip;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

img,
video,
canvas,
svg {
	max-width: 100%;
}

main,
section,
.main-wrapper,
.main-container,
.inner-page,
.container,
.container-fluid,
.row,
[class*="col-"] {
	min-width: 0;
}

.page-section,
.detail-page,
.promotions-page,
.catalog-page,
.marketing-page,
.system-page {
	max-width: 100%;
	overflow-x: hidden;
}

.article-panel table,
.product-tab table,
.main-container .table {
	max-width: 100%;
}

@supports not (overflow-x: clip) {

	html,
	body {
		overflow-x: hidden;
	}
}

@media (max-width: 1199px) {

	.page-hero,
	.detail-hero,
	.marketing-hero,
	.catalog-hero,
	.about-hero,
	.ref-hero,
	.breadcrumbs__section {
		min-height: auto;
	}

	.page-hero__title,
	.breadcrumbs__title h2 {
		overflow-wrap: anywhere;
	}

	.page-hero__content,
	.page-hero__panel,
	.breadcrumbs__wrapper,
	.catalog-hero__panel,
	.about-hero__panel {
		max-width: 100%;
	}
}

@media (max-width: 991px) {
	.page-section {
		padding: 48px 0;
	}

	.page-hero,
	.detail-hero {
		padding: 64px 0;
	}

	.page-hero__title,
	.detail-hero .page-hero__title {
		font-size: clamp(34px, 8vw, 48px);
	}

	.page-hero__text,
	.detail-hero .page-hero__text,
	.catalog-hero__text,
	.business-text,
	.company-text,
	.contact-text {
		font-size: 16px;
	}

	.article-panel,
	.detail-article,
	.detail-aside,
	.detail-related,
	.form-panel,
	.info-panel,
	.marketing-panel,
	.marketing-sticky,
	.marketing-cta__panel,
	.contact-panel,
	.catalog-filter,
	.brk-cart,
	.brk-checkout-order {
		max-width: 100%;
	}

	.catalog-page-card,
	.product-card,
	.promo-card,
	.promotions-page-card,
	.news-card,
	.page-card,
	.warehouse-card,
	.direction-card,
	.advantage-card,
	.process-step {
		min-width: 0;
	}

	.marketing-cta__panel,
	.system-actions,
	.detail-hero__actions,
	.detail-article__actions,
	.product-buy__actions,
	.catalog-page-card__actions,
	.about-mission-panel__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.marketing-cta__panel .marketing-btn,
	.system-actions a,
	.detail-hero__actions a,
	.detail-article__actions a,
	.product-buy__actions .product-action,
	.catalog-page-card__actions a,
	.catalog-page-card__actions button,
	.about-mission-panel__actions a {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.container-fluid {
		padding-right: 16px;
		padding-left: 16px;
	}

	.row {
		margin-right: -8px;
		margin-left: -8px;
	}

	.row>[class*="col-"] {
		padding-right: 8px;
		padding-left: 8px;
	}

	.page-section {
		padding: 38px 0;
	}

	.page-hero,
	.detail-hero,
	.marketing-hero,
	.catalog-hero,
	.about-hero,
	.ref-hero {
		padding: 48px 0;
	}

	.page-hero__breadcrumb,
	.breadcrumbs__subtitle .breadcrumb {
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.promotion-detail-hero .page-hero__breadcrumb {
		display: flex;
		width: 100%;
		min-width: 0;
		padding: 7px 10px;
		border-radius: 14px;
		gap: 6px;
		flex-wrap: nowrap;
		font-size: 12px;
		overflow: hidden;
	}

	.promotion-detail-hero .page-hero__breadcrumb a,
	.promotion-detail-hero .page-hero__breadcrumb i {
		flex: 0 0 auto;
	}

	.promotion-detail-hero .page-hero__breadcrumb span {
		display: block;
		min-width: 0;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.page-hero__title,
	.detail-hero .page-hero__title,
	.breadcrumbs__title h2,
	.section-title,
	.marketing-section-head h2 {
		font-size: clamp(28px, 9vw, 38px);
		line-height: 1.12;
	}

	.page-card__img,
	.news-card__img,
	.promo-card__img,
	.promotions-page-card__media,
	.catalog-page-card__img,
	.product-card__img {
		height: clamp(200px, 58vw, 280px);
	}

	.detail-article__cover img,
	.gallery-card,
	.detail-media,
	.product-gallery__main,
	.product-gallery__main img {
		height: auto;
		min-height: 220px;
		max-height: 360px;
	}

	.article-panel table,
	.product-tab table,
	.main-container .table {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.main-container .table th,
	.main-container .table td,
	.product-tab table th,
	.product-tab table td {
		white-space: nowrap;
	}

	.site-footer {
		padding-bottom: calc(78px + env(safe-area-inset-bottom));
	}
}

@media (max-width: 575px) {

	.container,
	.container-fluid {
		padding-right: 14px;
		padding-left: 14px;
	}

	.article-panel,
	.detail-article,
	.detail-aside,
	.detail-related,
	.form-panel,
	.info-panel,
	.marketing-panel,
	.marketing-step,
	.marketing-sticky,
	.marketing-cta__panel,
	.contact-panel,
	.catalog-filter,
	.brk-cart,
	.brk-checkout-order,
	.site-footer__panel {
		padding: 16px;
		border-radius: 18px;
	}

	.page-card__body,
	.news-card__body,
	.promo-card__body,
	.promotions-page-card__body,
	.catalog-page-card__body,
	.product-card__body {
		padding: 16px;
	}

	.detail-related__item {
		grid-template-columns: 74px minmax(0, 1fr);
	}

	.detail-related__img {
		min-height: 74px;
	}

	.mobile-app-nav {
		left: 8px;
		right: 8px;
	}

	.promotions-page-card__countdown {
		top: 10px;
		right: 10px;
		min-height: 28px;
		padding: 0 9px;
		font-size: 10px;
	}

	.promotions-page-card__countdown strong {
		font-size: 10px;
	}

	.promotion-page-breadcrumb {
		display: flex;
		width: 100%;
		min-height: 32px;
		margin-bottom: 10px;
		padding: 6px 9px;
		gap: 6px;
		font-size: 11px;
	}

	.promotion-detail-page .page-section {
		padding: 14px 0 32px;
	}
}

/* Shop catalog: isolated responsive card layout */
.shop-catalog-page .main-page {
	padding-bottom: 30px;
	background:
		radial-gradient(circle at 92% 12%, rgba(2, 92, 197, .08), transparent 24%),
		linear-gradient(180deg, #f5f9ff 0%, #fff 45%, #eef5ff 100%);
}

.shop-catalog-page .shop-catalog {
	max-width: 1480px;
	padding-top: 16px;
	padding-bottom: 42px !important;
}

.shop-catalog-page .shop-catalog__grid > [class*="col-"] {
	display: flex;
}

.shop-catalog-page .catalog-product-card {
	display: flex;
	width: 100%;
	min-width: 0;
	flex-direction: column;
	border-radius: 18px;
	background: #fff;
}

.shop-catalog-page .catalog-product-card .product-card__img {
	display: flex;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background: #fff;
}

.shop-catalog-page .catalog-product-card .product-card__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.shop-catalog-page .catalog-product-card .product-card__body {
	display: flex;
	min-width: 0;
	padding: 16px;
	flex: 1;
	flex-direction: column;
}

.shop-catalog-page .catalog-product-card .product-card__title {
	display: -webkit-box;
	min-height: 46px;
	margin-bottom: 10px;
	overflow: hidden;
	font-size: 17px;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.shop-catalog-page .catalog-product-card .product-card__prices {
	margin-top: auto;
}

.shop-catalog-page .catalog-product-card .product-card__btn {
	flex: 0 0 auto;
}

@media (max-width: 767px) {
	.shop-catalog-page .breadcrumbs__section-thin {
		min-height: 116px;
	}

	.shop-catalog-page .breadcrumbs__section-thin .breadcrumbs__wrapper {
		min-height: 116px;
		padding: 28px 0 22px;
	}

	.shop-catalog-page .breadcrumbs__title h2 {
		margin: 0;
		font-size: clamp(21px, 6vw, 28px);
		line-height: 1.2;
		text-align: center;
	}

	.shop-catalog-page .shop-catalog {
		padding-top: 10px;
		padding-right: 12px;
		padding-bottom: calc(96px + env(safe-area-inset-bottom)) !important;
		padding-left: 12px;
	}

	.shop-catalog-page .shop-catalog__grid {
		margin-right: -6px;
		margin-left: -6px;
	}

	.shop-catalog-page .shop-catalog__grid > [class*="col-"] {
		padding-right: 6px;
		padding-left: 6px;
	}

	.shop-catalog-page .catalog-product-card {
		border-radius: 15px;
		box-shadow: 0 8px 24px rgba(2, 22, 72, .08);
	}

	.shop-catalog-page .catalog-product-card .product-card__img {
		height: auto;
		padding: 7px;
	}

	.shop-catalog-page .catalog-product-card .product-card__body {
		padding: 11px;
	}

	.shop-catalog-page .catalog-product-card .product-card__art {
		margin-bottom: 5px;
		font-size: 9px;
	}

	.shop-catalog-page .catalog-product-card .product-card__title {
		min-height: 35px;
		margin-bottom: 8px;
		font-size: 13px;
		line-height: 1.3;
	}

	.shop-catalog-page .catalog-product-card .product-card__prices {
		margin-bottom: 10px;
	}

	.shop-catalog-page .catalog-product-card .product-card__price {
		font-size: 17px;
	}

	.shop-catalog-page .catalog-product-card .product-card__btn {
		min-height: 38px;
		padding: 7px 5px;
		gap: 5px;
		border-radius: 9px;
		font-size: 11px;
	}
}

@media (max-width: 360px) {
	.shop-catalog-page .catalog-product-card .product-card__body {
		padding: 9px;
	}

	.shop-catalog-page .catalog-product-card .product-card__btn {
		font-size: 10px;
	}
}

/* Shop product: isolated responsive detail layout */
.shop-product-page .product-hero {
	padding: 22px 0 44px;
}

.shop-product-page .brk-sc-shop-item__main {
	padding: clamp(18px, 2.3vw, 34px);
}

.shop-product-page .product-detail-layout {
	margin-bottom: 28px;
}

.shop-product-page .product_images_block {
	width: 100%;
}

.shop-product-page .product_main_image {
	display: flex;
	width: 100%;
	aspect-ratio: 1 / 1;
	align-items: center;
	justify-content: center;
	padding: clamp(12px, 2vw, 24px);
	background: #fff;
}

.shop-product-page .product_main_image .product_gallery_img {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.shop-product-page .product_main_image .product_gallery_img > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform .25s ease;
}

.shop-product-page .product_main_image:hover .product_gallery_img > img {
	transform: scale(1.025);
}

.shop-product-page .product_gallery_images {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
}

.shop-product-page .product_gallery_images a {
	display: flex;
	aspect-ratio: 1 / 1;
	align-items: center;
	justify-content: center;
	padding: 5px;
}

.shop-product-page .product_gallery_images a > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.shop-product-page .brk-sc-shop-item__info {
	padding: 10px 0 0 clamp(4px, 2vw, 24px);
}

.shop-product-page .brk-sc-category {
	margin-bottom: 12px !important;
}

.shop-product-page .brk-sc-shop-item__info .ya-share2 {
	margin: 18px 0 !important;
}

.shop-product-page .brk-sc-shop-item__info-btn {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.shop-product-page .brk-sc-shop-item__info-btn > i {
	position: static;
	width: auto;
	margin: 0;
	font-size: 17px;
}

.shop-product-page .brk-sc-shop-item__info-btn > .before,
.shop-product-page .brk-sc-shop-item__info-btn > .after,
.shop-product-page .brk-sc-shop-item__info-btn > .border-btn {
	display: none !important;
}

.shop-product-page .product-tabs {
	margin-top: 0 !important;
}

@media (max-width: 991px) {
	.shop-product-page .product-hero {
		padding: 16px 0 calc(100px + env(safe-area-inset-bottom));
	}

	.shop-product-page .product-breadcrumb {
		margin-bottom: 12px;
	}

	.shop-product-page .brk-sc-shop-item__info {
		padding: 2px 0 0;
	}
}

@media (max-width: 767px) {
	.shop-product-page .product-hero > .container-fluid {
		padding-right: 12px;
		padding-left: 12px;
	}

	.shop-product-page .product-hero .col-md-10.offset-md-1 {
		padding: 0;
	}

	.shop-product-page .product-breadcrumb {
		gap: 6px;
		padding: 7px 10px;
		border: 1px solid rgba(2, 92, 197, .1);
		border-radius: 10px;
		font-size: 11px;
		background: rgba(255, 255, 255, .86);
	}

	.shop-product-page .brk-sc-shop-item__main {
		padding: 12px;
		border-radius: 16px;
	}

	.shop-product-page .product-detail-layout {
		--bs-gutter-y: 16px;
		margin-bottom: 18px;
	}

	.shop-product-page .product_main_image {
		padding: 10px;
		border-radius: 14px;
	}

	.shop-product-page .product_name {
		font-size: clamp(27px, 9vw, 36px) !important;
	}

	.shop-product-page .brk-sc-shop-item__info .mt-20 {
		margin-top: 12px !important;
	}

	.shop-product-page .brk-sc-shop-item__info-btn {
		width: 100%;
	}

	.shop-product-page .brk-sc-info-grid,
	.shop-product-page .brk-sc-info-grid > .pt-1 {
		display: block !important;
		width: 100%;
	}

	.shop-product-page .brk-sc-shop-item__info .add_cart {
		display: flex !important;
		width: 100% !important;
		min-height: 50px;
		margin: 0 !important;
		padding: 10px 18px !important;
		font-size: 16px;
	}

	.shop-product-page .product-tabs__nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		overflow: visible;
		padding: 10px;
	}

	.shop-product-page .product-tabs__nav button {
		min-height: 38px;
		width: 100%;
		padding: 7px 9px;
		font-size: 12px;
		line-height: 1.25;
	}

	.shop-product-page .product-tabs__content {
		padding: 16px;
	}

	.shop-product-page .product-tab,
	.shop-product-page .product-tab p,
	.shop-product-page .product-tab li,
	.shop-product-page .product-tab div {
		font-size: 14px;
		line-height: 1.6;
	}
}

@media (max-width: 380px) {
	.shop-product-page .product-tabs__nav {
		gap: 6px;
	}

	.shop-product-page .product-tabs__nav button {
		padding-right: 6px;
		padding-left: 6px;
		font-size: 11px;
	}
}

/* Business landing */
.business-landing {
	overflow: hidden;
	color: #021648;
	background: #fff;
}

.business-lp-hero {
	position: relative;
	padding: 34px 0 0;
	overflow: hidden;
	color: #fff;
	background: linear-gradient(125deg, #031748 0%, #063b89 54%, #0572d2 100%);
}

.business-lp-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .17;
	background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.business-lp-hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	pointer-events: none;
}

.business-lp-hero__glow--one { width: 420px; height: 420px; top: -210px; right: 8%; background: rgba(54, 184, 255, .22); }
.business-lp-hero__glow--two { width: 300px; height: 300px; bottom: 5%; left: -130px; background: rgba(0, 181, 255, .16); }

.business-lp-breadcrumb {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 30px;
	padding: 8px 13px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	background: rgba(255,255,255,.08);
}

.business-lp-breadcrumb a { color: #fff; text-decoration: none; }
.business-lp-breadcrumb i { font-size: 9px; color: #72c7ff; }

.business-lp-hero__content { position: relative; z-index: 1; padding: 12px 7% 52px 0; }

.business-lp-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: #82d4ff;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.business-lp-kicker--blue { color: #0569ce; }

.business-lp-hero h1 {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: clamp(40px, 5.2vw, 76px);
	font-weight: 950;
	line-height: .98;
	letter-spacing: -.035em;
}

.business-lp-hero h1 em { color: #62c7ff; font-style: normal; }

.business-lp-hero__content > p {
	max-width: 690px;
	margin: 25px 0 0;
	color: rgba(255,255,255,.8);
	font-size: 18px;
	line-height: 1.65;
}

.business-lp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.business-lp-btn {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 10px 22px;
	border: 1px solid transparent;
	border-radius: 13px;
	font-weight: 900;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.business-lp-btn:hover { transform: translateY(-2px); }
.business-lp-btn--primary { color: #fff; background: linear-gradient(135deg, #0879de, #03499f); box-shadow: 0 16px 34px rgba(0, 31, 91, .3); }
.business-lp-btn--primary:hover { color: #fff; box-shadow: 0 20px 40px rgba(0, 31, 91, .4); }
.business-lp-btn--light { border-color: rgba(255,255,255,.22); color: #fff; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); }
.business-lp-btn--light:hover { color: #fff; background: rgba(255,255,255,.16); }
.business-lp-btn--white { color: #043b85; background: #fff; box-shadow: 0 14px 32px rgba(0,0,0,.15); }
.business-lp-btn--white:hover { color: #021648; }

.business-lp-note { display: flex; align-items: center; gap: 8px; margin-top: 20px; color: rgba(255,255,255,.65); font-size: 13px; }
.business-lp-note i { color: #61d99b; }

.business-lp-visual {
	position: relative;
	z-index: 1;
	min-height: 540px;
	margin-bottom: -1px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.18);
	border-bottom: 0;
	border-radius: 34px 34px 0 0;
	box-shadow: 0 30px 80px rgba(0, 17, 57, .35);
}

.business-lp-visual:after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 48%, rgba(1,21,64,.7)); }
.business-lp-visual > img { width: 100%; height: 100%; min-height: 540px; display: block; object-fit: cover; }

.business-lp-visual__card {
	position: absolute;
	z-index: 2;
	display: grid;
	grid-template-columns: 42px auto;
	column-gap: 11px;
	min-width: 190px;
	padding: 13px 16px;
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 15px;
	background: rgba(2,22,72,.7);
	box-shadow: 0 18px 36px rgba(0,0,0,.22);
	backdrop-filter: blur(12px);
}

.business-lp-visual__card i { grid-row: span 2; display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 12px; color: #fff; background: #0878db; }
.business-lp-visual__card span { align-self: end; color: rgba(255,255,255,.65); font-size: 11px; font-weight: 700; }
.business-lp-visual__card strong { color: #fff; line-height: 1.15; }
.business-lp-visual__card--top { top: 28px; left: 24px; }
.business-lp-visual__card--bottom { right: 24px; bottom: 28px; }

.business-lp-facts {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-radius: 20px 20px 0 0;
	color: #021648;
	background: #fff;
	box-shadow: 0 -10px 34px rgba(0, 22, 70, .12);
}

.business-lp-facts > div { display: flex; align-items: center; gap: 13px; padding: 19px 22px; border-right: 1px solid #e7eef8; }
.business-lp-facts > div:last-child { border-right: 0; }
.business-lp-facts i { display:flex; flex:0 0 42px; width:42px; height:42px; align-items:center; justify-content:center; border-radius:12px; color:#0569ce; background:#edf6ff; }
.business-lp-facts span, .business-lp-facts strong, .business-lp-facts small { display: block; }
.business-lp-facts strong { font-size: 15px; }
.business-lp-facts small { margin-top: 3px; color: #7b889b; line-height: 1.3; }

.business-lp-section { padding: clamp(68px, 7vw, 112px) 0; }
.business-lp-section--light { background: linear-gradient(180deg, #f5f9ff, #fff); }

.business-lp-heading { max-width: 720px; margin-bottom: 38px; }
.business-lp-heading--center { margin-right: auto; margin-left: auto; text-align: center; }
.business-lp-heading > span { display:block; margin-bottom:9px; color:#0569ce; font-size:13px; font-weight:950; letter-spacing:.08em; text-transform:uppercase; }
.business-lp-heading h2, .business-lp-system-copy h2, .business-lp-audience__content h2 { margin:0; color:#021648; font-size:clamp(32px, 4vw, 54px); font-weight:950; line-height:1.08; letter-spacing:-.025em; }
.business-lp-heading p, .business-lp-system-copy > p { margin:17px 0 0; color:#647187; font-size:17px; line-height:1.65; }

.business-lp-benefits { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:18px; }
.business-lp-benefit { position:relative; min-height:280px; overflow:hidden; padding:26px; border:1px solid #e5edf7; border-radius:20px; background:#fff; box-shadow:0 15px 40px rgba(2,22,72,.07); transition:transform .25s ease, box-shadow .25s ease; }
.business-lp-benefit:hover { transform:translateY(-5px); box-shadow:0 22px 50px rgba(2,22,72,.12); }
.business-lp-benefit > i { display:flex; width:52px; height:52px; align-items:center; justify-content:center; margin-bottom:25px; border-radius:15px; color:#fff; font-size:20px; background:linear-gradient(135deg,#087ae0,#033577); box-shadow:0 12px 26px rgba(3,78,158,.2); }
.business-lp-benefit__num { position:absolute; top:17px; right:20px; color:#edf2f9; font-size:52px; font-weight:950; line-height:1; }
.business-lp-benefit h3 { position:relative; margin:0 0 11px; color:#021648; font-size:20px; font-weight:900; }
.business-lp-benefit p { position:relative; margin:0; color:#68758a; line-height:1.6; }

.business-lp-section--system { color:#fff; background:linear-gradient(125deg,#031747,#072c69); }
.business-lp-system-copy h2 { color:#fff; }
.business-lp-system-copy > p { color:rgba(255,255,255,.68); }
.business-lp-text-link { display:inline-flex; align-items:center; gap:9px; margin-top:22px; color:#096fd1; font-weight:900; text-decoration:none; }
.business-lp-section--system .business-lp-text-link { color:#69c6ff; }
.business-lp-text-link:hover { color:#0b85ed; }

.business-lp-orbit { position:relative; width:min(100%,620px); min-height:500px; margin:0 auto; }
.business-lp-orbit:before, .business-lp-orbit:after { content:""; position:absolute; inset:50%; border:1px solid rgba(90,196,255,.22); border-radius:50%; transform:translate(-50%,-50%); }
.business-lp-orbit:before { width:430px; height:430px; }
.business-lp-orbit:after { width:310px; height:310px; }
.business-lp-orbit__center { position:absolute; z-index:2; top:50%; left:50%; display:flex; width:210px; height:210px; align-items:center; justify-content:center; flex-direction:column; padding:28px; border:1px solid rgba(255,255,255,.2); border-radius:50%; background:radial-gradient(circle at 35% 25%,#137bd3,#042257 70%); box-shadow:0 0 70px rgba(21,137,222,.3); transform:translate(-50%,-50%); }
.business-lp-orbit__center img { width:145px; max-height:60px; object-fit:contain; }
.business-lp-orbit__center span { margin-top:12px; color:#8ed8ff; font-size:12px; font-weight:900; text-transform:uppercase; }
.business-lp-orbit__item { position:absolute; z-index:3; display:flex; min-width:142px; align-items:center; gap:10px; padding:12px 15px; border:1px solid rgba(255,255,255,.16); border-radius:14px; color:#fff; font-weight:850; background:rgba(255,255,255,.08); backdrop-filter:blur(10px); }
.business-lp-orbit__item i { display:flex; width:38px; height:38px; align-items:center; justify-content:center; border-radius:11px; color:#66c8ff; background:rgba(48,168,241,.14); }
.business-lp-orbit__item--one { top:3%; left:36%; }
.business-lp-orbit__item--two { top:40%; right:0; }
.business-lp-orbit__item--three { bottom:4%; left:34%; }
.business-lp-orbit__item--four { top:40%; left:0; }

.business-lp-section--steps { background:#f6f9fe; }
.business-lp-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; counter-reset:steps; }
.business-lp-step { position:relative; min-height:270px; padding:25px 22px; border:1px solid #e1eaf6; border-right:0; background:#fff; }
.business-lp-step:first-child { border-radius:20px 0 0 20px; }
.business-lp-step:last-child { border-right:1px solid #e1eaf6; border-radius:0 20px 20px 0; }
.business-lp-step:not(:last-child):after { content:""; position:absolute; z-index:2; top:50%; right:-9px; width:18px; height:18px; border-top:2px solid #a9c8e8; border-right:2px solid #a9c8e8; background:#fff; transform:translateY(-50%) rotate(45deg); }
.business-lp-step > strong { position:absolute; top:18px; right:20px; color:#dfeaf7; font-size:40px; font-weight:950; }
.business-lp-step > i { display:flex; width:52px; height:52px; align-items:center; justify-content:center; margin-bottom:28px; border-radius:15px; color:#076bc9; font-size:20px; background:#eaf5ff; }
.business-lp-step h3 { margin:0 0 10px; font-size:19px; font-weight:900; }
.business-lp-step p { margin:0; color:#6b788b; font-size:14px; line-height:1.6; }
.business-lp-steps__cta { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-top:22px; padding:24px 28px; border-radius:18px; color:#fff; background:linear-gradient(120deg,#065fbd,#021b50); box-shadow:0 18px 45px rgba(2,45,105,.18); }
.business-lp-steps__cta span, .business-lp-steps__cta strong { display:block; }
.business-lp-steps__cta span { margin-bottom:4px; color:#8fd3ff; font-size:12px; font-weight:850; text-transform:uppercase; }
.business-lp-steps__cta strong { font-size:20px; }

.business-lp-section--audience { background:#fff; }
.business-lp-audience { display:grid; grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr); overflow:hidden; border:1px solid #e2eaf4; border-radius:26px; background:#f7faff; box-shadow:0 24px 65px rgba(2,22,72,.09); }
.business-lp-audience__image img { width:100%; height:100%; min-height:570px; display:block; object-fit:cover; }
.business-lp-audience__content { padding:clamp(32px,5vw,70px); }
.business-lp-audience__content ul { display:grid; gap:12px; margin:28px 0 0; padding:0; list-style:none; }
.business-lp-audience__content li { display:flex; align-items:flex-start; gap:11px; padding:13px 15px; border:1px solid #e1eaf5; border-radius:13px; color:#5e6b7d; background:#fff; }
.business-lp-audience__content li i { display:flex; flex:0 0 25px; width:25px; height:25px; align-items:center; justify-content:center; border-radius:50%; color:#fff; font-size:11px; background:#07915f; }
.business-lp-audience__content li strong { color:#021648; }
.business-lp-disclaimer { margin:20px 0 0; padding:12px 14px; border-left:3px solid #f0ad29; color:#7b6a45; font-size:12px; line-height:1.5; background:#fff9eb; }

.business-lp-section--faq { background:#f5f8fd; }
.business-lp-faq { display:grid; gap:10px; }
.business-lp-faq details { overflow:hidden; border:1px solid #e0e9f4; border-radius:15px; background:#fff; }
.business-lp-faq summary { display:flex; min-height:66px; align-items:center; justify-content:space-between; gap:15px; padding:16px 20px; color:#021648; font-weight:900; cursor:pointer; list-style:none; }
.business-lp-faq summary::-webkit-details-marker { display:none; }
.business-lp-faq summary i { display:flex; flex:0 0 30px; width:30px; height:30px; align-items:center; justify-content:center; border-radius:9px; color:#086dce; background:#edf6ff; transition:transform .2s ease; }
.business-lp-faq details[open] summary i { transform:rotate(45deg); }
.business-lp-faq details p { margin:0; padding:0 20px 19px; color:#657287; line-height:1.65; }

.business-lp-final { padding:0 0 clamp(70px,7vw,105px); background:#f5f8fd; }
.business-lp-final__box { position:relative; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:24px; overflow:hidden; padding:35px 40px; border-radius:25px; color:#fff; background:linear-gradient(120deg,#0572d1,#021a4d); box-shadow:0 24px 60px rgba(2,38,94,.25); }
.business-lp-final__box:after { content:""; position:absolute; width:250px; height:250px; right:12%; border:45px solid rgba(255,255,255,.05); border-radius:50%; }
.business-lp-final__icon { position:relative; z-index:1; display:flex; width:66px; height:66px; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.2); border-radius:18px; font-size:25px; background:rgba(255,255,255,.1); }
.business-lp-final__box > div, .business-lp-final__box > a { position:relative; z-index:1; }
.business-lp-final__box span { color:#85d4ff; font-size:12px; font-weight:900; text-transform:uppercase; }
.business-lp-final__box h2 { margin:4px 0; color:#fff; font-size:clamp(27px,3vw,40px); font-weight:950; }
.business-lp-final__box p { margin:0; color:rgba(255,255,255,.7); }

@media (max-width: 1199px) {
	.business-lp-benefits { grid-template-columns:repeat(2,1fr); }
	.business-lp-steps { grid-template-columns:repeat(2,1fr); gap:14px; }
	.business-lp-step, .business-lp-step:first-child, .business-lp-step:last-child { border:1px solid #e1eaf6; border-radius:18px; }
	.business-lp-step:not(:last-child):after { display:none; }
}

@media (max-width: 991px) {
	.business-lp-hero__content { padding-right:0; }
	.business-lp-visual { min-height:450px; border-radius:28px; }
	.business-lp-visual > img { min-height:450px; }
	.business-lp-facts { grid-template-columns:repeat(2,1fr); }
	.business-lp-facts > div:nth-child(2) { border-right:0; }
	.business-lp-facts > div:nth-child(-n+2) { border-bottom:1px solid #e7eef8; }
	.business-lp-audience { grid-template-columns:1fr; }
	.business-lp-audience__image img { min-height:390px; max-height:480px; }
	.business-lp-final__box { grid-template-columns:auto 1fr; }
	.business-lp-final__box > a { grid-column:1 / -1; width:100%; }
}

@media (max-width: 767px) {
	.business-lp-hero { padding-top:18px; }
	.business-lp-breadcrumb { margin-bottom:20px; padding:7px 10px; font-size:11px; }
	.business-lp-hero__content { padding:5px 0 35px; }
	.business-lp-hero h1 { font-size:clamp(37px,12vw,53px); }
	.business-lp-hero__content > p { margin-top:18px; font-size:15px; line-height:1.55; }
	.business-lp-actions { display:grid; margin-top:22px; }
	.business-lp-btn { width:100%; min-height:49px; }
	.business-lp-note { align-items:flex-start; font-size:11px; line-height:1.45; }
	.business-lp-visual { min-height:360px; border-radius:20px 20px 0 0; }
	.business-lp-visual > img { min-height:360px; }
	.business-lp-visual__card { min-width:160px; padding:10px; transform:scale(.88); }
	.business-lp-visual__card--top { top:12px; left:4px; transform-origin:top left; }
	.business-lp-visual__card--bottom { right:4px; bottom:12px; transform-origin:bottom right; }
	.business-lp-facts { grid-template-columns:repeat(2, minmax(0, 1fr)); border-radius:0; }
	.business-lp-facts > div { align-items:flex-start; gap:8px; padding:12px 10px; border-right:1px solid #e7eef8; border-bottom:1px solid #e7eef8; }
	.business-lp-facts > div:nth-child(2n) { border-right:0; }
	.business-lp-facts > div:nth-last-child(-n+2) { border-bottom:0; }
	.business-lp-facts i { flex-basis:34px; width:34px; height:34px; border-radius:10px; font-size:13px; }
	.business-lp-facts strong { font-size:13px; }
	.business-lp-facts small { font-size:10px; }
	.business-lp-section { padding:48px 0; }
	.business-lp-heading { margin-bottom:26px; }
	.business-lp-heading h2, .business-lp-system-copy h2, .business-lp-audience__content h2 { font-size:31px; }
	.business-lp-heading p, .business-lp-system-copy > p { font-size:15px; }
	.business-lp-benefits { grid-template-columns:1fr; gap:12px; }
	.business-lp-benefit { min-height:0; padding:20px; }
	.business-lp-benefit > i { margin-bottom:18px; }
	.business-lp-orbit {
		left:auto;
		display:grid;
		width:100%;
		min-height:0;
		grid-template-columns:repeat(2, minmax(0, 1fr));
		gap:8px;
		margin:28px auto 0;
		transform:none;
	}
	.business-lp-orbit:before,
	.business-lp-orbit:after { display:none; }
	.business-lp-orbit__center {
		position:relative;
		top:auto;
		left:auto;
		width:150px;
		height:150px;
		grid-column:1 / -1;
		margin:0 auto 10px;
		padding:20px;
		transform:none;
	}
	.business-lp-orbit__center img { width:108px; }
	.business-lp-orbit__center span { margin-top:8px; font-size:10px; }
	.business-lp-orbit__item,
	.business-lp-orbit__item--one,
	.business-lp-orbit__item--two,
	.business-lp-orbit__item--three,
	.business-lp-orbit__item--four {
		position:static;
		width:100%;
		min-width:0;
		justify-content:flex-start;
		padding:9px;
		font-size:11px;
	}
	.business-lp-orbit__item i { flex:0 0 31px; width:31px; height:31px; }
	.business-lp-steps { grid-template-columns:1fr; gap:10px; }
	.business-lp-step { min-height:0; padding:20px; }
	.business-lp-step > i { margin-bottom:17px; }
	.business-lp-steps__cta { align-items:flex-start; flex-direction:column; padding:20px; }
	.business-lp-audience { border-radius:20px; }
	.business-lp-audience__image img { min-height:270px; }
	.business-lp-audience__content { padding:25px 18px; }
	.business-lp-audience__content li { padding:11px; font-size:14px; }
	.business-lp-final { padding-bottom:calc(92px + env(safe-area-inset-bottom)); }
	.business-lp-final__box { display:flex; align-items:flex-start; flex-direction:column; gap:16px; padding:25px 20px; border-radius:20px; }
	.business-lp-final__icon { width:52px; height:52px; }
}

@media (max-width: 420px) {
	.business-lp-hero__content { padding-bottom:28px; }
	.business-lp-visual { min-height:320px; }
	.business-lp-visual > img { min-height:320px; }
	.business-lp-heading h2,
	.business-lp-system-copy h2,
	.business-lp-audience__content h2 { font-size:28px; }
}
