
.default-transition-title .default-transition-title-inner {
	position: relative;
	overflow: hidden;
}
.default-transition-title .default-transition-text {
	position: relative;
	display: flex;
	align-items: center;
	transform: translateZ(0);
	transform-style: preserve-3d;
	transition: color .4s cubic-bezier(.165, .84, .44, 1), transform .4s cubic-bezier(.165, .84, .44, 1) .05s;
}

.default-button .default-transition-title-inner {
	z-index: 2;
}
.default-transition-title .default-transition-text:after {
	content: attr(title);
	color: currentColor;
	position: absolute;
	inset: 100% auto auto 0%;
}
@media screen and (min-width: 1024px) {
	.default-transition-title:hover .default-transition-text {
		transform: translate3d(0, -100%, 0);
	}
}


.article-card-button__circle {
	position: relative;
	width: 40px;
	min-width: 40px;
	height: 20px;
	min-height: 20px;
	overflow: hidden;
}
.article-card-button__circle-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.article-card-button__circle-bg {
	stroke: rgb(var(--theme-default-border-color));
}
.article-card-button__circle-fill {
	fill: none;
	stroke: rgba(var(--color-foreground));
	stroke-width: 1;
	transition: stroke-dashoffset 1s cubic-bezier(.83, 0, .17, 1) 0ms;
}
.article-card:hover .article-card-button__circle-fill {
	stroke-dashoffset: 0;
}

.article-card-button__arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transition: transform 1s cubic-bezier(.83, 0, .17, 1) 0ms;
	color: var(--theme-default-text-color);
}
.article-card-button__arrow--1 {
	transform: translate(-4rem, -50%);
}
.article-card-button__arrow--2 {
	transform: translate(-50%, -50%);
}
.article-card:hover .article-card-button__arrow--1 {
	transform: translate(-50%, -50%);
}
.article-card:hover .article-card-button__arrow--2 {
	transform: translate(40px, -50%);
}

.default-button {
	background-color: var(--theme-button-bg-w);
	color: var(--theme-button-color-b);
	padding: 0 30px;
	height: 40px;
	border-radius: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	overflow: hidden;
	position: relative;
	justify-content: center;
}
.default-button .arrow {
	position: relative;
	width: 14px;
	height: 14px;
	margin-left: 4px;
	overflow: hidden;
	z-index: 2;
}
.default-button .arrow .iconfont {
	position: relative;
	font-size: 14px;
	transform: translateZ(0);
	transform-style: preserve-3d;
	transition: color .4s cubic-bezier(.165, .84, .44, 1), transform .3s ease .07s;
}
.default-button .arrow .iconfont:nth-child(2) {
	position: absolute;
	top: 100%;
	left: -100%;
}
.default-button .btn_mask {
	position: absolute;
	display: block;
	top: 50%;
	left: -5%;
	width: 110%;
	padding-top: 100%;
	z-index: 1;
	opacity: 0;
	border-radius: 50%;
	transform: translateY(-50%) scale(0) translateZ(0);
	transition: transform linear(0, .2342, .4374, .6093 37.49%, .6835, .7499, .8086, .8593, .9023, .9375, .9648, .9844, .9961, 1) .7s, opacity ease-in-out .4s;
	background-color: rgb(var(--theme-button-hover));
}
.default-button:hover .arrow .iconfont {
	transform: translate3d(100%, -75%, 0);
}
.default-button:hover .btn_mask {
	opacity: 1;
	transform: translateY(-50%) scale(1) translateZ(0);
	transform-origin: 45.5438% 98.5742%;
}
.default-button-dark {
	background-color: var(--theme-button-bg-d);
	color: #fff;
}
.default-button-dark:hover .btn_mask {
	opacity: .2;
}

