:root {
	--white: #ffffff;
	--main: #8fc321;
	--font: #2e2e2e;
	--sub: #a2a2a2;
}

@font-face {
	font-family: 'hv';
	font-display: swap;
	src: url('../fonts/HelveticaNeueLTPro-Hv.otf');
}

.hv {
	font-family: 'hv';
}

@font-face {
	font-family: 'bd';
	font-display: swap;
	src: url("../fonts/HelveticaNeueLTPro-Bd.otf");
}

.bd {
	font-family: 'bd';
}

@font-face {
	font-family: 'lt';
	font-display: swap;
	src: url("../fonts/HelveticaNeueLTPro-Lt.otf");
}

.lt {
	font-family: 'lt';
}

@font-face {
	font-family: 'thEx';
	font-display: swap;
	src: url("../fonts/HelveticaNeueLTPro-ThEx.otf");
}

.thEx {
	font-family: 'thEx';
}

@font-face {
	font-family: 'roman';
	font-display: swap;
	src: url("../fonts/HelveticaNeueLTPro-Roman.otf");
}

.roman {
	font-family: 'roman';
}

* {
	margin: 0;
	padding: 0;
}

html,
body {
	width: 100%;
	position: relative;
	font-size: 16px;
}

body {
	font-family: "lt", "helvetica, arial, sans-serif";
	font-size: 16px;
	font-style: normal;
	line-height: unset;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

ul,
li {
	list-style: none;
}

ul,
dl,
p {
	margin-bottom: 0;
}

a,
a:visited,
a:link,
a:hover {
	text-decoration: none;
}

[line-clamp='1'] {
	-webkit-line-clamp: 1;
}

[line-clamp='2'] {
	-webkit-line-clamp: 2;
}

[line-clamp='3'] {
	-webkit-line-clamp: 3;
}

[line-clamp='4'] {
	-webkit-line-clamp: 4;
}

[line-clamp='5'] {
	-webkit-line-clamp: 5;
}

.line-limit {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.swiper-slide {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	outline: none;
}

.swiper-button-prev,
.swiper-button-next {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	outline: none;
}

.thumb-img {
	width: 100%;
	overflow: hidden;
}

.thumb-img img {
	display: block;
	width: 100%;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.thumb-img:hover img,
a:hover .thumb-img img {
	transform: scale(1.08, 1.08);
}

.thumb img {
	display: block;
	width: 100%;
	max-width: 100%;
}

/* The main style */

.container {
	/* width: 100%;
	padding: 0 6rem; */
}

.header-fixed-wrapper {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 996;
}

.header-sticky {
	position: sticky;
	top: 0;
	background-color: var(--white);
	border-bottom: 1px solid var(--main);
	z-index: 999;
}

.header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0 ;
	transition: .5s;
}

.header-sticky .header-wrapper {
	padding-top: 10px;
}

.header-wrapper .logo img{
	display: block;
	max-height: 40px ;
	transition: .5s;
}

/* .header-sticky .header-wrapper .logo img{
	max-height: 40px ;
} */

.header-wrapper .nav-flex-ul {
	display: flex;
	align-content: center;
	font-family: 'bd';
}

.header-wrapper .nav-flex-ul li.nav-top {
	position: relative;
}

.header-wrapper .nav-flex-ul li.nav-top:not(:last-child) {
	margin-right: 50px;
}

.header-wrapper .nav-flex-ul li.nav-top:nth-last-child(2){
	margin-right: 0 ;
}

.header-wrapper .nav-flex-ul li.nav-top a {
	display: block;
	font-size: 1.1rem;
	color: var(--white);
	padding: 10px 0;
}

.header-sticky .header-wrapper .nav-flex-ul li.nav-top a {
	color: var(--black);
}

.header-wrapper .nav-flex-ul li.nav-top a:hover,
.header-wrapper .nav-flex-ul li.nav-top.active a {
	color: var(--main);
}

.header-sticky .header-wrapper .nav-flex-ul li.nav-top a span {}

.header-wrapper .nav-flex-ul li.nav-top ul.nav-sub-ul {
	position: absolute;
	top: calc(100% + 30px);
	left: 0;
	background-color: var(--white);
	border-radius: 5px;
	visibility: hidden;
	opacity: 0;
	transition: .5s;
}

.header-wrapper .nav-flex-ul li.nav-top:hover ul.nav-sub-ul {
	top: calc(100% + 10px);
	visibility: visible;
	opacity: 1;
}

.header-wrapper .nav-flex-ul li.nav-top ul.nav-sub-ul li{
	position: relative;
}

.header-wrapper .nav-flex-ul li.nav-top ul.nav-sub-ul li a {
	display: block;
	font-family: 'lt';
	font-size: 1rem;
	font-weight: 700;
	white-space: nowrap;
	color: var(--font);
	padding: 10px 15px;
}

.header-wrapper .nav-flex-ul li.nav-top ul.nav-sub-ul li a:hover {
	color: var(--main);
}

.header-wrapper .nav-flex-ul li.nav-top ul.nav-sub-ul li ul.nav-child-ul{
	position: absolute;
	top: 0 ;
	left: calc(100% + 15px) ;
	background-color: var(--white);
	border-radius: 5px;
	visibility: hidden;
	opacity: 0 ;
	transition: .5s;
}

.header-wrapper .nav-flex-ul li.nav-top ul.nav-sub-ul li ul.nav-child-ul::before{
	content: "";
	display: block;
	border-right: 15px solid var(--white);
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	position: absolute;
	top: 5px ;
	left: -10px;
}

.header-wrapper .nav-flex-ul li.nav-top ul.nav-sub-ul li:hover ul.nav-child-ul{
	visibility: visible;
	opacity: 1;
}

.header-wrapper .nav-flex-ul li.nav-top-search {
	position: relative;
	padding-left: 80px;
}

.header-wrapper .nav-flex-ul li.nav-top-search a {
	display: block;
	width: 20px;
	height: 100%;
	background: url(../images/icon-search.png) no-repeat center center;
	background-size: 16px;
	font-size: 0;
}

.header-sticky .header-wrapper .nav-flex-ul li.nav-top-search a {
	background-image: url(../images/icon-search-black.png);
}

.header-wrapper .nav-flex-ul li.nav-top-search .search-form {
	position: absolute;
	top: 100%;
	right: 0;
	background-color: var(--white);
	border-radius: 5px;
	padding: 10px;
	transform: rotateX(90deg);
	transition: .5s;
}

.header-wrapper .nav-flex-ul li.nav-top-search .search-form.open {
	transform: rotateX(0);
}

.header-wrapper .nav-flex-ul li.nav-top-search .search-form form {
	display: flex;
	align-content: center;
}

.header-wrapper .nav-flex-ul li.nav-top-search .search-form form input {
	width: 200px;
	padding: 10px 10px 5px;
	border: 0;
	border-bottom: 1px solid var(--main);
	outline: none;
}

.header-wrapper .nav-flex-ul li.nav-top-search .search-form form button {
	background: var(--main);
	color: var(--white);
	padding: 10px 10px 5px;
	border: 0;
	outline: none;
}

.scroll-banner-swiper .item-banner {
	position: relative;
	display: block;
}

.scroll-banner-swiper .item-banner .banner-wrapper {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.scroll-banner-swiper .item-banner .banner-wrapper .title,
.scroll-banner-swiper .item-banner .banner-wrapper .subtitle {
	color: var(--white);
	text-align: center;
}

.scroll-banner-swiper .item-banner .banner-wrapper .title {
	font-size: 5.2rem;
	text-transform: uppercase;
	padding: 1.2rem 0 0;
}

.scroll-banner-swiper .item-banner .banner-wrapper .subtitle {
	font-size: 1.25rem;
}

.scroll-banner-swiper .item-banner .banner-wrapper .more {
	text-align: center;
}

.scroll-banner-swiper .item-banner .banner-wrapper .more a {
	display: inline-block;
	background-color: var(--main);
	color: var(--white);
	text-transform: uppercase;
	padding: 20px 50px 15px;
	border-radius: 5px;
}

.scroll-banner-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
	background-color: var(--font);
	width: 12px;
	height: 12px;
	opacity: 1;
	outline: none;
}

.scroll-banner-swiper .swiper-pagination-bullets .swiper-pagination-bullet-active {
	background-color: var(--main);
}

.bg-main {
	background-color: var(--main);
}

.section-padding {
	padding: 5rem 0;
}

.topic-index-title {
	font-size: 3rem;
}

.topic-index-subtitle {
	font-size: 2rem;
}

.index-thumb-text {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-content: center;
}

.index-thumb-text .thumb,
.index-thumb-text .thumb-desc {
	width: calc((100% - 80px) / 2);
}

.index-thumb-text .thumb-desc {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.index-thumb-text .thumb-desc .title span {
	display: block;
}

.index-thumb-text .thumb-desc .desc {
	font-size: 1.125rem;
	line-height: 1.875rem;
	padding: 50px 0 0;
}

.index-thumb-text .thumb-desc .more a{
	display: inline-block;
	background-color: var(--main);
	color: var(--white);
	margin-top: 2rem ;
	padding: 0.8rem 2rem ;
}

.index-advantage .topic-content {
	border-top: 2px solid var(--white);
	padding: 60px 120px 80px 0;
	color: var(--white);
}

.index-advantage .topic-content .topic-index-subtitle,
.index-advantage .topic-content .content {
	margin-top: 30px;
}

.index-advantage .topic-content .content {
	font-size: 1.125rem;
	line-height: 2rem;
}

.index-advantage .grid-content {
	display: grid;
	grid-template-columns: repeat(4, calc((100% - 90px) / 4));
	grid-gap: 30px;
}

.index-advantage .grid-content .item {
	border-top: 2px solid var(--white);
	padding-top: 30px;
}

.index-advantage .grid-content .item .title span {
	display: block;
	font-size: 1.25rem;
	color: var(--white);
}

.index-advantage .grid-content .item .content {
	font-size: 1.125rem;
	line-height: 1.5rem;
	color: var(--white);
	margin-top: 20px;
}

.index-assist {
	position: relative;
	padding-top: 12rem;
}

.index-assist .assist-topic-thumb {
	padding-left: 20%;
}

.index-assist .assist-topic-thumb img,
.index-assist .assist-sub-thumb img {
	display: block;
	width: 100%;
}

.index-assist .assist-sub-thumb {
	position: absolute;
	top: 4rem;
	left: 0;
	width: 30%;
}

.index-assist .assist-thumb-desc {
	position: absolute;
	top: 0;
	right: 10%;
	background-color: #f3f3f3;
	width: 50%;
	padding: 3.125rem;
}

.index-assist .assist-thumb-desc .desc {
	font-size: 1rem;
	line-height: 1.875rem;
	padding-top: 1.875rem;
}

.index-about {
	position: relative;
}

.index-about img {
	display: block;
	width: 100%;
}

.index-about .about-desc {
	position: absolute;
	bottom: 50px;
	width: 100%;
	color: var(--white);
}

.index-about .about-desc .title {}

.index-about .about-desc .desc {
	font-size: 1.25rem;
	line-height: 2rem;
	padding: 30px 20% 30px 0;
}

.index-about .about-desc .more a {
	display: flex;
	align-items: center;
	width: fit-content;
	font-size: 1.25rem;
	color: var(--white);
}

.index-about .about-desc .more a:hover {
	color: var(--main);
}

.index-about .about-desc .more a span {
	position: relative;
	display: block;
	background-color: var(--white);
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	margin-left: 20px;
}

.index-about .about-desc .more a:hover span {
	background-color: var(--main);
}

.index-about .about-desc .more a span::before {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	content: "";
	width: 8px;
	height: 8px;
	border: 2px solid var(--main);
	border-left: 0;
	border-bottom: 0;
	margin-left: -2px;
}

.index-about .about-desc .more a:hover span::before {
	border-color: var(--white);
}

.index-about-data .title {
	padding-top: 30px;
	border-top: 2px solid var(--font);
}

.index-about-data .grid-scroll-data {
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
}

.index-about-data .grid-scroll-data .item-data {
	width: 20%;
}

.index-about-data .grid-scroll-data .item-data .data {
	display: flex;
	align-items: baseline;
	border-bottom: 1px solid var(--font);
}

.index-about-data .grid-scroll-data .item-data .data .num {
	font-size: 3.2rem;
}

.index-about-data .grid-scroll-data .item-data .data .unit {
	font-size: 1.5rem;
	margin-left: 10px;
}

.index-about-data .grid-scroll-data .item-data .desc {
	font-size: 1.2rem;
	margin-top: 20px;
}

.topic-title-more {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.index-product {
	background: linear-gradient(to bottom, #8fc321 40%, #ffffff 40%, #ffffff 100%)
}

.index-product .topic-title-more {
	padding-top: 50px;
	border-top: 2px solid var(--white);
}

.index-product .topic-title-more .title {
	color: var(--white);
}

.index-product .topic-title-more .more a {
	display: flex;
	align-items: center;
	font-size: 1.25rem;
	color: var(--white);
}

.index-product .topic-title-more .more a span {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	background-color: var(--white);
	border-radius: 50%;
	margin-left: 20px;
}

.index-product .topic-title-more .more a span::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid var(--main);
	border-left: 0;
	border-bottom: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	margin-left: -2px;
}

.index-product .grid-column-product {
	display: grid;
	grid-template-columns: repeat(4, calc((100% - 90px) / 4));
	grid-column-gap: 30px;
	grid-row-gap: 50px;
	margin: 80px 0 40px;
}

.index-product .grid-column-product .item {
	display: block;
	background-color: #f3f3f3;
	padding: 20px;
}

.index-product .grid-column-product .item .thumb {
	padding: 0 20px 20px;
	border-bottom: 1px solid #d2d2d2;
}

.index-product .grid-column-product .item .thumb-desc {
	display: flex;
	align-items: flex-end;
	padding-top: 20px;
}

/* .index-product .grid-column-product .item .thumb-desc .title span {
	display: block;
} */

.index-product .grid-column-product .item .thumb-desc .title span.name {
	font-size: 1rem;
	color: var(--font);
}

.index-product .grid-column-product .item .thumb-desc .title span.material {
	font-size: 1rem;
	color: #a2a2a2;
	margin-top: 10px;
}

.index-product .grid-column-product .item .thumb-desc .more span {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	background-color: var(--main);
	border-radius: 50%;
	margin-left: 20px;
}

.index-product .grid-column-product .item .thumb-desc .more span::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid var(--white);
	border-left: 0;
	border-bottom: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	margin-left: -2px;
}

.grid-brand {
	padding-bottom: 80px;
}

.grid-brand .title {
	padding-top: 30px;
	border-top: 2px solid var(--font);
	margin-bottom: 50px;
}

.grid-brand .list-brand {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.grid-brand .list-brand:not(:last-child) {
	border-bottom: 1px solid #e6e6e6;
}

.grid-brand .list-brand .item {
	position: relative;
	width: 20%;
	padding: 20px 0;
}

.grid-brand .list-brand .item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	height: 60px;
	border-left: 1px solid #e6e6e6;
}

.grid-brand .list-brand .item:first-of-type::before {
	display: none;
}

.grid-brand .list-brand .item img {
	display: block;
	max-width: 150px;
	margin: 0 auto;
}

.static-banner {
	position: relative;
}

.static-banner img {
	display: block;
	width: 100%;
}

.static-banner .page-leader {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.static-banner .page-leader-title {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: var(--white);
	width: 70%;
	padding: 1.875rem 5rem;
}

.static-banner .page-leader-title .current-breadcrumb {
	display: flex;
	align-items: center;
}

.static-banner .page-leader-title .current-breadcrumb {}

.static-banner .page-leader-title .current-breadcrumb a {
	display: flex;
	align-items: center;
	font-family: 'roman';
	font-size: 0.875rem;
	color: #a2a2a2;
}

.static-banner .page-leader-title .current-breadcrumb a:hover {
	color: var(--font);
}

.static-banner .page-leader-title .current-breadcrumb a::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border: 1px solid #a2a2a2;
	border-right: 0;
	border-bottom: 0;
	margin-top: -4px;
	margin-right: 10px;
	transform: rotate(-45deg);
}

.static-banner .page-leader-title .subtitle {
	font-size: 1.25rem;
	color: var(--font);
	margin: 2.5rem 0 10px;
}

.static-banner .page-leader-title .title {
	font-size: 1.2rem;
	line-height: 1.5rem ;
	color: var(--font);
	text-transform: uppercase;
}

.flex-nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0 5rem;
}

.flex-nav-wrapper .title {
	color: var(--white);
}

.flex-nav-wrapper .title .topic-title {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.flex-nav-wrapper .title .current-title {
	font-size: 3.6rem;
}

.flex-nav-wrapper .return {
	padding-bottom: 20px;
	display: flex;
}

.flex-nav-wrapper .return a {
	display: flex;
	align-items: center;
	color: var(--white);
}

.flex-nav-wrapper .return a:not(:last-child) {
	margin-right: 20px;
}

.flex-nav-wrapper .return a:hover {
	color: var(--main);
}

.flex-nav-wrapper .return a::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid var(--white);
	border-right: 0;
	border-bottom: 0;
	margin-right: 10px;
	transform: rotate(-45deg) translateY(-3px);
}

.flex-nav-wrapper .return a:hover::before {
	border-color: var(--main);
}

.list-news {
	display: grid;
	grid-template-columns: repeat(2, calc((100% - 2.5rem) / 2));
	grid-gap: 2.5rem;
	margin-bottom: 5rem;
}

.list-news .item {
	display: flex;
}

.list-news .item .thumb-img {
	width: 40%;
}

.list-news .item .thumb-desc {
	width: 60%;
	padding: 15px 20px;
}

.list-news .item .thumb-desc .title {
	font-size: 1.25rem;
	color: var(--font);
	margin-bottom: 20px;
}

.list-news .item .thumb-desc .desc {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #7e7e7e;
}

.show-news-wrapper {
	padding-top: 5rem;
	display: flex;
	flex-wrap: wrap;
}

.show-news-wrapper .show-news {
	width: 70%;
	padding-bottom: 5rem;
	padding-right: 3.125rem;
	border-right: 1px solid #ededed;
}

.show-news-wrapper .show-news .title {
	font-size: 2.4rem;
}

.show-news-wrapper .show-news .date,
.show-news-wrapper .show-news .content {
	color: #7e7e7e;
}

.show-news-wrapper .show-news .date {
	padding: 20px 0;
}

.show-news-wrapper .show-news .content {
	line-height: 1.875rem;
}

.show-news-wrapper .show-news .content img {
	display: block;
	width: 100%;
}

.show-news-wrapper .show-news .share-links {
	margin-top: 3.125rem;
	display: flex;
	align-items: center;
	color: #7e7e7e;
}

.share-links a {
	display: block;
}

.share-links a:first-of-type {
	margin-left: 10px;
}

.share-links a:not(:last-child) {
	margin-right: 10px;
}

.show-news-wrapper .show-news .share-links a img {
	display: block;
	max-width: 30px;
}

.show-news-wrapper .related-news {
	width: 30%;
	padding-left: 3.125rem;
}

.show-news-wrapper .related-news .topic-title {
	font-size: 1.5rem;
	color: var(--font);
	margin-bottom: 30px;
}

.show-news-wrapper .related-news .related-ul li:not(:last-child) {
	margin-bottom: 30px;
}

.show-news-wrapper .related-news .related-ul li a {
	display: block;
}

.show-news-wrapper .related-news .related-ul li a .title {
	font-size: 1.25rem;
	color: var(--font);
}

.show-news-wrapper .related-news .related-ul li a .date {
	color: #7e7e7e;
	margin-top: 20px;
}

/* Page */
.page {
	display: flex;
	justify-content: center;
	align-items: center;
}

.page li,
.page li a {
	display: block;
}

.page li:not(:last-child) {
	margin-right: 10px;
}

.page li a {
	font-family: 'bd';
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: var(--font);
	border: 1px solid #dedede;
}

.page li.active a,
.page li:hover a {
	background-color: var(--main);
	border: 1px solid var(--main);
	color: var(--white);
}

.page-container {
	padding: 0 10rem;
}

.page-search{
	margin-bottom: 3.125rem;
}

.category-tab-name {
	display: flex;
	align-items: center;
	padding: 2.5rem 0;
}

.category-tab-name .item {
	display: flex;
	align-items: center;
}

.category-tab-name .item:not(:last-child) {
	margin-right: 2rem;
}

.category-tab-name .item a {
	position: relative;
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--font);
}

.category-tab-name .item a::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 0;
	border-top: 2px solid var(--main);
	transition: .5s;
}

