.section-gap {
	padding: 30px 0;
}

.section-heading {
	margin-bottom: 30px;
	text-align: center;
}

.section-heading .heading-title {
	font-size: 2em;
	font-weight: 700;
	color: var(--primary-color);
	position: relative;
}

.section-heading .heading-title > span {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.section-heading .heading-title > span::before,
.section-heading .heading-title > span::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 23px;
	background: url(/public/upload/theme/shape_theme.png) 50% no-repeat;
	margin-bottom: -2px;
}

.section-heading .heading-title > span::before {
	transform: rotate(-90deg);
	margin-right: 5px;
}

.section-heading .heading-title > span::after {
	transform: rotate(90deg);
	margin-left: 5px;
}

.slider-theme {
	position: relative;
}

.slider-theme .slider-pagination {
	position: relative;
	bottom: unset;
	left: unset;
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.slider-theme .slider-pagination .swiper-pagination-bullet {
	opacity: 1;
	transition: var(--transition-default);
	width: 24px;
	height: 8px;
	border-radius: 10px;
	background: var(--bs-gray-500);
	margin: 0;
}

.slider-theme .slider-pagination .swiper-pagination-bullet:hover {
	background: var(--bs-gray-700);
}

.slider-theme .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--primary-color);
	width: 40px;
}

.button-theme {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	font-size: 1.15em;
	font-weight: 700;
	padding: 0.5rem 1.5rem 0.55rem;
	border-radius: 50px;
	background-color: var(--bg-1);
	color: var(--bs-white) !important;
	position: relative;
	overflow: hidden;
	-webkit-appearance: none;
	transition: all 500ms linear;
}

.button-theme::before,
.button-theme::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}