.page-bottom{
	background-color: rgb(var(--theme-section-gb));
}
.page-bottom .outer {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: var(--section-padding-all);
}
.page-bottom .outer .inner {
	background-color: #262D33;
	padding-top: 56px;
	padding-bottom: 110px;
	border-radius: var(--border-radius-block);
	overflow: hidden;
}
[data-scheme=dark] .page-bottom .outer .inner {
	background-color: rgb(24, 24, 24);
}

.img-scale-show {
	overflow: hidden;
}
.img-scale-show img {
	transform: scale(1.1);
	transition: linear 1.5s;
}
.img-scale-show.clear-transition img{
	transition: none;
}
.img-scale-show.animated img {
	transform: scale(1);
}

.follow-mouse .follow-button {
	position: absolute;
	z-index: 3;
	cursor: none;
	transform: translate(-50%, -50%);
	transition: opacity .3s cubic-bezier(.39, .575, .565, 1), visibility .3s;
	pointer-events: none;
}
.follow-mouse .follow-button.hidden {
	opacity: 0;
}

.edit-mun {
	position: relative;
	width: 12rem;
	display: flex;
	border: .1rem solid rgb(var(--color-border));
	background-color: transparent;
	border-radius: 10rem;
	width: 120px;
	height: 40px;
}
.edit-mun button {
	font-size: 18px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--theme-default-text-color);
}
.edit-mun button.disabled {
	opacity: .5;
}
.edit-mun input {
	color: var(--theme-default-text-color);
	text-align: center;
	background-color: transparent;
	border: 0;
	width: 40px;
	flex-grow: 1;
	-webkit-appearance: none;
	appearance: none;
}

.crumb{
	background-color: rgb(var(--theme-section-gb));
	overflow: hidden;
}
.crumb .inner{
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: var(--section-padding-horizontal);
}
.crumb .inner ul{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin-top: 40px;
	flex-wrap: wrap;
}
.crumb .inner ul li{
	font-size: 14px;
	color: var(--theme-default-text-color);
}
.crumb .inner ul li a{
	color: rgb(var(--color-foreground-secondary));
}
.crumb .inner h2{
	text-align: center;
	font-size: var(--page-title-font-size);
	letter-spacing: var(--page-title-letter-spacing);
	font-weight: normal;
	color: var(--theme-default-text-color);
	margin-top: 20px;
}

