/* Fonts */
:root {
	--default-font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Segoe UI", sans-serif;
	--nav-font: "Poppins", sans-serif;
}

:root {
	--background-color: #ffffff;
	--default-color: #444444;
	--heading-color: #151515;
	--accent-color: #cc9933;
	--surface-color: #ffffff;
	--contrast-color: #312f2f;
}

:root {
	--nav-color: #0a0f14;
	--nav-hover-color: #cc9933;
	--nav-mobile-background-color: #ffffff;
	--nav-dropdown-background-color: #ffffff;
	--nav-dropdown-color: #212529;
	--nav-dropdown-hover-color: #cc9933;
}

.light-background {
	--background-color: #f9f9f9;
	--surface-color: #ffffff;
}

.dark-background {
	--background-color: #292929;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #252525;
	--contrast-color: #2a2727;
}

:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
	position: relative;
}

a {
	color: var(--default-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.gallery-item {
	position: relative;
	overflow: hidden;
	display: block;
}

.gallery-item:before {
	content: "";
	background-color: color-mix(in srgb, var(--background-color), transparent 50%);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	transition: 0.3s all ease;
}

.gallery-item img {
	transition: 0.5s all ease;
	transform: scale(1);
	object-fit: cover;
	width: 100%;
	height: 300px;
}

.gallery-item.artist-gallery img {
	height: auto;
}

.gallery-item .gallery-item-contents {
	z-index: 9;
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	transition: 0.3s all ease;
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
}

.gallery-item .gallery-item-title {
	/* color: var(--accent-color); */
	text-transform: uppercase;
}

.gallery-item:hover:before {
	opacity: 1;
	visibility: visible;
}

.gallery-item:hover .gallery-item-contents {
	transform: translateY(0%);
	opacity: 1;
	visibility: visible;
}

.gallery-item:hover img {
	transform: scale(1.2);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: 14px;
	position: relative;
}

.footer .footer-about .logo {
	line-height: 1;
}

.footer .footer-about .logo img {
	max-height: 40px;
}

.footer .footer-about .logo span {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 1px;
	font-family: var(--heading-font);
	color: var(--heading-color);
}

.footer .footer-about p {
	font-size: 14px;
	font-family: var(--heading-font);
}

.footer .social-links {
	gap: 3px;
}

.footer .social-links .btn-dark {
	background: none;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.filter-fff {
	filter: brightness(0.05) invert(0.75);
}

.footer .social-links>img {
	width: 15%;
}

.footer h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-links {
	margin-bottom: 30px;
}

.footer .footer-links ul {
	padding: 0;
	margin: 0;
}

.footer .footer-links ul i {
	margin-right: 4px;
	font-size: 12px;
	line-height: 0;
	color: var(--accent-color);
}

.footer .footer-links ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
}

.footer .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-links ul a,
.footer-list a {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	display: inline-block;
	line-height: 1;
}

.footer .footer-links ul a:hover {
	color: var(--accent-color);
}

.footer .footer-contact p {
	display: flex;
	margin-bottom: 1px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-contact p i {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	color: var(--accent-color);
}

.footer-top .container {
	padding: 30px calc(var(--bs-gutter-x) * .5) 0;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright {
	padding: 30px 0;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright a {
	color: inherit;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: #000;
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ffffff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.fade-out {
	opacity: 0;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: var(--default-color);
	background-color: var(--background-color);
	position: relative;
	padding: 0 !important;
}

/* .page-title .heading {
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
} */
.img-place figure {
	margin: 0;
	text-align: center;
	height: 400px;
}

.img-place figure img {
	height: 100%;
}

.page-title h1 {
	font-size: 38px;
	font-weight: 700;
	color: var(--accent-color);
}

.breadcrumbs {
	background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
	padding: 20px 0;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
}

.breadcrumbs li+li {
	padding-left: 10px;
}

.breadcrumbs li+li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.breadcrumbs li.current {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 30px 0;
	scroll-margin-top: 80px;
	overflow: clip;
}

.main {
	min-height: calc(100vh - 333px);
}

@media (max-width: 1199px) {

	section,
	.section {
		scroll-margin-top: 58px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding: 30px 0;
	/* margin-bottom: 30px; */
	position: relative;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 0;
	position: relative;
	z-index: 2;
	color: var(--contrast-color);
}

.section-title span {
	position: absolute;
	top: 4px;
	color: color-mix(in srgb, var(--heading-color), transparent 95%);
	left: 0;
	right: 0;
	z-index: 1;
	font-weight: 700;
	font-size: 52px;
	text-transform: uppercase;
	line-height: 1;
	display: none;
}

.section-title p {
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}

.section-title .title-shape {
	width: 200px;
	height: 20px;
	margin: 0 auto;
	color: var(--accent-color);
	opacity: 0.5;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	display: none;
}

.section-title .title-shape svg {
	width: 100%;
	height: 100%;
}

@media (max-width: 575px) {
	.section-title h2 {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.section-title span {
		font-size: 38px;
	}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	padding: 0;
}

.hero .carousel {
	width: 100%;
	min-height: 76vh;
	padding: 0;
	margin: 0;
	background-color: var(--background-color);
	position: relative;
}

.hero img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero .carousel-item {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.hero .carousel-item:before {
	content: "";
	/* background: color-mix(in srgb, var(--background-color), transparent 60%); */
	position: absolute;
	inset: 0;
	z-index: 2;
}

.hero .carousel-item::before {
	content: "";
	/* background-color: color-mix(in srgb, var(--background-color), transparent 60%); */
	position: absolute;
	inset: 0;
}

.hero .carousel-container {
	position: absolute;
	inset: 90px 64px 64px 16%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	z-index: 3;
}

.hero h2,
.artist-name h2 {
	margin-bottom: 30px;
	font-size: 48px;
	font-weight: 700;
	font-family: var(--nav-font);
	animation: fadeInUp 1s both;
	/* color: var(--accent-color); */
}

@media (max-width: 768px) {

	.hero h2,
	.artist-name h2 {
		font-size: 30px;
	}
}

.carousel-control-next,
.carousel-control-prev {
	opacity: 1;
}

.hero p,
.artist-name p {
	animation: fadeInUp 1s both 0.2s;
}

@media (min-width: 1024px) {

	.hero h2,
	.hero p {
		max-width: 60%;
	}
}

.hero .btn-get-started,
.artist-official {
	color: #fff;
	background: var(--accent-color);
	font-family: var(--heading-font);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 16px 32px;
	border-radius: 4px;
	transition: 0.4s;
	margin: 10px 0;
	animation: fadeInUp 1s both 0.4s;
	text-transform: uppercase;
}

.hero .btn-get-started:hover,
.artist-official:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: #fff;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
	width: 10%;
	transition: 0.3s;
	opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
	opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
	opacity: 0.9;
}

@media (min-width: 1024px) {

	.hero .carousel-control-prev,
	.hero .carousel-control-next {
		width: 5%;
	}
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
	background: none;
	font-size: 32px;
	line-height: 1;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.about-us p {
	font-size: 18px;
	text-align: justify;
	text-indent: 36px;
	line-height: 36px;
	margin: 18px 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-wrapper {
	height: auto;
}

.clients .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	opacity: 1;
	background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# dealer Section
--------------------------------------------------------------*/
.dealer .area-select,
.service .area-select {
	width: 120px;
	height: 40px;
}

.form-control:focus {
	border-color: var(--accent-color);
	box-shadow: none;
}

.dealer .dealer-item {
	background-color: var(--surface-color);
	/* border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%); */
	padding: 20px;
	height: 100%;
	transition: all ease-in-out 0.3s;
}

.dealer .dealer-item i.bi {
	vertical-align: middle;
}

.dealer .dealer-item h3 {
	margin: 10px 0 15px 0;
	font-size: 18px;
	transition: 0.3s;
	/* color: var(--accent-color); */
}

.dealer .dealer-item p {
	line-height: 24px;
	font-size: 15px;
	margin-bottom: 0;
}

.dealer .dealer-item:hover {
	box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
	transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
	padding: 80px 0;
	position: relative;
	clip-path: inset(0);
}

.call-to-action img {
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.call-to-action:before {
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 50%);
	position: absolute;
	inset: 0;
	z-index: 2;
}

.call-to-action .container {
	position: relative;
	z-index: 3;
}

.call-to-action h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--default-color);
}

.call-to-action p {
	color: var(--default-color);
}

.call-to-action .cta-btn {
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 40px;
	border-radius: 5px;
	transition: 0.5s;
	margin: 10px;
	border: 2px solid var(--default-color);
	color: var(--default-color);
}

.call-to-action .cta-btn:hover {
	background: var(--accent-color);
	color: var(--background-color);
	border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/
.product .product-filters {
	padding: 0;
	margin: 0 auto 20px auto;
	text-align: center;
}

.product .product-filters li {
	cursor: pointer;
	display: inline-block;
	padding: 8px 20px 10px 20px;
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 5px;
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
	font-family: var(--heading-font);
}

.product .product-filters li:hover,
.product .product-filters li.filter-active {
	color: var(--contrast-color);
	background-color: var(--accent-color);
}

.product .product-filters li:first-child {
	margin-left: 0;
}

.product .product-filters li:last-child {
	margin-right: 0;
}

@media (max-width: 575px) {
	.product .product-filters li {
		font-size: 14px;
		margin: 0 0 10px 0;
	}
}

.product .product-item {
	position: relative;
	overflow: hidden;
}

.product .product-item .product-info {
	opacity: 0;
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: -100%;
	z-index: 3;
	transition: all ease-in-out 0.5s;
	background: color-mix(in srgb, var(--background-color), transparent 10%);
	padding: 15px;
}

.product .product-item .product-info h4 {
	font-size: 18px;
	font-weight: 600;
	padding-right: 50px;
}

.product .product-item .product-info p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	font-size: 14px;
	margin-bottom: 0;
	padding-right: 50px;
}

.product .product-item .product-info .preview-link,
.product .product-item .product-info .details-link {
	position: absolute;
	right: 50px;
	font-size: 24px;
	top: calc(50% - 14px);
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	transition: 0.3s;
	line-height: 0;
}

.product .product-item .product-info .preview-link:hover,
.product .product-item .product-info .details-link:hover {
	color: var(--accent-color);
}

.product .product-item .product-info .details-link {
	right: 14px;
	font-size: 28px;
}

.product .product-item:hover .product-info {
	opacity: 1;
	bottom: 0;
}

/*--------------------------------------------------------------
# Product-deatil.html Section
--------------------------------------------------------------*/
.product-base-info {
	text-align: right;
	text-transform: uppercase;
	line-height: 30px;
}

.product-base-info .color-item {
	margin-left: 10px;
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #0052bb;
	vertical-align: middle;
}

.product-intro-item {
	margin-bottom: 40px;
}

.product-intro-item ul {
	margin: 0;
	padding: 0;
}

.product-intro-item ul li {
	padding-bottom: 10px;
}

.product-intro-item img {
	width: 100%;
}

.product-intro-item ul li>div:first-child {
	font-weight: bold;
}

.arrow-icon {
	cursor: pointer;
}

.features-list li {
	margin-bottom: 40px;
}

.features-list li:last-child {
	margin: 0;
}

/*--------------------------------------------------------------
# Agent Section
--------------------------------------------------------------*/
.agent .member {
	text-align: center;
	position: relative;
	box-shadow: 1px 0 0 0 #e8e8e8, 0 1px 0 0 #e8e8e8, 1px 1px 0 0 #e8e8e8, 1px 0 0 0 #e8e8e8 inset, 0 1px 0 0 #e8e8e8 inset;
	height: 140px;
	display: flex;
	align-items: center;
	transition: all 0.3s;
}

.agent .member:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.agent .member a {
	display: block;
	margin: auto;
}

.agent .member img {
	padding: 20px;
	width: 80%;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
	height: 100%;
	padding: 20px 0;
}

.contact .info-item {
	width: 100%;
	margin-bottom: 20px;
	padding: 20px;
	color: var(--contrast-color);
}

.contact .info-item:last-child {
	margin-bottom: 0;
}

.contact .info-item i {
	font-size: 20px;
	color: var(--contrast-color);
	background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
	margin-right: 15px;
}

.contact .info-item h3 {
	color: var(--contrast-color);
	font-size: 20px;
	padding: 0;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}

.contact .info-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 14px;
}

.contact .info-item:hover i {
	background: var(--contrast-color);
	color: var(--accent-color);
}

.contact .contact-form {
	background-color: var(--surface-color);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 100%;
	padding: 30px;
}

.contact .contact-form input[type=text],
.contact .contact-form input[type=email],
.contact .contact-form textarea {
	font-size: 14px;
	padding: 10px 15px;
	box-shadow: none;
	border-radius: var(--bs-border-radius);
	color: var(--default-color);
	background-color: var(--surface-color);
	border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form input[type=text]:focus,
.contact .contact-form input[type=email]:focus,
.contact .contact-form textarea:focus {
	border-color: var(--accent-color);
}

.contact .contact-form input[type=text]::placeholder,
.contact .contact-form input[type=email]::placeholder,
.contact .contact-form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-form button[type=submit],
.toIndex {
	color: var(--contrast-color);
	background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
	border: 0;
	padding: 10px 30px;
	transition: 0.4s;
	border-radius: var(--bs-border-radius);
}

.contact .contact-form button[type=submit]:hover,
.toIndex:hover,
.btn-warning.search:hover {
	background: var(--contrast-color);
	color: var(--accent-color);
}

.btn-warning.search {
	color: var(--contrast-color);
	background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
	--bs-btn-border-color: var(--bs-border-color);
}

.btn-warning.search:hover {
	--bs-btn-hover-border-color: var(--contrast-color);
}

textarea.form-control {
	min-height: calc(12em + .75rem + calc(var(--bs-border-width) * 2));
}

.mr-30 {
	margin-right: 30px;
}

.captcha {
	cursor: pointer;
	width: 100%;
	height: 43px;
	object-fit: contain;
}

.form-alert {
	position: absolute;
	top: -65px;
	margin: auto;
	right: 15px;
}

/* contactForm Messages
------------------------------*/
.contact-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.contact-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.contact-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.contact-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	animation: contact-form-loading 1s linear infinite;
}

@keyframes contact-form-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-info {
	background-color: var(--surface-color);
	padding: 30px;
	box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.product-info h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.product-info ul {
	padding: 0;
	font-size: 15px;
}

.product-info ul li+li {
	margin-top: 10px;
}

.product-description {
	padding-top: 30px;
}

.product-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}

.product-description p {
	padding: 0;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# News Page Section
--------------------------------------------------------------*/
.news-info {
	height: 100%;
}

.news-txt {
	flex: 1;
}

.video-news-card {
	background-color: var(--surface-color);
	color: var(--default-color);
	box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	height: 100%;
	border: 0;
}

.video-news-title {
	padding: 15px;
	text-align: justify;
	margin: 0;
}

/*--------------------------------------------------------------
# Brand-intro Section
--------------------------------------------------------------*/
.page-title .heading .brand-intro {
	padding: 80px 0;
}

.brand-intro p {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.brand-product .card {
	background-color: var(--surface-color);
	color: var(--default-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	position: relative;
	border-radius: 0;
	height: 100%;
}

.brand-product .card .card-img {
	overflow: hidden;
	margin-bottom: 15px;
	border-radius: 0;
}

.brand-product .card .card-img img {
	transition: 0.3s ease-in-out;
}

.brand-product .card h3 {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 5px;
	padding: 10px 30px;
	text-transform: uppercase;
}

.brand-product .card a {
	color: var(--heading-color);
	transition: 0.3;
}

.brand-product .card a:hover,
.dealer-name {
	color: var(--accent-color);
}

.brand-product .card p {
	padding: 0 30px;
	margin-bottom: 30px !important;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	font-size: 15px;
}

.brand-product .card:hover .card-img img {
	transform: scale(1.1);
}

.brand {
	overflow: hidden;
}

.brand .nav-tabs {
	border: 0;
}

.brand .nav-link {
	border: 0;
	padding: 12px 15px;
	transition: 0.3s;
	color: var(--heading-color);
	border-radius: 0;
	border-right: 2px solid;
	border-color: color-mix(in srgb, var(--accent-color), transparent 25%);
	font-weight: 600;
	font-size: 15px;
}

.brand .nav-link:hover {
	color: var(--accent-color);
	border-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.brand .nav-link.active {
	color: var(--contrast-color);
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.brand .tab-pane.active {
	animation: fadeIn 0.5s ease-out;
}

.brand .details h3 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
}

.brand .details p {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.brand .details p:last-child {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.brand .nav-link {
		border: 0;
		padding: 15px;
	}

	.brand .nav-link.active {
		color: var(--accent-color);
		background: var(--accent-color);
	}

	.agent .member {
		height: 100px;
	}
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-box {
	background-color: var(--surface-color);
	padding: 20px;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.product-box+.product-box {
	margin-top: 30px;
}

.product-box h4 {
	font-size: 20px;
	font-weight: 700;
	border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.product-box .product-list {
	background-color: var(--surface-color);
	border: none;
}

.product-box .product-list li {
	width: 100%;
}

.product-box .product-list li a {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	background-color: color-mix(in srgb, var(--default-color), transparent 96%);
	display: flex;
	align-items: center;
	padding: 12px 15px;
	margin-top: 15px;
	transition: 0.3s;
}

.product-box .product-list li a span {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.product-box .product-list li:first-child a {
	margin-top: 0;
}

.product-box .product-list a i {
	font-size: 16px;
	margin-right: 8px;
}

.product-box .product-list li a.active,
.product-box .product-list li:hover a {
	color: var(--contrast-color);
	background-color: var(--accent-color);
	border-radius: 0;
}

.product-box .product-list a.active i,
.product-box .product-list li:hover i {
	color: var(--contrast-color);
}

.product-box .product-list a:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
	color: var(--accent-color);
}

.product-details .carousel-inner {
	width: 100%;
	height: 500px;
	margin-bottom: 20px;
}

.carousel-control-next,
.carousel-control-prev,
.carousel-control-next:hover,
.carousel-control-prev:hover {
	color: var(--accent-color) !important;
}

.carousel-indicators [data-bs-target] {
	background-color: var(--accent-color);
}

.product-details .carousel-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.intro-con .hero .carousel {
	min-height: auto;
}

.product-details h3 {
	font-size: 22px;
}

.product-details p {
	font-size: 15px;
}

.product-details ul.brand-feature {
	padding: 0 calc(var(--bs-gutter-x) * .5);
	font-size: 15px;
}

.product-details ul.brand-feature li {
	padding: 5px;
	display: flex;
	/* align-items: center; */
}

.product-details ul.brand-feature i {
	font-size: 16px;
	margin-right: 8px;
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service&suppot Page
--------------------------------------------------------------*/
.service-title {
	padding-bottom: 10px;
	border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
	background-color: var(--surface-color);
	position: relative;
	padding: 20px;
	margin-bottom: 15px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	border-radius: 5px;
	overflow: hidden;
}

.faq .faq-container .faq-item h3 {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin: 0 30px 0 0;
	transition: 0.3s;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.faq .faq-container .faq-item h3 .num {
	color: var(--accent-color);
	padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
	margin-bottom: 0;
	overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	line-height: 0;
	transition: 0.3s;
	cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-active {
	background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
	border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
	color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
	transform: rotate(90deg);
	color: var(--accent-color);
}

/* 产品固件说明 */
.file-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.file-item {
	display: flex;
	/* align-items: center; */
	justify-content: space-between;
	padding-bottom: 0.5rem;
	border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

.download {
	text-align: right;
}

.sort-label {
	margin-right: 15px;
}

.brand-video img {
	width: 100%;
}

/* 保修条款 */
.policy-content ul {
	padding: 0 20px;
	list-style: auto;
}

/* 艺术家详情 */
.artist-name {
	position: absolute;
	z-index: 11;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 30px;
}

.artist-info {
	width: 100%;
	min-height: 500px;
	padding: 0;
	margin: 0;
	background-color: var(--background-color);
	position: relative;
}

.artist-info .artist-cover {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	background-position: center !important;
}

.artist-info:before {
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 60%);
	position: absolute;
	inset: 0;
	z-index: 2;
}

.artist-info::before {
	content: "";
	background-color: color-mix(in srgb, var(--background-color), transparent 60%);
	position: absolute;
	inset: 0;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	--background-color: #242424;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--contrast-color: #ffffff;
	color: var(--default-color);
	transition: all 0.5s;
	z-index: 997;
	background-color: var(--background-color);
}

.header .branding {
	background-color: var(--background-color);
	min-height: 80px;
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 36px;
	margin-right: 8px;
}

.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--heading-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--surface-color);
		padding: 30px 20px;
		margin-left: 2px;
		font-size: 16px;
		font-family: var(--nav-font);
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
		cursor: pointer;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu li:hover>a,
	.navmenu .active,
	.navmenu .active:focus {
		/* color: var(--contrast-color); */
		color: var(--nav-hover-color);
	}

	.about-us .row {
		row-gap: 10px;
		width: 65%;
		margin: auto;
		justify-content: center;
		align-items: center;
	}
}

/* Mobile Navigation */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--surface-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu>ul {
		display: block;
	}
}

.form-check-input:checked {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.form-check-input:focus {
	border-color: var(--accent-color);
	box-shadow: none;
}

.form-check-label {
	cursor: pointer;
}

.xd-btn {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	background-color: var(--background-color);
	display: inline-block;
	padding: 2px 10px;
	border-radius: 4px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
	transition: none;
	font-family: var(--heading-font);
	font-size: 14px;
	transition: 0.3s;
}

.xd-btn:hover {
	cursor: pointer;
	border-color: var(--contrast-color);
	background: var(--contrast-color);
	color: var(--accent-color);
}

/* .pagination */
.pagination {
	--bs-pagination-active-bg: var(--contrast-color);
	--bs-pagination-active-border-color: var(--contrast-color);
	--bs-pagination-active-color: var(--accent-color);
}

.page-link {
	color: var(--contrast-color);
}

.page-link:hover,
.page-link:focus {
	color: var(--accent-color);
	background: var(--contrast-color);
	border-color: var(--contrast-color);
	box-shadow: none;
}

[v-cloak] {
	display: none;
}

.select2-container .select2-selection--single {
	height: 38px;
	border-color: var(--bs-border-color);
}

.select2-container--default .select2-selection--single .select2-selection__clear {
	padding-top: 7px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 36px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 38px;
}

input::placeholder,
.select2-selection__placeholder {
	font-size: 14px;
	color: #999;
}

/* 404 */
.error-404 {
	padding: 30px;
}

.error-404 h1 {
	font-size: 180px;
	font-weight: 700;
	color: var(--accent-color);
}

.error-404 h2 {
	font-size: 24px;
	color: var(--default-color);
	margin-bottom: 30px;
}

.error-404 .btn {
	background: #51678f;
	color: #fff;
	padding: 8px 30px;
}

.error-404 .btn:hover {
	background: #3e4f6f;
}

@media (min-width: 992px) {
	.error-404 img {
		max-width: 50%;
	}
}