.button-theme::before {
	background: var(--bg-2);
	width: 120%;
	height: 0;
	padding-bottom: 120%;
	top: -110%;
	left: -10%;
	border-radius: 50%;
	transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.button-theme > * {
	position: relative;
	z-index: 3;
}

.button-theme.button-theme_primary {
	--bg-1: var(--primary-color);
	--bg-2: rgba(var(--bs-white-rgb), 0.1);
}

.button-theme:hover::before {
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.floating-cart {
	position: fixed;
	top: 0;
	right: 0;
	-webkit-transition: visibility .5s cubic-bezier(.645, .045, .355, 1), opacity .5s cubic-bezier(.645, .045, .355, 1), -webkit-transform .5s cubic-bezier(.645, .045, .355, 1);
	transition: visibility .5s cubic-bezier(.645, .045, .355, 1), opacity .5s cubic-bezier(.645, .045, .355, 1), -webkit-transform .5s cubic-bezier(.645, .045, .355, 1);
	-o-transition: transform .5s cubic-bezier(.645, .045, .355, 1), visibility .5s cubic-bezier(.645, .045, .355, 1), opacity .5s cubic-bezier(.645, .045, .355, 1);
	transition: transform .5s cubic-bezier(.645, .045, .355, 1), visibility .5s cubic-bezier(.645, .045, .355, 1), opacity .5s cubic-bezier(.645, .045, .355, 1);
	transition: transform .5s cubic-bezier(.645, .045, .355, 1), visibility .5s cubic-bezier(.645, .045, .355, 1), opacity .5s cubic-bezier(.645, .045, .355, 1), -webkit-transform .5s cubic-bezier(.645, .045, .355, 1);
	background: var(--bs-white);
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
	height: 100%;
	width: 400px;
	max-width: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transform: translate3d(104%, 0, 0);
	transform: translate3d(104%, 0, 0);
	z-index: 21;
	font-size: 14px;
}

.floating-cart .cart-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 50px;
	padding: 0 0 0 20px;
	border-bottom: 1px solid rgba(129, 129, 129, .2);
}

.floating-cart .cart-header .cart-title {
	text-transform: uppercase;
	font-size: 1.3em;
	color: #2c3034;
	font-weight: 500;
	letter-spacing: 0.3px;
	padding-top: 2px;
}

.floating-cart .cart-header .cart-close {
	width: 50px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: -webkit-transform .3s ease-in-out;
	transition: -webkit-transform .3s ease-in-out;
	-o-transition: transform .3s ease-in-out;
	transition: transform .3s ease-in-out;
	transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
	border: 0;
	padding: 0;
	border-radius: 0;
	background: transparent;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.floating-cart .cart-header .cart-close svg {
	stroke: #9f9d9d;
	-webkit-transition: stroke .3s ease-in-out .1s;
	-o-transition: stroke .3s ease-in-out .1s;
	transition: stroke .3s ease-in-out .1s;
}

.floating-cart .cart-header .cart-close:hover {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.floating-cart .cart-header .cart-close:hover svg {
	stroke: #2c3034;
}

.floating-cart .cart-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
}

.floating-cart .cart-body .cart-main {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.floating-cart .cart-body .cart-main .cart-main_scroll {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.floating-cart .cart-body .cart-main .cart-main_scroll::-webkit-scrollbar {
	width: 5px;
}

.floating-cart .cart-body .cart-main .cart-main_scroll::-webkit-scrollbar-track {
	background: #ffffff;
}

.floating-cart .cart-body .cart-main .cart-main_scroll::-webkit-scrollbar-thumb {
	background: #d7d7d7;
}

.floating-cart .cart-body .cart-main .cart-main_scroll::-webkit-scrollbar-thumb:hover {
	background: #b9b9b9;
}

.floating-cart .cart-body .cart-list {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-height: 100%;
}

.floating-cart .cart-body .cart-list .cart-item {
	padding: 15px 20px;
	border-bottom: 1px solid rgba(221, 221, 221, .8);
	overflow: hidden;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.floating-cart .cart-body .cart-list .cart-item .cart-item_image {
	width: 120px;
	display: block;
	margin-right: 15px;
	-ms-flex: 0 0 auto;
	-webkit-box-flex: 0;
	flex: 0 0 auto;
	position: relative;
	max-width: 100%;
}

.floating-cart .cart-body .cart-list .cart-item .cart-item_image:before {
	display: block;
	padding-top: 100%;
	content: "";
}

.floating-cart .cart-body .cart-list .cart-item .cart-item_image > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
}

.floating-cart .cart-body .cart-list .cart-item .cart-item_title {
	font-size: 1.15em;
	color: #2c3034;
	font-weight: 500;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	margin-bottom: 5px;
	line-height: 1.2;
}

.floating-cart .cart-body .cart-list .cart-item .cart-item_title:hover {
	color: var(--primary-color);
}

.floating-cart .cart-body .cart-list .cart-item .cart-price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-bottom: 5px;
}

.floating-cart .cart-body .cart-list .cart-item .cart-price .old {
	font-weight: 400;
	text-decoration: line-through;
	margin-right: 10px;
	margin-left: 5px;
	font-size: 0.925em;
	color: #A1A1AA;
}

.floating-cart .cart-body .cart-list .cart-item .cart-price .current {
	color: #ef4444;
	font-weight: 700;
	font-size: 1.075em;
}

.floating-cart .cart-body .cart-list .cart-item .cart-price .sale {
	margin-left: 3px;
	padding: 2px 5px;
	background-color: #B91C1C;
	color: var(--bs-white);
	font-size: 0.85em;
	border-radius: 4px;
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity .quantity-button {
	border-radius: 5px;
	height: 36px;
	width: 36px;
	border: 1px solid #c5c5c9;
	color: #71717A;
	background: var(--bs-white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 1.15em;
	cursor: pointer;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	-moz-user-select: none;
	-ms-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity .quantity-button svg {
	width: 14px;
	height: 14px;
	stroke: #71717A;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity .quantity-button:hover {
	background: #e7e7e7;
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity .quantity-button:active {
	background: var(--primary-color);
	color: var(--bs-white);
	border-color: var(--primary-color);
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity .quantity-button:active svg {
	stroke: var(--bs-white);
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity input {
	border: 1px solid #c5c5c9;
	color: #71717A;
	border-radius: 5px;
	padding: 5px;
	width: 60px;
	margin: 0 10px;
	text-align: center;
	font-size: 1.15em;
	height: 36px;
	-moz-appearance: textfield;
}

.floating-cart .cart-body .cart-list .cart-item .cart-actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 10px;
}

.floating-cart .cart-body .cart-list .cart-item .cart-actions .cart-action_item {
	border: 0;
	border-radius: 0;
	padding: 0;
	background-color: transparent;
	stroke: #2c3034;
	fill: transparent;
}

.floating-cart .cart-body .cart-list .cart-item .cart-actions > .cart-action_item svg {
	width: 20px;
	height: 20px;
}

.floating-cart .cart-body .cart-list .cart-item .cart-actions > .cart-action_item:hover {
	stroke: var(--primary-color);
}

.floating-cart .cart-body .cart-list .cart-item .cart-actions > .cart-action_item.is-selected {
	stroke: transparent;
	fill: #d70018;
}

.floating-cart .cart-body .cart-list .cart-item .cart-actions > .cart-action_item + .cart-action_item {
	margin-left: 10px;
}

.floating-cart .cart-body .cart-bottom {
	padding: 20px 20px 15px;
	-ms-flex: 0 0 auto;
	-webkit-box-flex: 0;
	flex: 0 0 auto;
	border-top: 1px solid rgba(221, 221, 221, .7);
	-webkit-box-shadow: 0 0 10px 0 rgba(221, 221, 221, .7);
	box-shadow: 0 0 10px 0 rgba(221, 221, 221, .7);
	opacity: 0;
	-webkit-transform: translateY(45px);
	-ms-transform: translateY(45px);
	transform: translateY(45px);
	-webkit-transition: opacity .35s cubic-bezier(.25, .46, .45, .94), -webkit-transform .35s cubic-bezier(.25, .46, .45, .94);
	transition: opacity .35s cubic-bezier(.25, .46, .45, .94), transform .35s cubic-bezier(.25, .46, .45, .94), -webkit-transform .35s cubic-bezier(.25, .46, .45, .94);
}

.floating-cart .cart-body .cart-bottom .cart-total {
	margin-bottom: 10px;
	color: #2c3034;
	font-size: 1.3em;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.floating-cart .cart-body .cart-bottom .cart-total .cart-price_value {
	text-align: right;
}

.floating-cart .cart-body .cart-bottom .cart-desc {
	font-size: var(--size-default);
	margin-bottom: 10px;
	color: #71717A;
}

.floating-cart .cart-body .cart-bottom .card-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.floating-cart .cart-body .cart-bottom .card-buttons > .button-theme {
	width: 100%;
	padding: 10px 0;
	border-radius: 50px;
}

.floating-cart .cart-body .cart-bottom .card-buttons > .button-theme:not(.button-theme_primary) {
	color: var(--primary-color) !important;
	font-weight: 400;
	font-size: 1.075em;
}

.floating-cart .cart-body .cart-empty {
	padding: 50px 20px;
	text-align: center;
	opacity: 0;
	-webkit-transform: translateY(45px);
	-ms-transform: translateY(45px);
	transform: translateY(45px);
}

.floating-cart .cart-body .cart-empty svg {
	width: 60px;
	height: auto;
	fill: #b5b5bb;
	margin-bottom: 15px;
}

.floating-cart .cart-body .cart-empty .title {
	font-weight: 400;
	color: #3b3b3d;
	font-size: 1.15em;
	margin-bottom: 15px;
}

body.js-show_cart .floating-cart {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	-ms-transform: none;
	transform: none;
	-webkit-transform: none;
}

body.js-show_cart .floating-cart .cart-body .cart-empty,
body.js-show_cart .floating-cart .cart-body .cart-bottom {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: opacity .25s cubic-bezier(.25, .46, .45, .94) .45s, -webkit-transform .25s cubic-bezier(.25, .46, .45, .94) .45s;
	transition: opacity .25s cubic-bezier(.25, .46, .45, .94) .25s, transform .35s cubic-bezier(.25, .46, .45, .94) .25s, -webkit-transform .25s cubic-bezier(.25, .46, .45, .94) .25s;
}

.floating-overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	z-index: 20;
	visibility: hidden;
	pointer-events: none;
	opacity: 0;
	background: rgba(0, 0, 0, .7);
	-webkit-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
	-o-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
	transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}

body.js-show_cart .floating-overlay {
	pointer-events: auto;
	opacity: .5;
	visibility: visible;
}

body.js-show_cart {
	overflow: hidden;
}

@media screen and (max-width: 575px) {
	.floating-cart .cart-body .cart-list .cart-item .cart-item_image {
		width: 90px;
	}
}


.header {
	position: relative;
	z-index: 10;
	background-color: var(--bs-white);
}

.header .header-top {
	background-color: var(--primary-color);
	padding: 10px 0;
}

.header .header-top .header-grid {
	display: flex;
	align-items: center;
	gap: 25px;
}

.header .header-top .header-logo {
	height: 65px;
	width: calc(25% + 0.25rem - 25px);
}

.header .header-search {
	flex: 1 0 auto;
	position: relative;
}

.header .header-search .header-search_form {
	flex-shrink: 1;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.header .header-search .header-search_form .header-search_form__label {
	display: inline-block;
	width: 100%;
	vertical-align: middle;
}

.header .header-search .header-search_form .header-search_form__label .header-search_form__input {
	width: 100%;
	display: inline-block;
	vertical-align: middle;
	height: 48px;
	font-size: 1.075em;
	color: var(--black-color);
	padding: 10px 100px 10px 20px;
	outline: none;
	border: none;
	border-radius: 25px;
	text-overflow: ellipsis;
	position: relative;
}

.header .header-search .header-search_form .header-search_form__button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 42px;
	font-size: 1.15em;
	line-height: 1;
	color: var(--bs-white);
	position: absolute;
	right: 3px;
	top: 3px;
	bottom: 3px;
	z-index: 2;
	border-radius: 25px;
	background-color: var(--primary-color);
	transition: background-color 0.2s ease;
	outline: none;
	box-shadow: none;
	border: 0;
}

.header .header-tools {
	flex: 0 1 auto;
	display: flex;
	margin-left: auto;
	gap: 0.5rem;
}

.header .header-tools .header-tool_hotline {
	height: 100%;
	position: relative;
	background-color: var(--primary-bg);
	padding: 12px 15px;
	border-radius: 5px;
	display: flex;
	color: var(--bs-white);
	line-height: 1.2;
	transition: var(--transition-default);
}

.header .header-tools .header-tool_hotline:hover {
	background-color: var(--primary-bg-hover);
}

.header .header-tools .header-tool_hotline .header-tool_hotline__icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	margin-right: 0.5rem;
	display: flex;
	align-items: center;
}

.header .header-tools .header-tool_hotline .header-tool_hotline__icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.header .header-tools .header-tool_hotline .header-tool_hotline__content .header-tool_hotline__content___title {
	font-size: 0.85em;
}

.header .header-tools .header-tool_hotline .header-tool_hotline__content .header-tool_hotline__content___value {
	font-size: 1.15em;
	font-weight: 600;
}

.header .header-tools .header-tool_user {
	position: relative;
}

.header .header-tools .header-tool_user .header-tool_user__button {
	height: 100%;
	position: relative;
	background-color: var(--primary-bg);
	padding: 12px 18px;
	border-radius: 5px;
	display: flex;
	color: var(--bs-white);
	line-height: 1.2;
	transition: var(--transition-default);
	border: 0;
	outline: none;
	font-size: 1.45em;
	align-items: center;
	justify-content: center;
}

.header .header-tools .header-tool_user:hover .header-tool_user__button {
	background-color: var(--primary-bg-hover);
}

.header .header-tools .header-tool_user .header-tool_user__dropdown {
	position: absolute;
	top: calc(100% + 15px);
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5px;
	padding: 15px;
	background-color: var(--bs-white);
	text-align: center;
	min-width: 170px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	-webkit-box-shadow: 0 2px 4px rgba(97, 97, 97, 0.18), 0 4px 8px rgba(97, 97, 97, 0.18);
	box-shadow: 0 2px 4px rgba(97, 97, 97, 0.18), 0 4px 8px rgba(97, 97, 97, 0.18);
}

.header .header-tools .header-tool_user:hover .header-tool_user__dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;

}

.header .header-tools .header-tool_user .header-tool_user__dropdown:before {
	height: 15px;
	position: absolute;
	top: -15px;
	width: 100%;
	content: "";
	display: block;
	background-color: transparent;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown:after {
	top: -10px;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-bottom: 10px solid var(--bs-white);
	position: absolute;
	display: block;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	content: "";
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__dropdown___button {
	text-align: center;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__dropdown___button a {
	background: var(--primary-color);
	border: 1px solid var(--primary-hover);
	color: var(--bs-white);
	font-size: var(--size-default);
	font-weight: 700;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 4px;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__dropdown___button a:hover {
	background: var(--primary-hover);
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__dropdown___text {
	color: #71717A;
	margin-top: 6px;
	white-space: nowrap;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__dropdown___text a:hover {
	color: var(--primary-hover);
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__list {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	margin: 0 -5px;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__list .header-tool_user__list___item {
	padding: 8px 12px;
	border-radius: 4px;
	color: var(--black-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 600;
	text-align: left;
	font-size: 1em;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__list .header-tool_user__list___item:hover {
	color: var(--bs-white);
	background-color: var(--primary-color);
}

.header .header-tools .header-tool_cart .header-tool_cart__button {
	height: 100%;
	position: relative;
	background-color: var(--primary-bg);
	padding: 12px 18px;
	border-radius: 5px;
	display: flex;
	color: var(--bs-white);
	line-height: 1.2;
	transition: var(--transition-default);
	border: 0;
	outline: none;
	font-size: 1.45em;
	align-items: center;
	justify-content: center;
	box-shadow: none;
}

.header .header-tools .header-tool_cart .header-tool_cart__button .header-tool_cart__button__number {
	background-color: #dc3545;
	color: var(--bs-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	width: 20px;
	height: 20px;
	position: absolute;
	font-size: 12px;
	border: 0;
	outline: none;
	box-shadow: none;
	top: calc(50% - 12px);
	left: calc(50% + 12px);
	transform: translate(-50%, -50%);
}

.header .header-tools .header-tool_cart:hover .header-tool_cart__button {
	background-color: var(--primary-bg-hover);
}

.section-hero {
	padding: 30px 0;
}

.section-hero .hero-item {
	user-select: none;
	border-radius: 0.45rem;
	overflow: hidden;
	position: relative;
}

.section-hero .slider-theme .slider-pagination {
	position: absolute;
	left: 50%;
	bottom: 15px;
	transform: translateX(-50%);
	z-index: 2;
}

.section-introduction .introduction-heading {
	margin-bottom: 30px;
}

.section-introduction .introduction-heading .introduction-heading_title {
	font-size: 2em;
	font-weight: 700;
	color: var(--black-color);
	line-height: 1.3;
}

.section-introduction .introduction-heading .introduction-heading_desc {
	color: var(--dark-color);
	font-size: 1.15em;
	margin-top: 12px;
}

.section-introduction .introduction-list {
	display: flex;
	justify-content: flex-start;
	gap: 16px;
}

.section-introduction .introduction-list .introduction-item {
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding: 16px;
	border: 1px solid var(--primary-color);
	background-color: rgba(var(--primary-rgb), 0.05);
	width: 40%;
}

.section-introduction .introduction-list .introduction-item .introduction-item_icon {
	flex-shrink: 0;
	width: 56px;
	height: auto;
}

.section-introduction .introduction-list .introduction-item .introduction-item_content .introduction-item_content__title {
	font-size: 1.225em;
	font-weight: 700;
	color: var(--black-color);
}

.section-introduction .introduction-list .introduction-item .introduction-item_content .introduction-item_content__desc {
	color: var(--dark-color);
	font-size: 1em;
	margin-top: 4px;
}

.section-introduction .introduction-list .introduction-item .introduction-item_content .introduction-item_content__desc p:last-of-type,
.section-introduction .introduction-list .introduction-item .introduction-item_content .introduction-item_content__desc ol:last-of-type,
.section-introduction .introduction-list .introduction-item .introduction-item_content .introduction-item_content__desc ul:last-of-type {
	margin-bottom: 0;
}

.section-overview {
	background-color: var(--primary-color);
}

.section-overview .overview-item {
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding: 16px;
	background-color: var(--bs-white);
	height: 100%;
}

.section-overview .overview-item .overview-item_icon {
	width: 52px;
	height: auto;
	flex-shrink: 0;
}

.section-overview .overview-item .overview-item_content .overview-item_content__title {
	font-size: 1.225em;
	font-weight: 700;
	color: var(--black-color);
}

.section-overview .overview-item .overview-item_content .overview-item_content__desc {
	color: var(--dark-color);
	font-size: 1em;
	margin-top: 4px;
}

.section-overview .overview-item .overview-item_content .overview-item_content__desc p:last-of-type,
.section-overview .overview-item .overview-item_content .overview-item_content__desc ol:last-of-type,
.section-overview .overview-item .overview-item_content .overview-item_content__desc ul:last-of-type {
	margin-bottom: 0;
}

.section-partner .partner-item {
	height: 100px;
	padding: 15px;
	border-radius: 12px;
	background: var(--bs-white);
	box-shadow: rgba(14, 63, 126, 0.02) 0 0 0 1px, rgba(42, 51, 69, 0.02) 0 1px 1px -0.5px, rgba(42, 51, 70, 0.02) 0 3px 3px -1.5px, rgba(42, 51, 70, 0.02) 0 6px 6px -3px, rgba(14, 63, 126, 0.02) 0 12px 12px -6px, rgba(14, 63, 126, 0.02) 0 24px 24px -12px;
}

.section-articles .section-articles_overlay {
	position: absolute;
	overflow: hidden;
	z-index: -1;
	top: 0;
	opacity: 0.8;
	width: 100%;
	height: 100%;
}

.section-articles .section-articles_overlay:after {
	position: absolute;
	overflow: hidden;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(var(--bs-black-rgb), 0.075);
	content: "";
}

.section-articles .swiper {
	padding: 0.5rem;
}

.article-card {
	border: 0;
	height: 100%;
	border-radius: 0.3rem;
}

.article-card .card-header {
	border: 0;
	position: relative;
	padding: 0;
	border-radius: 0.3rem;
	overflow: hidden;
}

.article-card .card-header::before {
	content: "";
	background-color: var(--bs-white);
	height: calc(100% + 150px);
	left: -40%;
	position: absolute;
	top: -75px;
	transform: rotate(35deg);
	transition: all 2600ms cubic-bezier(0.19, 1, 0.22, 1);
	width: 50px;
	z-index: 1;
	opacity: 0;
}

.article-card:hover .card-header::before {
	left: 140%;
	transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
	opacity: 0.25;
}

.article-card .card-header img {
	transition: transform 1s cubic-bezier(.15, .75, .5, 1);
}

.article-card:hover .card-header img {
	transform: scale(1.05);
	opacity: 0.7;
}

.article-card .card-body {
	padding: 1rem;
	position: relative;
	display: flex;
	flex-direction: column;
}

.article-card .card-body .card-title {
	margin-top: 1.5rem;
	margin-bottom: 0;
	font-size: 1.15em;
	font-weight: 600;
	line-height: 1.3;
	--line: 2;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: var(--line);
	line-clamp: var(--line);
	-webkit-box-orient: vertical;
	color: var(--black-color);
	transition: var(--transition-default);
}

.article-card:hover .card-body .card-title {
	color: var(--primary-color);
}

.article-card .card-body .card-desc {
	color: var(--dark-color);
	font-weight: 400;
	--line: 3;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: var(--line);
	line-clamp: var(--line);
	-webkit-box-orient: vertical;
	margin-top: 0.5rem;
	margin-bottom: 1rem;
}

.article-card .card-body .card-action {
	margin-top: auto;
	position: relative;
	padding-bottom: 5px;
	--color: #282d30;
	color: var(--color);
	display: inline-flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 5px;
	z-index: 3;
	width: max-content;
}

.article-card .card-body .card-action:hover {
	--color: var(--primary-color);
	transition: var(--transition-default);
}

.article-card .card-body .card-action::before, .article-card .card-body .card-action::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	background-color: var(--color);
}

.article-card .card-body .card-action::before {
	transform: scaleX(1);
	transform-origin: 100% 50%;
	transition: transform .6s cubic-bezier(.165, .84, .44, 1) 0.3s;
}

.article-card .card-body .card-action::after {
	transform: scaleX(0);
	transform-origin: 0 50%;
	transition: transform .6s cubic-bezier(.165, .84, .44, 1);
}

.article-card .card-body .card-action:hover:before {
	transform: scaleX(0);
	transition: transform .6s cubic-bezier(.165, .84, .44, 1);
}

.article-card .card-body .card-action:hover:after {
	transform: scaleX(1);
	transition: transform .6s cubic-bezier(.165, .84, .44, 1) 0.3s;
}

.article-card .card-body .card-date {
	font-size: 0.85em;
	padding: 6px 15px;
	width: max-content;
	position: absolute;
	left: -11px;
	top: 2px;
	z-index: 1;
	font-weight: 600;
	background-color: var(--primary-color);
	color: var(--bs-white);
}

.article-card .card-body .card-date::before {
	position: absolute;
	content: "";
	top: -10px;
	left: 0;
	color: var(--primary-color);
	border-bottom: solid currentColor;
	border-top: solid transparent;
	border-right: solid currentColor;
	border-left: solid transparent;
	border-width: 5px;
}

.section-highlight {
	background-color: var(--primary-color);
}

.section-highlight .highlight-item {
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 100%;
}

.section-highlight .highlight-item .highlight-item_icon {
	padding: 15px;
	border-radius: 12px;
	background: var(--bs-white);
	box-shadow: rgba(14, 63, 126, 0.02) 0 0 0 1px, rgba(42, 51, 69, 0.02) 0 1px 1px -0.5px, rgba(42, 51, 70, 0.02) 0 3px 3px -1.5px, rgba(42, 51, 70, 0.02) 0 6px 6px -3px, rgba(14, 63, 126, 0.02) 0 12px 12px -6px, rgba(14, 63, 126, 0.02) 0 24px 24px -12px;
	width: max-content;
}

.section-highlight .highlight-item .highlight-item_icon img {
	width: 32px;
}

.section-highlight .highlight-item .highlight-item_content .highlight-item_content__title {
	font-size: 1.225em;
	font-weight: 700;
	color: var(--bs-white);
}

.section-highlight .highlight-item .highlight-item_content .highlight-item_content__desc {
	color: var(--bs-white);
	font-size: 1em;
	margin-top: 4px;
}

.section-highlight .highlight-item .highlight-item_content .highlight-item_content__desc p:last-of-type,
.section-highlight .highlight-item .highlight-item_content .highlight-item_content__desc ol:last-of-type,
.section-highlight .highlight-item .highlight-item_content .highlight-item_content__desc ul:last-of-type {
	margin-bottom: 0;
}

.footer {
	padding: 30px 0;
	border-top: 5px solid var(--primary-color);
}

.footer .footer-logo {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	height: 80px;
	margin-top: 0;
}

.footer .footer-item .footer-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-right: 45px;
}

.footer .footer-item .footer-info .footer-info_name {
	font-size: 1.3em;
	color: var(--black-color);
	font-weight: 700;
}

.footer .footer-item .footer-info .footer-info_link {
	color: var(--dark-color);
	font-weight: 400;
	font-size: 1.075em;
}

.footer .footer-item .footer-info .footer-info_link span {
	font-weight: 700;
}

.footer .footer-item .footer-info .footer-info_link span i {
	margin-right: 4px;
	color: var(--primary-color);
	width: 16px;
}

.footer .footer-item .footer-info .footer-info_link a {
	color: var(--dark-color);
}

.footer .footer-item .footer-info .footer-info_link a:hover {
	color: var(--primary-color);
}

.footer .footer-item .footer-info .footer-info_image {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	width: max-content;
}

.footer .footer-item .footer-info .footer-info_image img {
	height: 60px;
}

.footer .footer-item .footer-title {
	font-size: 1.3em;
	color: var(--black-color);
	font-weight: 700;
	margin-bottom: 12px;
}

.footer .footer-item .footer-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 8px;
}

.footer .footer-item .footer-list .footer-list_item {
	width: calc(50% - 4px);
	color: var(--dark-color);
	font-weight: 400;
	font-size: 1.075em;
}

.footer .footer-item .footer-list .footer-list_item:hover {
	color: var(--primary-color);
}

.footer .footer-item .footer-social {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.footer .footer-item .footer-social [class*=footer-social_] {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bs-white);
	background-color: var(--primary-color);
	transition: var(--transition-default);
}

.footer .footer-item .footer-social .footer-social_youtube {
	background-color: #CB2027;
}

.footer .footer-item .footer-social .footer-social_facebook {
	background-color: #365493;
}

.footer .footer-item .footer-social .footer-social_tiktok {
	background-color: #010101;
}

.footer .footer-item .footer-social .footer-social_mess {
	background-color: #0a7cff;
}

.footer .footer-item .footer-social .footer-social_instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer .footer-item .footer-social [class*=footer-social_]:hover {
	transform: translateY(-3px);
}

.footer .footer-item .footer-image {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 1.075em;
	font-weight: 700;
	color: var(--dark-color);
}

.footer .footer-item .footer-image img {
	height: 36px;
}

.footer .footer-item + .footer-item {
	margin-top: 24px;
}

.footer .footer-bottom {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid var(--bs-gray-100);
}

.footer .footer-copyright {
	color: var(--gray-color);
}