.page-contact{
	padding-top: var(--section-padding-top);
}
.page-contact .inner{
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
	padding: var(--section-padding-horizontal);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page-contact .inner h2{
	font-size: var(--title-font-size);
	letter-spacing: var(--title-letter-spacing);
	text-align: center;
	font-weight: normal;
	color: var(--theme-default-text-color);
}
.page-contact .inner .contact-form{
	width: 100%;
	max-width: 416px;
	margin-top: 50px;
}

.default-form .item{
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.default-form .item input, .default-form .item textarea{
	width: 100%;
	min-height: 44px;
	font-size: 16px;
	-webkit-appearance: none;
	appearance: none;
	color: rgb(var(--color-foreground));
	background-color: transparent;
	border: .1rem solid rgb(var(--color-border-input));
	border-radius: var(--border-radius-input);
	box-sizing: border-box;
	transition: border .3s, background-color .3s;
	overflow: hidden;
	flex-grow: 1;
	padding: 2px 16px;
	text-align: left;
}
.default-form .item textarea{
	min-height: 88px;
	padding: 10px 16px;
}
.default-form .item input+label, .default-form .item textarea+label{
	padding-bottom: 8px;
	color: rgb(var(--color-foreground));
	order: -1;
	font-size: 16px;
}
.default-form .item input[required]+label:after,.default-form .item textarea[required]+label:after{
	content: "*";
	position: relative;
	top: 0;
	left: .5rem;
	color: #B73C24;
}
.default-form .sub{
	margin-top: 32px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.default-form .sub button{
	cursor: pointer;
	display: inline-block;
	padding: 9px 26px;
	border-radius: var(--border-radius-button);
	color: #fff; transition: color .45s cubic-bezier(.165, .84, .44, 1);
	background-color: var(--theme-button-bg-d);
}

.testimonials{
	padding-top: var(--section-padding-top);
}
.testimonials-outer {
	max-width: 1440px;
	padding: var(--section-padding-horizontal);
	margin: 0 auto;
}
.testimonials .title {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	border-bottom: 1px solid rgb(var(--theme-default-border-color));
	display: none;
}
.testimonials .title2 {
	display: flex;
}
.testimonials .title h2 {
	font-weight: normal;
	font-size: 12px;
	color: var(--theme-default-text-color);
}
.testimonials .title p {
	font-weight: normal;
	font-size: 14px;
	color: rgb(var(--color-foreground-secondary));
}
.testimonials .container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	cursor: none;
	position: relative;
}
.testimonials .swiper-outer {
	width: calc(50% - 124px);
	pointer-events: none;
}
.testimonials .swiper-outer .swiper {
	overflow: hidden;
}
.testimonials .swiper-outer .swiper-slide .img-box {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--border-radius-block);
}
.testimonials .swiper-outer .swiper-slide .info {
	display: none;
	flex-direction: column;
}
.testimonials .swiper-outer .swiper-slide .img-box img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.testimonials .testimonials-main {
	width: 50%;
	padding-top: 56px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.testimonials .testimonials-main .slide-btns {
	display: none;
	flex-direction: row;
	justify-content: flex-end;
}
.testimonials .testimonials-main .slide-btns .btn {
	cursor: none;
}
.testimonials .testimonials-main .slide-btns .btn .iconfont {
	font-size: 36px;
	color: var(--theme-default-text-color);
}
.testimonials .testimonials-main .slide-btns .btn.active {
	opacity: .5;
}
.testimonials .rating .fa {
	font-size: 14px;
	color: var(--theme-default-text-color);
}
.testimonials .info{
	padding-bottom: 20px;
}
.testimonials .info .rating {
	margin-top: 20px;
}
.testimonials .info h3 {
	font-size: 24px;
	font-weight: normal;
	line-height: var(--font-heading-line-height);
	letter-spacing: -1.6px;
	margin-top: 20px;
	color: var(--theme-default-text-color);
}
.testimonials .info p {
	font-size: 14px;
	color: var(--theme-default-text-color);
	margin-top: 20px;
}
.testimonials .testimonials-main ul li {
	display: none;
}
.testimonials .testimonials-main ul li.active {
	display: block;
}
.testimonials .testimonials-main ul li.animated .text-get-up .text-get-up-item .text-get-up-item-inner {
	transform: translateY(0);
}
.testimonials .testimonials-main ul li.animated p {
	opacity: 1;
	color: var(--theme-default-text-color);
}
.testimonials .testimonials-main ul li h3 {
	margin-top: 32px;
	font-weight: normal;
	letter-spacing: -2px;
}
.testimonials .testimonials-main ul li p {
	opacity: 0;
	margin-top: 20px;
	font-size: 16px;
	color: rgba(var(--color-foreground));
	transition: opacity linear .8s .3s;
}
.testimonials .testimonials-cursor {
	position: absolute;
	z-index: 3;
	opacity: 0;
}
.testimonials .testimonials-cursor.prev .iconfont:before {
	content: "\e65d";
}
.testimonials .testimonials-cursor.next .iconfont:before {
	content: "\e65e";
}
.testimonials .testimonials-cursor.active {
	opacity: 1;
}
.testimonials .testimonials-cursor.disabled {
	opacity: .5;
}
.testimonials .testimonials-cursor .iconfont {
	font-size: 36px;
	color: var(--theme-default-text-color);
}
/* 文字升起效果 */
.text-get-up {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0 5px;
	line-height: var(--font-heading-line-height);
}
.text-get-up .text-get-up-item {
	font-weight: normal;
	font-size: 32px;
	position: relative;
	overflow: hidden;
	color: var(--theme-default-text-color);
}
.text-get-up .text-get-up-item .text-get-up-item-inner {
	position: relative;
	transform: translateY(100%);
	transition: transform linear .5s;
}

.product{
	padding-top: var(--section-padding-top);
}
.product .product-inner {
	max-width: 1440px;
	padding: var(--section-padding-horizontal);
	margin: 0 auto;
}
.product .content {
	gap: 52px;
	justify-content: flex-start;
	align-items: start;
	display: flex;
	flex-direction: row;
}
.product .content .product-main {
	width: 55%;
	position: sticky;
	top: calc(var(--header-height) + 8px);
	height: fit-content;
}
.product .content .product-main .product-main-wrapper {
	display: flex;
	flex-direction: row-reverse;
	align-items: stretch;
	gap: 8px;
	width: 100%;
}
.product .content .product-main .swiper-button-next, .product .content .product-main .swiper-button-prev{
	background-color: #fff;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	
}
.product .content .product-main .swiper-button-next:after, .product .content .product-main .swiper-button-prev:after{
	font-size: 14px;
	color: var(--default-color);
}
.product .content .product-main .swiper-button-next.swiper-button-disabled, .product .content .product-main .swiper-button-prev.swiper-button-disabled{
	opacity: 0;
}
.product .product-main-list-wrapper {
	width: calc(100% - .8rem - 64px);
	flex: 1;
	overflow: hidden;
}
.product .product-main-list-wrapper .swiper-slide {
	position: relative;
	aspect-ratio: 5.1/6.4;
	border-radius: var(--border-radius-block);
	overflow: hidden;
}
.product .product-main-list-wrapper .swiper-slide img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product .product-main-sublist-outer {
	flex: 1;
	max-height: 100%;
	overflow: hidden;
	max-width: 64px;
}
.product .product-main-sublist-outer .swiper-container5 {
	height: 100%;
}
.product .product-main-sublist-outer .swiper-slide {
	aspect-ratio: 1/1;
	transition: border var(--duration-default), opacity var(--duration-default);
	border-radius: 10px;
	overflow: hidden;
	opacity: .5;
	cursor: pointer;
}
.product .product-main-sublist-outer .swiper-slide:hover{
	opacity: 1;
}
.product .product-main-sublist-outer .swiper-slide img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product .product-main-sublist-outer .swiper-slide-thumb-active{
	opacity: 1;
	border: 1px solid rgb(var(--color-foreground-secondary))
}
.product .content .info {
	width: 100%;
	max-width: 416px;
	position: sticky;
	top: calc(var(--header-height) + 8px);
}
.product .content .info h1{
	color: var(--theme-default-text-color);
	font-weight: normal;
	line-height: var(--font-heading-line-height);
	font-size: var(--page-title-font-size);
	letter-spacing: var(--page-title-letter-spacing);
}
.product .content .info h2 a {
	color: var(--theme-default-text-color);
	transition: opacity .3s;
	font-weight: normal;
	line-height: var(--font-heading-line-height);
	font-size: var(--page-title-font-size);
	letter-spacing: var(--page-title-letter-spacing);
}
.product .content .info h2 a:hover {
	opacity: .7;
}

.product .content .info .parameter {
	margin-top: var(--product-info-margin-top);
}
.product .content .info .parameter li {
	position: relative;
	padding-left: 25px;
	padding-bottom: 16px;
	color: var(--theme-default-text-color);
}
.product .content .info .parameter li:last-child{
	padding-bottom: 0;
}
.product .content .info .parameter li strong {
	color: var(--theme-default-text-color);
}
.product .content .info .parameter li:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 8px;
	background-color: var(--theme-default-text-color);
	width: 5px;
	height: 5px;
	border-radius: 100px;
}
.product .content .info .color {
	margin-top: var(--product-info-margin-top);
}
.product .content .info .color h3 {
	display: block;
	width: 100%;
	padding: 0;
	text-transform: capitalize;
	margin-bottom: 10px;
	font-weight: normal;
	color: rgb(var(--color-foreground-secondary));
	font-size: 16px;
}
.product .content .info .color ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 2px;
}
.product .content .info .color ul li {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 6px 18px;
	font-size: 14px;
	color: rgb(var(--color-foreground));
	border: .1rem solid rgb(var(--theme-default-border-color));
	border-radius: var(--border-radius-button);
	transition: var(--duration-default);
	cursor: pointer;
	transition: border-color var(--duration-default) 
	linear, background var(--duration-default) 
	linear, color var(--duration-default) 
	linear;
}
[data-scheme=dark] .product .content .info .color ul li{
	color: #fff;
}
.product .content .info .color ul li.active{
	border-color: rgb(var(--color-foreground-secondary));
}
[data-scheme=dark] .product .content .info .color ul li.active{
	border-color: rgb(var(--color-foreground-secondary));
}
.product .content .info .color ul li:hover{
	color: rgb(var(--color-foreground-secondary));
	border-color: rgb(var(--color-foreground-secondary));
}
.product .content .info .stock{
	color: #FF0000;
	margin-top: var(--product-info-margin-top);
}
.product .content .info .stock.haver{
	color: rgb(var(--color-success));
}
.product .content .info .mun{
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	gap: 5px;
}
.product .content .info .tips{
	font-size: 12px;
	margin-top: var(--product-info-margin-top);
	letter-spacing: 1px;
	color: var(--theme-default-text-color);
}
.product .content .info .mun .default-button{
	flex: 1;
	cursor: pointer;
	padding: 0 10px;
}
.product .content .info .mun .default-button .btn_mask{
	opacity: .2;
}
.product .content .info .mun .default-button .default-transition-title-inner{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
}
.product .content .info .mun .default-button .default-transition-title-inner i{
	font-size: 24px;
}
.product .content .info .mun .email-btn{
	background-color: #e2ecff;
	color: #285bdc;
}
.product .content .info .mun .wa-btn{
	background-color: #2fd65b;
	color: #fff;
}