.category-tab-name .item.active a::after,
.category-tab-name .item a:hover::after {
	width: 100%;
}

.category-tab-name .item .select-option-ul {
	position: relative;
	font-size: 1rem;
	color: #a2a2a2;
	margin-left: 10px;
}

.category-tab-name .item .select-option-ul .select-option-value {
	display: flex;
	align-items: center;
	padding: 10px 20px 5px;
	border: 1px solid #eaeaea;
	white-space: nowrap;
	cursor: pointer;
}

.category-tab-name .item .select-option-ul .select-option-value::after {
	content: "";
	width: 8px;
	height: 8px;
	border: 1px solid #b1b1b1;
	border-left: 0;
	border-bottom: 0;
	margin-left: 3.125rem;
	margin-top: -6px;
	transform: rotate(135deg);
}

.category-tab-name .item .select-option-ul .select-option-list {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	background-color: var(--white);
	border: 1px solid #eaeaea;
	border-top: 0;
	border-bottom: 0;
	transition: .5s;
}

.category-tab-name .item .select-option-ul.open .select-option-list {
	visibility: visible;
	opacity: 1;
	border: 1px solid #eaeaea;
	border-top: 0;
	z-index: 996;
}

.category-tab-name .item .select-option-ul .select-option-list li {
	padding: 5px 20px;
	cursor: pointer;
}

.category-tab-name .item .select-option-ul .select-option-list li a {
	display: block;
	font-size: 1rem;
	color: #a2a2a2;
}

.category-tab-name .item .select-option-ul .select-option-list li a::after {
	display: none;
}

.category-tab-name .item .select-option-ul .select-option-list li:hover {
	background-color: var(--main);
	color: var(--white);
}

.category-tab-name .item .select-option-ul .select-option-list li:hover a {
	color: var(--white);
}

.grid-farbic-list {
	margin-top: 5rem;
}

.grid-product-list {
	display: grid;
	grid-template-columns: repeat(4, calc((100% - 90px) / 4));
	grid-gap: 30px;
	margin-bottom: 3.125rem;
}

.grid-product-list .item {
	display: block;
	background-color: #f3f3f3;
	padding: 20px;
	min-height: 280px;
}

.grid-product-list .item .thumb {
	padding: 0 20px 20px;
	border-bottom: 1px solid #d2d2d2;
}

.grid-product-list .item .thumb-desc {
	display: flex;
	align-items: flex-end;
	padding-top: 20px;
}

/* .grid-product-list .item .thumb-desc .title span {
	display: block;
} */

.grid-product-list .item .thumb-desc .title span.name {
	font-size: 1rem;
	color: var(--font);
}

.grid-product-list .item .thumb-desc .title span.material {
	font-size: 1rem;
	color: #a2a2a2;
	margin-top: 10px;
}

.grid-product-list .item .thumb-desc .more span {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	background-color: var(--main);
	border-radius: 50%;
	margin-left: 20px;
}

.grid-product-list .item .thumb-desc .more span::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid var(--white);
	border-left: 0;
	border-bottom: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	margin-left: -2px;
}