.swiper-pagination6{
	margin-top: 32px;
	display: flex;
	justify-content: center;
}
.swiper-pagination6 .swiper-pagination-bullet{
	width: 40px;
	height: 6px;
	border: 1px solid rgb(var(--color-foreground));
	border-radius: 3px;
	background-color: transparent;
}
.swiper-pagination6 .swiper-pagination-bullet-active{
	background-color: rgb(var(--color-foreground));
}

.blog{
	padding-top: var(--section-padding-top);
}
.blog .inner{
	max-width: 1440px;
	margin: 0 auto;
	padding: var(--section-padding-horizontal);
}
.blog .inner .title {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.blog .inner .title h2 {
	font-size: var(--page-title-font-size);
	letter-spacing: var(--page-title-letter-spacing);
	font-weight: normal;
	color: var(--theme-default-text-color);
}
.blog .inner ul{
	display: flex;
	flex-direction: row;
	gap: 16px;
	margin-top: 40px;
	flex-wrap: wrap;
}
.blog .inner ul li{
	width: calc(33.333% - (16px * 2) / 3);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.blog .inner ul li .img-box{
	aspect-ratio: 1 / 1;
	position: relative;
	border-radius: var(--border-radius-block);
	overflow: hidden;
}
.blog .inner ul li .img-box img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s;
}
.blog .inner ul li .info{
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: space-between;
	padding-bottom: 20px;
}
.blog .inner ul li .info h3 a{
	font-size: 22px;
	font-weight: normal;
	color: var(--theme-default-text-color);
	letter-spacing: -1px;
	transition: opacity .3s;
}
.blog .inner ul li .info .text{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.blog .inner ul li .info h3 a:hover{
	opacity: .6;
}
.blog .inner ul li .info p{
	font-size: 14px;
	color: var(--theme-default-text-color);
}
.blog .inner ul li .info .btn{
	display: flex;
}

.blog .inner ul li:hover .img-box img{
	transform: scale(1.05);
}
.blog .inner ul li .info .default-transition-title{
	margin-top: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	color: var(--theme-default-text-color);
}

.image-gallery{
	padding: 140px 0;
	background-color: #f2f1ef;
}
[data-scheme=dark] .image-gallery{
	background-color: rgb(34,34,34);
}
.image-gallery .inner{
	overflow: hidden;
	cursor: none;
	position: relative;
}
.image-gallery .inner .swiper-slide{
	position: relative;
	border-radius: var(--border-radius-block);
	overflow: hidden;
	width: 73.8888888889%;
	opacity: .6;
	transition: opacity .3s;
}
.image-gallery .inner .swiper-slide:before{
	content: "";
	display: block;
	width: 0;
	padding-bottom: 56.25%;
}
.image-gallery .inner .swiper-slide img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.image-gallery .inner .swiper-slide-active{
	opacity: 1;
}
.image-gallery .inner .gallery-cursor {
	position: absolute;
	z-index: 3;
	opacity: 0;
}
.image-gallery .inner .gallery-cursor.prev .iconfont:before {
	content: "\e65d";
}
.image-gallery .inner .gallery-cursor.next .iconfont:before {
	content: "\e65e";
}
.image-gallery .inner .gallery-cursor.active {
	opacity: 1;
}
.image-gallery .inner .gallery-cursor.disabled {
	opacity: .5;
}
.image-gallery .inner .gallery-cursor .iconfont {
	font-size: 36px;
	color: #fff;
}

.footer-main-wrapper {
	padding: 0 100px;
	display: flex;
	flex-direction: column;
	gap: 56px;
}
.footer-main-wrapper .footer-main-head {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer-main-wrapper .footer-main-head .logo-link {
	display: block;
	width: 100%;
	max-width: 320px;
}
.footer-main-wrapper .footer-main-head .logo-link img {
	width: 100%;
}
.footer-main-wrapper .footer-main-head p {
	font-size: 14px;
	color: #fff;
	max-width: 360px;
	text-align: center;
	margin-top: 32px;
}
.footer-main-wrapper .footer-main-head .footer-socials {
	margin-top: 20px;
}
.footer-main-wrapper .footer-main-head .footer-socials ul {
	display: flex;
	flex-direction: row;
}
.footer-main-wrapper .footer-main-head .footer-socials ul li {
	padding: 10px;
}
.footer-main-wrapper .footer-main-head .footer-socials ul li i {
	color: #fff;
	font-size: 18px;
}
.footer-blocks {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 56px 64px;
}
.footer-blocks .footer-block {
	max-width: 300px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.footer-blocks .footer-block h3 {
	font-size: 14px;
	color: #A9ACAE;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.footer-blocks .footer-block h3 .fa{
	font-size: 20px;
	display: none;
}
.footer-blocks .footer-block h3 .fa.active:before {
    content: "\f106";
}
.footer-blocks .footer-block ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	transition: height linear .5s;
}
.footer-blocks .footer-block ul.active{
	height: auto;
	padding-bottom: 20px;
}
.footer-blocks .footer-block ul li a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 8px 0;
	position: relative;
	color: #fff;
	font-size: 16px;
}
.footer-blocks .footer-block ul li a svg {
	z-index: 1;
	position: absolute;
	left: calc(100% - 20px);
	width: 20px;
	height: 20px;
	opacity: 0;
	transition: left var(--duration-default) ease, opacity var(--duration-default) ease-in-out;
}
.footer-blocks .footer-block ul li a:hover svg {
	opacity: 1;
	left: calc(100% + 4px);
}
.footer-blocks .footer-subscribe-block {
	width: 100%;
	max-width: 300px;
}
.footer-blocks .footer-subscribe-block h2 {
	font-size: 22px;
	color: #fff;
	font-weight: normal;
	letter-spacing: -1px;
}
.footer-subscribe-form-inner {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}
.footer-subscribe-form-inner form{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-subscribe-form-inner input {
	line-height: 1;
	display: block;
	padding: 10px 16px;
	width: 280px;
	min-height: 40px;
	border-radius: var(--border-radius-input);
	color: rgba(var(--color-foreground));
	background-color: transparent;
	border: 1px solid rgba(var(--color-border-input));
	color: #fff;
}
.footer-subscribe-form-inner .default-button{
	width: 280px;
	margin-top: 20px;
	cursor: pointer;
}
.footer-subscribe-form-checkbox {
	display: flex;
	align-items: center;
	column-gap: 8px;
	margin-top: 16px;
	position: relative;
}
.footer-subscribe-form-checkbox input[type=checkbox] {
	position: absolute;
	left: 8px;
	top: 0;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.footer-subscribe-form-checkbox-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	padding-left: 24px;
}
.footer-subscribe-form-checkbox-label:before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 1px solid rgba(var(--color-border-input));
	background-color: transparent;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 4px;
}
.footer-subscribe-form-checkbox-label:after {
	content: "";
	display: none;
	opacity: 0;
	background-color: rgba(255, 255, 255);
	width: 10px;
	height: 10px;
	border-radius: 3px;
	position: absolute;
	top: 50%;
	left: 4px;
	transform: translateY(-50%);
	transition: opacity var(--duration-default) ease-in-out;
}
.footer-subscribe-form-checkbox input[type=checkbox]:checked+.footer-subscribe-form-checkbox-label:after {
	display: block;
	opacity: 1;
}
.footer-subscribe-form-checkbox-label-text {
	color: #fff;
	font-size: 14px;
}
.footer-subscribe-form-checkbox-label-text a {
	display: inline-block;
	color: rgba(255,255,255);
	transition: background-size var(--duration-default) ease-in-out, opacity var(--duration-default) ease-in-out;
	background-position: left 90%;
	background-size: 100% 5%;
	background-image: linear-gradient(to right, rgba(var(--color-foreground)) 0% 100%);
	background-repeat: no-repeat;
	text-decoration: none;
	text-decoration: underline;
}
.footer-subscribe-form-checkbox-label-text a:hover {
	background-size: 0% 5%;
	background-position: right 90%;
	opacity: .8;
}

.page-bottom .footer-blocks .hero-heading:hover{
	-webkit-mask-image: none;
	mask-image: none;
}

@media screen and (max-width: 1300px) {
	.testimonials .swiper-outer {
		width: calc(50% - 96px);
	}
	
	.image-gallery{
		padding: 80px 0;
	}
	
	.footer-main-wrapper{
		padding: 0 80px;
	}
}
@media screen and (max-width: 1200px){
	.testimonials .testimonials-main {
		padding-top: 0;
	}
	.testimonials .testimonials-main .slide-btns {
		display: flex;
	}
	.testimonials .container {
		cursor: auto;
	}
	.testimonials .testimonials-main .slide-btns .btn {
		cursor: pointer;
	}
	.testimonials .swiper-outer {
		width: calc(50% - 56px);
	}
	.testimonials .testimonials-main {
		gap: 32px;
	}
}
@media screen and (max-width: 1024px) {
	.page-bottom .outer .inner{
		padding-top: 40px;
		padding-bottom: 80px;
	}
	
	.default-form .item input+label, .default-form .item textarea+label{
		font-size: 14px;
	}
	.default-form .item input, .default-form .item textarea{
		font-size: 14px;
	}
	
	.testimonials .testimonials-main ul li p {
		font-size: 14px;
	}
	.testimonials .swiper-outer {
		width: calc(50% - 40px);
	}
	.text-get-up .text-get-up-item {
		font-size: 28px;
	}
	
	.product .content{
		flex-direction: column;
		align-items: center;
	}
	.product .content .product-main{
		position: relative;
		max-width: 640px;
		width: 100%;
		top: 0;
	}
	.product .content .info{
		max-width: 640px;
	}
	.product .product-main-list-wrapper{
		width: 100%;
	}
	.product .content .product-main .product-main-wrapper{
		flex-direction: column;
	}
	.product .product-main-sublist-outer{
		max-width: 100%;
	}
	.product .product-main-sublist-outer .swiper-slide{
		max-width: 64px;
	}
	.product .content{
		gap: 32px;
	}
	.product .content .info .parameter li{
		font-size: 14px;
	}
	.product .content .info .color h3 {
		font-size: 14px;
	}
	
	.blog .inner ul{
		gap: 40px 16px;
	}
	.blog .inner ul li{
		width: calc(50% - 16px / 2);
	}
	
	.image-gallery .inner{
		cursor: auto;
	}
	
	.footer-main-wrapper{
		padding: 0 48px;
	}
	.footer-subscribe-form-inner .default-button{
		width: 160px;
		flex: none;
	}
	.footer-blocks{
		flex-direction: column;
		gap: 0;
	}
	.footer-blocks .footer-block ul{
		height: 0;
		overflow: hidden;
	}
	.footer-blocks .footer-subscribe-block{
		max-width: 100%;
	}
	.footer-blocks .footer-block{
		max-width: 100%;
		border-top: .1rem solid rgba(255,255,255, .2);
		border-bottom: .1rem solid rgba(255,255,255, .2);
		gap: 16px;
		padding-top: 16px;
	}
	.footer-blocks .footer-subscribe-block{
		border: none;
	}
	.footer-blocks .footer-block h3{
		font-size: 18px;
		color: #fff;
	}
	.footer-blocks .footer-block h3 .fa{
		display: block;
	}
	.footer-blocks .footer-block ul li a{
		font-size: 14px;
		color: rgba(255,255,255, .7);
	}
	.footer-subscribe-form-inner input{
		flex: 1;
	}
}
@media screen and (max-width: 767px) {
	
	.page-contact .inner .contact-form{
		margin-top: 24px;
	}
	
	.crumb .inner ul li{
		font-size: 12px;
	}
	
	.testimonials .testimonials-main {
		display: none;
	}
	.testimonials .swiper-outer {
		width: 100%;
		pointer-events: auto;
	}
	.testimonials .swiper-outer .swiper-slide {
		width: calc(100% - 45px);
	}
	.testimonials .swiper-outer .swiper-slide .info {
		display: flex;
	}
	.testimonials .title {
		display: flex;
	}
	.testimonials .testimonials-inner {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	
	.product .content .info .color{
		margin-top: 24px;
	}
	
	.swiper-pagination6 .swiper-pagination-bullet{
		width: 12px;
		height: 3px;
	}
	
	.blog .inner ul{
		flex-direction: column;
		gap: 40px;
	}
	.blog .inner ul li{
		width: 100%;
	}
	.blog .inner ul li .info h3 a{
		font-size: 20px;
	}
	.blog .inner ul li .info p{
		font-size: 12px;
	}
	.blog .inner ul li .info .default-transition-title{
		font-size: 12px;
	}
	
	.image-gallery{
		padding: 50px 0;
	}
	
	.footer-main-wrapper{
		padding: 0 20px;
		gap: 24px;
	}
	.footer-blocks .footer-block h3{
		font-size: 14px;
		color: #fff;
	}
	.footer-blocks .footer-subscribe-block h2{
		font-size: 20px;
	}
	.footer-subscribe-form-inner{
		flex-direction: column;
		gap: 16px;
	}
	.footer-subscribe-form-inner input{
		width: 100%;
	}
	.footer-subscribe-form-inner .default-button{
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.product .content .info .mun .default-button{
		font-size: 13px;
		line-height: 18px;
	}
}