.grid-product-list .item-more{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.grid-product-list .item-more .icon-more{
	padding: 10px ;
	border: 1px dashed #2e2e2e;
	border-radius: 10px ;
}

.grid-product-list .item-more .title{
	font-size: 1.2rem ;
	color: var(--font);
	text-align: center;
	margin-top: 20px ;
}

.list-thumb-paragh {
	padding: 5rem 0 ;
}

.list-thumb-paragh .item-thumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.list-thumb-paragh .item-thumb:not(:last-child) {
	margin-bottom: 5rem;
}

.list-thumb-paragh .item-thumb .thumb-img,
.list-thumb-paragh .item-thumb .thumb-desc {
	width: 50%;
}

.list-thumb-paragh .item-thumb .thumb-desc .title {
	font-size: 2rem;
	color: var(--font);
}

.list-thumb-paragh .item-thumb .thumb-desc .desc {
	color: #838383;
    line-height: 1.875rem;
	padding: 0.625rem 0 1.25rem;
}

.list-thumb-paragh .item-thumb .thumb-desc .more a {
	display: inline-block;
	color: var(--main);
	border: 1px solid var(--main);
	padding: 10px 20px 5px;
}

.list-thumb-paragh .item-thumb .thumb-desc .more a:hover {
	background-color: var(--main);
	color: var(--white);
}

.list-thumb-paragh .item-thumb:nth-child(odd) {
	flex-direction: row-reverse;
}

.list-thumb-paragh .item-thumb:nth-child(odd) .thumb-desc {
	padding-right: 3.125rem;
}

.list-thumb-paragh .item-thumb:nth-child(even) {
	flex-direction: row;
}

.list-thumb-paragh .item-thumb:nth-child(even) .thumb-desc {
	padding-left: 3.125rem;
}

.list-product-advantage {
	padding: 5rem 0 3rem;
}

.list-product-advantage .topic-title {
	font-size: 2rem;
	padding: 1.875rem 0;
	border-top: 2px solid var(--font);
}

.list-product-advantage .product-ul li:not(:last-child) {
	margin-bottom: 2rem;
}

.list-product-advantage .product-ul li .title {
	font-size: 1.25rem;
	color: #272727;
	margin-bottom: 1.25rem;
}

.list-product-advantage .product-ul li .desc {
	width: 80%;
	font-size: 1rem;
	color: #878787;
	line-height: 1.875rem;
	padding-bottom: 2rem;
}

.list-product-advantage .product-ul li .desc .subtitle {
	font-size: 1.25rem;
	color: #272727;
}

.show-product-wrapper {
	display: flex;
	flex-wrap: wrap;
	padding: 5rem 0;
}

.show-product-wrapper .product-thumbs{
	width: 40%;
}

.show-product-wrapper .product-desc {
	width: 60%;
}

.show-product-wrapper .product-thumbs .gallery-thumb,
.show-product-wrapper .product-thumbs .gallery-thumbs{
	position: relative;
}

.show-product-wrapper .product-thumbs .gallery-thumbs{
	padding: 0 1.5rem ;
}

.show-product-wrapper .product-thumbs .gallery-thumb .swiper-button-next,
.show-product-wrapper .product-thumbs .gallery-thumb .swiper-button-prev,
.show-product-wrapper .product-thumbs .gallery-thumbs .swiper-button-next,
.show-product-wrapper .product-thumbs .gallery-thumbs .swiper-button-prev{
	outline: none;
}

.show-product-wrapper .product-thumbs .gallery-thumb .swiper-button-next::after,
.show-product-wrapper .product-thumbs .gallery-thumb .swiper-button-prev::after,
.show-product-wrapper .product-thumbs .gallery-thumbs .swiper-button-next::after,
.show-product-wrapper .product-thumbs .gallery-thumbs .swiper-button-prev::after{
	font-size: 1.5rem ;
	font-weight: bold;
	color: var(--main);
}

.show-product-wrapper .product-thumbs .gallery-thumbs .swiper-button-prev{
	left: -10px ;
}

.show-product-wrapper .product-thumbs .gallery-thumbs .swiper-button-next{
	right: -10px ;
}

.show-product-wrapper svg{
	display: block;
	width: 100% ;
	height: 100% ;
}

.show-product-wrapper .product-thumbs .swiper-product-thumbs {
	margin-top: 1.875rem;
}

.show-product-wrapper .product-thumbs .swiper-product-thumbs .swiper-slide {
	padding: 1px;
}

.show-product-wrapper .product-thumbs .swiper-product-thumbs .swiper-slide-thumb-active img {
	border: 1px solid var(--main);
}

.show-product-wrapper .product-thumbs .swiper-product-thumbs .swiper-slide-thumb-active svg{
	border: 1px solid var(--main);
}

.show-product-wrapper .product-desc {
	padding-left: 5rem;
}

.show-product-wrapper .product-desc .share-links {
	display: flex;
	align-items: center;
	color: #7e7e7e;
}

.show-product-wrapper .product-desc .share-links a {
	display: block;
}

.show-product-wrapper .product-desc .share-links a:first-of-type {
	margin-left: 10px;
}

.show-product-wrapper .product-desc .share-links a:not(:last-child) {
	margin-right: 10px;
}

.show-product-wrapper .product-desc .share-links a img {
	display: block;
	max-width: 30px;
}

.show-product-wrapper .product-desc .product-sku {
	font-size: 2.4rem;
	color: var(--font);
	margin: 2rem 0 1.25rem;
}

.show-product-wrapper .product-desc .product-tags{
	margin-bottom: 1.25rem;
	display: flex;
	flex-wrap: wrap;
}

.show-product-wrapper .product-desc .product-tags span{
	display: block;
	background-color: var(--main);
	color: var(--white);
	padding: 5px ;
	border-radius: 5px ;
	margin-bottom: 10px;
	margin-right: 10px ;
}

.show-product-wrapper .product-desc .product-intro {
	margin-bottom: 1.375rem;
}

.show-product-wrapper .product-desc .product-intro .item {
	font-size: 1.25rem;
	color: #272727;
	margin-bottom: 0.625rem;
}

.show-product-wrapper .product-desc .product-intro .content {
	font-size: 1rem;
	color: #737373;
	line-height: 1.5rem;
}

.show-product-wrapper .product-desc .product-intro .ul-content {
	font-size: 1rem;
	color: #737373;
}

.show-product-wrapper .product-desc .product-intro .ul-content li {
	display: flex;
	align-items: baseline;
	line-height: 1.875rem;
}

.show-product-wrapper .product-desc .product-intro .ul-content li::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background-color: var(--main);
	border-radius: 50%;
	margin-right: 10px;
}

.show-product-wrapper .product-desc .contact-buttons a {
	display: inline-block;
	background: var(--main) url(../images/icon-chat.png) no-repeat 20px center;
	background-size: 24px;
	color: var(--white);
	margin-bottom: 10px ;
	padding: 15px 20px 12px 55px;
}

.show-product-wrapper .product-desc .contact-buttons a:not(:last-child){
	margin-right: 50px ;
}

.show-product-wrapper .product-desc .contact-buttons a.customization_btn{
	background: var(--main) url(../images/icon-design.png) no-repeat 20px center;
	background-size: 24px;
}

.show-product-topic {
	font-size: 2rem;
	border-top: 2px solid var(--font);
	padding: 2rem 0;
}

.show-product-detail .grid-table {
	/* display: flex;
	align-items: flex-start;
	flex-wrap: wrap; */
	column-count: 2;
	margin-bottom: 2rem;
}

.show-product-detail .grid-table .item {
	display: flex;
	font-family: 'lt';
	width: 100%;
	padding-bottom: 1rem;
}

.show-product-detail .grid-table .item .title {
	width: 35%;
	font-size: 1.2rem;
	color: #272727;
	white-space: nowrap;
}

.show-product-detail .grid-table .item .content {
	width: 65%;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #737373;
	padding-right: 1.25rem;
}

.show-product-detail .grid-content{
	/* padding-top: 3.125rem ; */
	border-top: 2px solid var(--font);
	padding: 3rem ;
}

.show-product-detail .grid-content img{
	display: block;
	width: 100% ;
	max-width: 80%;
	margin: 0 auto;
}

.show-product-detail .grid-product-list,
.product-contact-form {
	margin-bottom: 5rem;
}

.form-elements .form-line {
	display: flex;
	font-family: 'lt';
	font-size: 1rem;
	margin-bottom: 2rem;
}

.form-elements .form-line input,
.form-elements .form-line textarea {
	width: 100%;
	color: #7c7c7c;
	border: 1px solid #e6e6e6;
	padding: 15px 20px 10px;
	outline: none;
}

.form-elements .form-line input:not(:last-child) {
	margin-right: 2rem;
}

.form-elements .form-line button {
	display: block;
	background-color: var(--main);
	width: 100%;
	color: var(--white);
	padding: 15px 20px 10px;
	border: 0;
	outline: none;
}

.product-contact-form .form-elements .form-line button {
	display: block;
	background-color: var(--main);
	width: calc((100% - 4rem) / 3);
	color: var(--white);
	padding: 15px 20px 10px;
}

.contact-topic-title {
	font-family: 'bd';
	font-size: 2rem;
	color: var(--font);
	margin-bottom: 1.25rem;
}

.contact-wrapper {}

.contact-desc {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #737373;
	margin-bottom: 5rem;
}

.contact-card {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 3rem;
}

.contact-card .item {
	width: calc((100% - 8%) / 2);
	font-size: 1rem;
	line-height: 2rem;
	color: #737373;
}

.contact-card .item::before {
	content: "";
	display: block;
	width: 40px;
	border-top: 4px solid var(--main);
	margin-bottom: 20px;
}

.contact-line {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 5rem 0;
	padding: 3.125rem 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.contact-line .item {
	width: 25%;
	padding: 10px 20px;
}

.contact-line .item:not(:last-child) {
	border-right: 1px solid #eaeaea;
}

.contact-line .item .title {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.contact-line .item .desc {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #737373;
}

.grid-card {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}

.grid-card .contact-list,
.grid-card .contact-form {
	width: 50%;
	padding: 3rem 3.125rem;
}

.grid-card .contact-list {
	background-color: var(--main);
}

.grid-card .contact-list .logo img {
	display: block;
	max-width: 200px;
}

.grid-card .contact-list .contact-topic-title {
	color: var(--white);
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.grid-card .contact-list .ul-contact li:not(:last-child) {
	margin-bottom: 3.125rem;
}

.grid-card .contact-list .ul-contact li .title,
.grid-card .contact-list .ul-contact li .desc {
	font-size: 1.25rem;
	color: var(--white);
}

.grid-card .contact-list .ul-contact li .title {
	margin-bottom: 10px;
}

.grid-card .contact-list .ul-contact li .desc {
	line-height: 1.875rem;
}

.grid-card .contact-form {
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.grid-card .contact-map {
	margin-top: 5rem;
}

.grid-card .contact-map img {
	display: block;
	width: 100%;
}

.page-desc {
	width: 70%;
	font-size: 1.25rem;
	color: #272727;
	margin-top: 3.125rem;
}

.print-types {
	display: grid;
	grid-template-columns: repeat(3, 30%);
	grid-column-gap: 5%;
	margin-top: 3.125rem;
}

.print-types .item {
	border-top: 2px solid var(--font);
}

.print-types .item .title {
	font-size: 1.25rem;
	color: var(--font);
	padding: 1.25rem 0;
}

.print-types .item .content {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #8d8d8d;
}

.print-thumbs {
	display: grid;
	grid-template-columns: repeat(4, calc((100% - 15rem) / 4));
	grid-gap: 1.875rem 5rem;
	padding: 3.125rem 0 5rem;
}

.print-thumbs .item .thumb img {
	display: block;
	width: 100%;
}

.print-thumbs .item .name {
	font-family: 'lt';
	font-size: 1.25rem;
	color: #272727;
	text-align: center;
	margin-top: 1.25rem;
}

.package {
	position: relative;
}

.package img {
	display: block;
	width: 100%;
}

.package .package-desc {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--white);
	font-size: 1.25rem;
	line-height: 2rem;
	text-align: center;
	padding: 5rem 8rem;
}

.package-steps {
	display: grid;
	grid-template-columns: repeat(5, 20%);
	background: linear-gradient(to right, #5c840a 0, #5c840a 20%, #71a10d 20%, #71a10d 40%, #7fb313 40%, #7fb313 60%, #8bc614 60%, #8bc614 80%, #b0d563 80%, #b0d563 100%);
	margin: 2.5rem 0 0;
}

.package-steps .item-step {
	padding: 3.125rem 1rem;
}

.package-steps .item-step .num {
	font-size: 2.5rem;
	text-align: center;
	color: var(--white);
	margin-bottom: 1rem;
}

.package-steps .item-step .desc {
	font-size: 1rem;
	line-height: 1.5rem;
	color: var(--white);
	text-align: center;
}

.package-thumb {
	margin: 5rem 0;
}

.package-thumb .item-thumb {
	display: flex;
	align-items: center;
}

.package-thumb .item-thumb:nth-child(odd) {
	flex-direction: row;
}

.package-thumb .item-thumb:nth-child(even) {
	flex-direction: row-reverse;
}

.package-thumb .item-thumb:not(:last-child) {
	margin-bottom: 5rem;
}

.package-thumb .item-thumb .thumb,
.package-thumb .item-thumb .thumb-desc {
	width: 100%;
}

.package-thumb .item-thumb .thumb img {
	display: block;
	width: 100%;
}

.package-thumb .item-thumb:nth-child(odd) .thumb-desc {
	padding-left: 5rem;
}

.package-thumb .item-thumb:nth-child(even) .thumb-desc {
	padding-right: 5rem;
}

.package-thumb .item-thumb .thumb-desc .title {
	font-size: 2.5rem;
	color: var(--font);
	/* margin-bottom: 1.5rem; */
}

.package-thumb .item-thumb .thumb-desc .desc{
	color: #838383;
    line-height: 1.875rem;
    padding-top: 2rem;
}

.page-size-desc {
	font-size: 1.25rem;
	color: #272727;
	margin: 3.125rem 0 5rem;
}

.topic-size-title {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.topic-size-title .title {
	font-size: 2.5rem;
	color: #272727;
}

.measurement-wrapper {
	margin-bottom: 5rem;
}

.flex-measurement {
	display: flex;
	flex-direction: row-reverse;
	margin-top: 2rem;
}

.flex-measurement .thumb,
.flex-measurement .thumb-desc {
	width: 100%;
}

.flex-measurement .thumb img {
	display: block;
	width: 100%;
}

.flex-measurement .thumb-desc {
	color: #272727;
	line-height: 1.5rem;
}

.flex-measurement .thumb-desc p {
	padding-left: 20px;
}

.flex-measurement .thumb-desc li {
	position: relative;
	padding-left: 20px;
}

.flex-measurement .thumb-desc li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6rem;
	display: block;
	background-color: var(--main);
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

.flex-measurement .thumb-desc li p {
	padding-left: 0;
}

.category-size a {
	font-family: 'bd';
	font-size: 1.25rem;
	color: var(--font);
}

.category-size a:not(:last-child) {
	margin-right: 3.125rem;
}

.category-size a.active {
	color: var(--main);
}

.scroll-size-swiper {
	position: relative;
	padding: 1.25rem 5rem 0;
}

.scroll-size-swiper .swiper-button-prev,
.scroll-size-swiper .swiper-button-next {
	background-color: #d3d3d3;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
}

.scroll-size-swiper .swiper-button-prev:hover,
.scroll-size-swiper .swiper-button-next:hover {
	background-color: var(--main);
}

.scroll-size-swiper .swiper-button-prev::after,
.scroll-size-swiper .swiper-button-next::after {
	font-size: 1.25rem;
	color: var(--white);
}

.note {
	margin-top: 1.25rem;
	color: #272727;
	line-height: 1.5rem;
}

.contact-size-form {
	background-color: #f5f5f5;
}

.contact-size-form .form-elements {
	margin-top: 2rem;
}

.contact-size-form .form-elements .form-line button {
	width: calc((100% - 4rem) / 3);
	margin-bottom: 0;
}

.bg-grey {
	background-color: #eeeeee;
}

.topic-page-title .title {
	font-size: 2.5rem;
	color: #272727;
}

.topic-line-title {
	font-size: 2rem;
	border-top: 2px solid var(--font);
	padding: 3rem 0;
}

.flex-about-wrapper {
	flex-direction: column-reverse;
	justify-content: initial;
	align-items: flex-start;
}

.flex-about-wrapper .return {
	margin-bottom: 3.125rem;
	padding-bottom: 0;
}

.page-about-desc {
	position: relative;
	background-color: var(--main);
	width: 50%;
	color: var(--white);
	margin-left: 50%;
	margin-top: -25%;
	padding: 3rem 5rem;
}

.page-about-desc .title {
	font-size: 3.2rem;
	margin-bottom: 1.25rem;
}

.page-about-desc .desc {
	line-height: 1.875rem;
}

.page-about-thumb {
	display: flex;
	align-items: center;
}

.page-about-thumb .thumb {
	width: calc(45% - 1rem);
}

.page-about-thumb .thumb img {
	display: block;
	width: 100%;
}

.page-about-thumb .thumb-desc {
	width: 55%;
	padding-left: 6rem;
}

.page-about-thumb .thumb-desc .title {
	font-size: 2.5rem;
	margin-bottom: 1.25rem;
}

.page-about-thumb .thumb-desc .title span {
	display: block;
}

.page-about-thumb .thumb-desc .desc {
	color: #414141;
	line-height: 1.875rem;
}

.scroll-certificate-swiper .container{
	position: relative;
}

.scroll-certificate-swiper .swiper-button-prev,
.scroll-certificate-swiper .swiper-button-next {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #444444;
}

.scroll-certificate-swiper .swiper-button-prev:hover,
.scroll-certificate-swiper .swiper-button-next:hover {
	border-color: var(--main);
}

.scroll-certificate-swiper .swiper-button-prev::after,
.scroll-certificate-swiper .swiper-button-next::after {
	font-size: 1.25rem;
	font-weight: 700;
	color: #444444;
}

.scroll-certificate-swiper .swiper-button-prev:hover::after,
.scroll-certificate-swiper .swiper-button-next:hover::after {
	color: var(--main);
}

.scroll-certificate-swiper .swiper-button-prev {
	left: -50px;
}

.scroll-certificate-swiper .swiper-button-next {
	right: -50px;
}

.bg-main {
	background-color: var(--main);
}

.about-line-paragh {
	font-size: 2.5rem;
	color: var(--white);
	margin: 5rem 0;
	padding-right: 3rem;
}

.list-thumb-desc {
	margin-bottom: 5rem;
}

.list-thumb-desc .item-thumb {
	display: flex;
	align-items: center;
	color: #141414;
}

.list-thumb-desc .item-thumb:not(:last-child) {
	margin-bottom: 4rem;
}

.list-thumb-desc .item-thumb:nth-child(odd) {
	flex-direction: row-reverse;
}

.list-thumb-desc .item-thumb:nth-child(even) {
	flex-direction: row;
}

.list-thumb-desc .item-thumb .thumb,
.list-thumb-desc .item-thumb .desc {
	width: 100%;
}

.list-thumb-desc .item-thumb .thumb img {
	display: block;
	width: 100%;
}

.list-thumb-desc .item-thumb:nth-child(odd) .desc {
	padding-right: 5rem;
}

.list-thumb-desc .item-thumb:nth-child(even) .desc {
	padding-left: 5rem;
}

.list-thumb-desc .item-thumb .desc .title {
	font-size: 2.5rem;
	margin-bottom: 1.25rem;
}

.list-thumb-desc .item-thumb .desc .content {
	line-height: 1.875rem;
}

.faq-desc .desc {
	line-height: 1.5rem;
	padding: 2rem 0 4rem;
}

.faq-desc .grid-thumb {
	display: grid;
	grid-template-columns: repeat(4, calc((100% - 90px) / 4));
	grid-gap: 30px;
}

.faq-desc .grid-thumb .item .thumb {
	position: relative;
}

.faq-desc .grid-thumb .item .thumb .paragh {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background-color: var(--white);
	width: calc(100% - 40px);
	padding: 20px 10px;
}

.faq-desc .grid-thumb .item .thumb .paragh .title {
	font-size: 1.25rem;
}

.faq-desc .grid-thumb .item .thumb .paragh .content {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #767676;
}

.topic-desc-title {
	font-size: 1.875rem;
	padding-right: 5rem;
}

.list-faqs {
	margin-bottom: 5rem;
}

.list-faqs li {
	padding: 1.5rem 0;
	border-bottom: 1px solid #eaeaea;
}

.list-faqs li .question {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.list-faqs li .question .title {
	font-family: 'lt';
	font-size: 1.25rem;
	color: #414141;
	width:calc(100% - 1.5rem)
}

.list-faqs li .question .title span,
.list-faqs li .answer .content span {
	font-size: 1.25rem;
	color: #414141;
}

.list-faqs li .question .arrow {
	position: relative;
	background-color: var(--main);
	width: 1.25rem;
	height: 1.25rem;
	line-height: 1.25rem;
	border-radius: 50%;
}

.list-faqs li .question .arrow::before {
	content: "+";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-weight: 700;
	color: var(--white);
	margin-top: 1px;
}

.list-faqs li.open .question .arrow::before {
	content: "-";
}

.list-faqs li .answer {
	color: #7d7d7d;
	max-height: 0;
	overflow: hidden;
	transition: .5s;
}

.list-faqs li .answer .content {
	display: flex;
}

.list-faqs li.open .answer {
	padding-top: 1.25rem;
	line-height: 1.5rem;
	max-height: 500px;
}

.topic-customization {
	font-size: 1.25rem;
	padding: 3rem 0;
}

.grid-customization {
	display: grid;
	grid-template-columns: repeat(3, calc((100% - 8rem) / 3));
	grid-gap: 4rem;
	margin-bottom: 5rem;
}

.grid-customization .item {
	border-top: 2px solid var(--font);
}

.grid-customization .item .title {
	font-size: 1.25rem;
	color: #272727;
	padding: 1.5rem 0;
}

.grid-customization .item .content {
	color: #8d8d8d;
}

.customization-steps {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.grid-customization-steps {
	display: grid;
	grid-template-columns: repeat(6, calc((100% - 15rem) / 6));
	grid-gap: 3rem;
	padding: 5rem 0;
}

.grid-customization-steps .item-step .num {
	font-size: 2rem;
	color: var(--white);
	text-align: center;
	margin-bottom: 1rem;
}

.grid-customization-steps .item-step .content {
	background-color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	margin: 0 auto;
}

.grid-customization-steps .item-step .content .title {
	font-size: 1.2rem;
	text-align: center;
}

.grid-customization-steps .item-step .content .desc {
	font-size: 0.875rem;
	color: #8d8d8d;
}

.flex-thumb-row,
.flex-thumb-reverse {
	display: flex;
	align-items: center;
}

.flex-thumb-row {
	flex-direction: row-reverse;
}

.flex-thumb-row .thumb,
.flex-thumb-row .thumb-desc,
.flex-thumb-reverse .thumb,
.flex-thumb-reverse .thumb-desc {
	width: 100%;
}

.flex-thumb-row .thumb-desc .title,
.flex-thumb-reverse .thumb-desc .title {
	font-size: 2.5rem;
}

.flex-thumb-row .thumb-desc .desc,
.flex-thumb-reverse .thumb-desc .desc {
	color: #838383;
	line-height: 1.875rem;
	padding-top: 2rem;
}

.flex-thumb-row .thumb-desc {
	padding-right: 5rem;
}

.flex-thumb-reverse .thumb-desc {
	padding-left: 5rem;
}

.grid-row-circle {
	display: grid;
	grid-template-columns: repeat(6, calc((100% - 25rem) / 6));
	grid-gap: 5rem;
}

.grid-row-circle .item-circle img {
	display: block;
	width: 100%;
}

.grid-row-circle .item-circle p {
	font-size: 1rem;
	color: #272727;
	text-align: center;
	margin-top: 1.2rem;
}

.grid-custom-card {
	margin-top: 3rem;
	display: grid;
	grid-template-columns: repeat(2, calc((100% - 1.875rem) / 2));
	grid-gap: 1.875rem;
}

.grid-custom-card .item-card {
	background-color: var(--white);
	color: #272727;
	padding: 2rem 3rem 2rem 2rem;
}

.grid-custom-card .item-card .icon img {
	display: block;
	max-width: 50px;
}

.grid-custom-card .item-card .icon-title {
	margin: 1rem 0;
	font-size: 1.25rem;
}

.grid-custom-card .item-card .icon-desc {
	line-height: 1.5rem;
}

.ul-inclusive li {
	cursor: pointer;
}

.ul-inclusive li .title span,
.ul-inclusive li .title a{
	display: block;
	width: fit-content;
	font-family: 'bd';
	font-size: 1.25rem;
	color: var(--font);
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--font);
}

.ul-inclusive li.open .title span {
	font-family: 'roman';
	border-bottom: 0;
}

.ul-inclusive li .content {
	max-height: 0;
	overflow: hidden;
}

.ul-inclusive li.open .content {
	padding-bottom: 1.25rem;
	max-height: 500px;
}

.grid-thumb-card {
	display: grid;
	grid-template-columns: repeat(2, calc((100% - 1.5rem) / 2));
	grid-gap: 3rem 1.5rem;
}

.grid-thumb-card .item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--white);
	padding: 5rem 1.25rem 2rem;
}

.grid-thumb-card .item .title {
	font-size: 2.5rem;
	text-align: center;
}

.grid-thumb-card .item .title::after {
	content: "";
	display: block;
	width: 3rem;
	border-top: 2px solid var(--main);
	margin: 1.25rem auto;
}

.grid-thumb-card .item .desc {
	font-size: 0.875rem;
	line-height: 2rem;
	text-align: center;
	padding: 0 1rem 1.5rem;
}

.manufacturing-content {
	color: #272727;
	padding: 3rem 0;
}

.manufacturing-content .title {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
}

.manufacturing-content .desc {
	line-height: 2rem;
}

.farbic-content .desc {
	width: 50%;
	font-size: 1.25rem;
	line-height: 2rem;
	padding: 1rem 0 2rem;
}

.farbic-content .more a {
	display: inline-block;
	background-color: var(--main);
	color: var(--white);
	padding: 0.8rem 1.5rem;
	border-radius: 5px;
}

.grid-column-farbic {
	display: grid;
	grid-template-columns: repeat(3, calc((100% - 10rem) / 3));
	grid-gap: 5rem;
	padding: 5rem 0;
}

.grid-column-farbic .item {
	border-top: 2px solid var(--font);
}

.grid-column-farbic .item .title {
	font-size: 1.25rem;
	padding: 2rem 0 1rem;
}

.grid-column-farbic .item .desc {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #8d8d8d;
}

.farbic-printing {
	position: relative;
}

.farbic-printing img {
	display: block;
	width: 100%;
}

.printing-content {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.printing-content .section-content {
	display: block;
	width: 50%;
	background-color: var(--white);
	color: #272727;
	margin-left: 50%;
	padding: 6rem 3rem 0;
}

.printing-content .section-content .desc {
	padding-top: 1.5rem;
	line-height: 1.5rem;
}

.grid-printing-circle {
	display: grid;
	grid-template-columns: repeat(6, calc((100% - 15rem) / 6));
	grid-gap: 3rem;
}

.grid-printing-circle .item-circle img {
	display: block;
	width: 100%;
}

.grid-printing-circle .item-circle p {
	font-size: 1rem;
	color: #272727;
	text-align: center;
	margin-top: 1.2rem;
}

.grid-printing-circle .item-circle p span {
	display: block;
}

.grid-thumb-desc {
	display: grid;
	grid-template-columns: repeat(2, calc((100% - 6rem) / 2));
	grid-column-gap: 6rem;
	margin-bottom: 2rem;
}

.grid-thumb-desc .item .thumb img {
	display: block;
	width: 100%;
}

.grid-thumb-desc .item .thumb-desc {
	color: #272727;
	padding: 3rem 0;
}

.grid-thumb-desc .item .thumb-desc .title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.grid-thumb-desc .item .thumb-desc .desc {
	line-height: 1.5rem;
}

.list-thumb-research {
	margin-bottom: 0;
}

.list-thumb-research .item-thumb:not(:last-child) {
	margin-bottom: 3rem;
}

.list-thumb-research .item-thumb:nth-child(odd) {
	flex-direction: row;
}

.list-thumb-research .item-thumb:nth-child(even) {
	flex-direction: row-reverse;
}

.list-thumb-research .item-thumb .title span {
	display: block;
}

.list-thumb-research .item-thumb .desc {
	font-size: 0.875rem;
}

.list-thumb-research .item-thumb:nth-child(odd) .desc {
	padding-left: 7.2rem;
	padding-right: 0;
}

.list-thumb-research .item-thumb:nth-child(even) .desc {
	padding-left: 0;
	padding-right: 6rem;
}

.list-thumb-research .item-thumb .desc .flex-more-buttons {
	display: flex;
	align-items: center;
	margin-top: 1.5rem;
}

.list-thumb-research .item-thumb .desc .flex-more-buttons a {
	display: inline-block;
	background-color: var(--white);
	color: #272727;
	padding: 0.5rem 1.25rem;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
}

.list-thumb-research .item-thumb .desc .flex-more-buttons a:hover {
	background-color: var(--main);
	color: var(--white);
	border-color: var(--main);
}

.list-thumb-research .item-thumb .desc .flex-more-buttons a:not(:last-child) {
	margin-right: 1.5rem;
}

.strict-item-section:not(:last-child) {
	margin-bottom: 5rem;
}

.grid-column-ability {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 3rem;
}

.grid-column-ability .item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem ;
}

.grid-column-ability .item .num {
	display: flex;
	justify-content: center;
	align-items: center;
	/* background-color: var(--main); */
	/* width: 1.5rem;
	height: 1.5rem;
	line-height: 1.5rem ; */
	/* padding-top: 0.3rem; */
	font-size: 1.5rem;
	color: var(--main);
	/* border-radius: 50%; */
	/* margin-bottom: 1rem; */
}

.grid-column-ability .item .desc {
	width: calc(100% - 2.5rem);
	font-size: 0.875rem;
}

.grid-column-quality {
	display: grid;
	grid-template-columns: repeat(2, calc((100% - 5rem) / 2));
	grid-gap: 5rem;
	margin-top: 3rem;
}

.grid-column-quality .item {
	border-top: 3px solid var(--font);
}

.grid-column-quality .item .title {
	font-size: 1.25rem;
	padding: 1.5rem 0;
}

.grid-column-quality .item .desc {
	font-size: 1rem;
	color: #8d8d8d;
	margin-bottom: 1.5rem;
}

.grid-column-quality .item ul li {
	line-height: 2rem;
}

.grid-production-desc .paragh {
	font-size: 1rem;
	color: #8d8d8d;
	padding: 1rem 0;
}

.grid-production-desc .grid-column-controls {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 2rem;
}

.grid-production-desc .grid-column-controls .item-controls {
	padding: 2rem 1.5rem;
}

.grid-production-desc .grid-column-controls .item-controls .num {
	font-size: 2.5rem;
	color: var(--white);
}

.grid-production-desc .grid-column-controls .item-controls .content {
	color: var(--white);
}

.topic-page-desc {
	font-size: 1rem;
	color: #272727;
	padding: 1rem 0;
}

.grid-column-tick {
	display: grid;
	grid-template-columns: 40% calc(60% - 2rem);
	grid-gap: 2rem;
	margin-top: 2rem;
}

.grid-column-tick .column-tips {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.grid-column-tick .column-tips .item {
	padding: 2rem 1.25rem;
	border: 1px solid #bfbfbf;
}

.grid-column-tick .column-tips .item:not(:first-of-type) {
	border-left: 0;
}

.grid-column-tick .column-tips .item .title {
	font-size: 1.25rem;
	color: var(--main);
	margin-bottom: 1.25rem;
}

.grid-column-tick .column-tips .item ul li {
	background: url(../images/icon-tick.png) no-repeat right center;
	background-size: 1rem;
	font-size: 1rem;
	line-height: 2rem;
}

.list-thumb-controls {
	margin-bottom: 0;
}

.private-wrapper {}

.private-desc {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #737373;
}

.grid-private-card {
	display: grid;
	grid-template-columns: repeat(4, calc((100% - 90px) / 4));
	grid-gap: 30px;
	margin-top: 3.125rem;
}

.grid-private-card .item-card {
	padding:  2rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.grid-private-card .item-card .icon-circle{
	position: relative;
	display: block;
	width: 20px ;
	height: 20px ;
	background-color: var(--main);
	border-radius: 50% ;
	margin: 0 auto 10px ;
}

.grid-private-card .item-card .icon-circle::after{
	content: "";
	position: absolute;
	left: 50% ;
	top: 50% ;
	transform: translate(-50%,-50%);
	width: 10px ;
	height: 10px ;
	background-color: var(--white);
	border-radius: 50%;
}

.grid-private-card .item-card .title {
	font-size: 1.5rem;
	color: var(--font);
}

.grid-private-card .item-card .desc {
	margin-top: 1.2rem;
	color: #8a8a8a;
	line-height: 1.5rem;
}

.grid-private-padding {
	background-color: #8fc321;
	padding: 3rem 0 ;
}

.grid-private-scroll {
	display: grid;
	grid-template-columns: 40% 60%;
}

.private-article .article-title {
	font-family: 'bd';
	font-size: 2.5rem;
	color: var(--white);
	margin-bottom: 30px;
}

.private-article .article-content {
	font-size: 1rem;
	color: var(--white);
	line-height: 1.5rem;
}

.private-scroll {
	width: 100%;
	padding-left: 5rem;
}

.scroll-private-swiper .swiper-slide {
	/* display: grid;
	grid-template-columns: repeat(2,calc((100% - 30px) / 2));
	grid-gap: 30px ; */
	padding: 1px;
}

.scroll-private-swiper .item {
	padding: 1.875rem;
	border: 1px solid var(--white);
	border-radius: 10px;
}

.scroll-private-swiper .item .title {
	font-family: 'bd';
	font-size: 1.5rem;
	color: var(--white);
}

.scroll-private-swiper .item .title::after {
	content: "";
	display: block;
	width: 100px;
	border-top: 2px solid var(--white);
	margin: 10px 0 15px;
}

.scroll-private-swiper .item .desc {
	line-height: 1.5rem;
	color: var(--white);
	/* height: 180px; */
	/* overflow-y: auto; */
}

.scroll-private-swiper .item .desc::-webkit-scrollbar {
	width: 8px;
	background-color: rgba(143, 178, 44, 1);
	border-radius: 10px;
	opacity: .5;
}

.scroll-private-swiper .item .desc::-webkit-scrollbar-thumb {
	width: 8px;
	background-color: #999999;
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.scroll-private-swiper .swiper-pagination {
	position: initial;
	margin-top: 20px;
}

.scroll-private-swiper .swiper-pagination .swiper-pagination-bullet {
	background-color: var(--white);
	opacity: 1;
	outline: none;
}

.scroll-private-swiper .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--font);
}

.private-coropearation .title {
	font-family: 'bd';
	font-size: 2.5rem;
	color: var(--font);
}

.private-coropearation .desc {
	line-height: 1.5rem;
	margin: 10px 0 50px;
}

.scroll-private-card .card-title {
	position: relative;
	font-size: 20px;
	color: var(--font);
	text-align: center;
	padding-bottom: 10px ;
}

.scroll-private-card .card-title::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 10px ;
	transform: translate(-50%, 0);
	background: #e4e4e4 url(../images/icon-arrow-grey.png) no-repeat center center;
	background-size: 16px ;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	z-index: 995;
}

.scroll-private-card .swiper-slide-active .card-title::before{
	background: var(--main) url(../images/icon-arrow-white.png) no-repeat center center;
}

.scroll-private-card .card-title::after{
	content: "";
	display: block;
	width: 100% ;
	border-bottom: 1px solid #e4e4e4;
	margin: 20px 0 15px;
}

.scroll-private-card .card-content{
	background-color: #f2f2f2;
	margin-top: 50px ;
	padding: 20px ;
}

.scroll-private-card .card-content .thumb-desc{
	padding: 40px 0 20px ;
}

.scroll-private-card .card-content .thumb-desc .title{
	font-size: 2.5rem ;
	color: var(--font);
}

.scroll-private-card .card-content .thumb-desc .content{
	line-height: 1.5rem ;
	max-height: calc(1.5rem * 3);
	overflow: hidden;
	margin: 10px 0 30px ;
	transition: .5s;
}

.scroll-private-card .card-content .thumb-desc .content.open{
	max-height: 1000px ;
}

.scroll-private-card .card-content .thumb-desc .more a{
	display: inline-block;
	color: var(--main);
	border-bottom: 1px solid var(--main);
}

.scroll-private-card .swiper-button-next,
.scroll-private-card .swiper-button-prev{
	background-color: #e4e4e4;
	width: 30px ;
	height: 30px ;
	border-radius: 50% ;
	top: 3.125rem ;
	opacity: 1;
}

.scroll-private-card .swiper-button-prev{
	left: 0 ;
}

.scroll-private-card .swiper-button-next{
	right: 0 ;
}

.scroll-private-card .swiper-button-next::after,
.scroll-private-card .swiper-button-prev::after{
	font-size: 16px ;
	color: var(--font);
}

footer {
	background-color: #141414;
	padding: 3rem 0 1.5rem;
}

.footer-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 0 3rem;
	border-bottom: 1px solid #434343;
}

.footer-wrapper-left {
	width: 30%;
}

.footer-wrapper-left .footer-logo {
	margin-bottom: 20px;
}

.footer-wrapper-left .footer-logo img {
	display: block;
	max-width: 150px;
}

.footer-wrapper-left .list-contact li {
	font-family: 'roman';
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 20px;
	padding-left: 30px;
	color: var(--white);
	line-height: 1.5rem;
}

.footer-wrapper-left .list-contact li:not(:last-child) {
	margin-bottom: 10px;
}

.footer-wrapper-left .social-links {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.footer-wrapper-left .social-links a {
	display: block;
}

.footer-wrapper-left .social-links a:not(:last-child) {
	margin-right: 10px;
}

.footer-wrapper-left .social-links a img {
	display: block;
	max-width: 50px;
	opacity: 0.35;
}

.footer-wrapper-left .social-links a:hover img {
	opacity: 1;
}

.footer-wrapper-right {
	width: 65%;
}

.footer-wrapper-right .footer-nav {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer-wrapper-right .footer-nav .nav-ul {
	width: fit-content;
}

.footer-wrapper-right .footer-nav .nav-ul .ul-title {
	font-size: 1.2rem;
	color: var(--main);
	margin-bottom: 10px;
}

.footer-wrapper-right .footer-nav .nav-ul .ul-list li a {
	display: block;
	font-size: 1rem;
	line-height: 2rem;
	color: var(--white);
}

.footer-wrapper-right .footer-newsletter {
	margin-top: 50px;
}

.footer-wrapper-right .footer-newsletter .newsletter-title {
	font-size: 1.2rem;
	color: var(--main);
	margin-bottom: 20px;
}

.footer-wrapper-right .footer-newsletter .newsletter-form {
	width: 50%;
	padding: 10px 0;
	border: 1px solid #373737;
}

.footer-wrapper-right .footer-newsletter .newsletter-form form {
	display: flex;
	align-content: center;
}

.footer-wrapper-right .footer-newsletter .newsletter-form form input {
	background-color: transparent;
	width: 100%;
	color: #828282;
	padding: 0 20px;
	border: 0;
	outline: none;
}

.footer-wrapper-right .footer-newsletter .newsletter-form form button {
	background-color: transparent;
	font-size: 1rem;
	color: var(--main);
	padding: 8px 20px 4px;
	border: 0;
	border-left: 1px solid #373737;
	outline: none;
}

.footer-copy {
	font-size: 1.125rem;
	color: var(--white);
	padding: 1.5rem 0 0;
}

.float-contacts{
	position: fixed;
	right: 30px;
	top: 50%;
	transform: translate(0,-50%);
	z-index: 998;
}

.float-contacts a{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px ;
	height: 50px ;
	background-color: var(--main);
	border-radius: 50% ;
	cursor: pointer;
}

.float-contacts a:not(:last-child){
	margin-bottom: 15px ;
}

.float-contacts a:hover{
	background-color: var(--font);
}

.float-contacts a img{
	display: block;
	max-width: 40px ;
}

.float-contacts a .qrcode{
	position: absolute;
	right: calc(100% + 10px) ;
	top: 50% ;
	transform: translate(0,-50%);
	width: 120px ;
	visibility: hidden;
	opacity: 0 ;
	transition: .5s;
}

.float-contacts a:hover .qrcode{
	visibility: visible;
	opacity: 1;
}

.float-contacts a .qrcode img{
	display: block;
	width: 100% ;
	max-width: 100% ;
}

.float-contacts a .info{
	position: absolute;
	right: 0 ;
	top: 50% ;
	transform: translate(0,-50%);
	background-color: var(--font);
	display: flex;
	justify-content: center;
	font-family: 'bd';
	font-size: 1.2rem ;
	color: var(--white);
	line-height: 50px ;
	padding: 0 10px ;
	white-space: nowrap;
	height: 100% ;
	visibility: hidden;
	opacity: 0;
	transition: .5s;
}

.float-contacts a:hover .info{
	right: calc(100% + 10px) ;
	visibility: visible;
	opacity: 1;
}

.float-contacts a .info::after{
	content: "";
	position: absolute;
	left: 100% ;
	top: 50% ;
	transform: translate(0,-50%);
	border-left: 10px solid var(--font);
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

/* Go to top */
.gotoTop {
	position: fixed;
	right: 30px;
	bottom: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--main);
	visibility: hidden;
	opacity: 0;
	transition: .5s;
	z-index: 998;
	cursor: pointer;
}

.gotoTop::before {
	content: "";
	display: block;
	border-bottom: 13px solid var(--white);
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
}

.gotoTop::after {
	content: "";
	display: block;
	width: 5px;
	height: 20px;
	background-color: var(--white);
}

.gotoTop.visible {
	visibility: visible;
	opacity: 1;
}
