html,body,div,span,
h1,h2,h3,h4,h5,h6,
p,blockquote,q,em,img,small,strong,
dl,dt,dd,ol,ul,li,fieldset,form,label,legend{border:0;outline:0;margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
ol,ul{list-style:none}
:focus{outline:0}
input,textarea{margin:0;outline:0;}
textarea{overflow:auto; resize:none;}
table{border-collapse:collapse;border-spacing:0}
/* End Reset */

/* html5 */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }

*,
*::after,
*::before{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Default Font Styles
______________________*/
body, input, select, textarea{
	font-family: 'Montserrat', sans-serif;
	font-size:16px;
	color:#575756;
	line-height:1.2;
}
body.overflow-hidden{
	overflow: hidden;
}
/* Headings
______________________*/
h1,.h1,h2,.h2,h3,.h3,h4,.h4 {
	font-weight: 700;
	margin-bottom: 20px;
	word-break:break-word;
}
h1,.h1{
	font-size: 36px;
}
h2,.h2{
	font-size: 36px;
}
h3,.h3{
	font-size: 28px;
}
h4,.h4{
	font-size: 18px;
}


/* Links
______________________*/
a{
	text-decoration: none;
	transition: 0.3s;
	color:#094;
	word-break:break-word;
}

/* p, blockquote, address
______________________*/
p{
	margin-bottom: 20px;
	color: #575756;
	word-break:break-word;
}
p.small{
	font-size: 14px;
}
/* Lists
______________________*/
ul{
	margin: 0;
	padding: 0;
}
ul li{
 	list-style-type: none;
	word-break:break-word;
}

/* iframe
______________________*/
iframe {
	width: 100%;
}

/* capitalice
______________________*/
.capitalize {
	text-transform: capitalize;
}

/* Layout 
______________________*/
.container{
	max-width:1200px;
	margin:0 auto;
	padding: 0 15px;
}
img{
	max-width: 100%;
	height: auto;
}
.d-flex{
	display: flex;
}
.theme-btn, a.theme-btn ,input[type="submit"], input[type="button"].theme-btn{
	cursor: pointer;
	letter-spacing: 0.9px;
	font-size: 18px;
	color: #009944;
	max-width: 398px;
	height: 60px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	border: 1px solid #009944;
	transition: 0.3s;
	background-color: transparent;
}
.input[type="button"].theme-btn {
	background: transparent;
}
.theme-btn:hover,input[type="button"].theme-btn:hover{
	background: #009944;
	color: white;
}
.theme-btn.submit-btn2 {
    background: #009944;
    color: #fff;
    margin: 100px 10px auto;
}
.theme-btn.submit-btn2:hover {
    background: #fff;
    color: #009944;
    border: 1px solid #009944;
}
.form .contact-button-box .theme-btn.submit-btn,.contact-button-box .theme-btn.submit-btn2 {
	margin: 0 auto;
}
label.display-confirm{
	display: none;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview {
	display:block;
}
.btn-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.btn-box button {
  width: 45%;
}
.contact-button-box {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 24px;
	margin-top: 40px;
}
.contact-button-box .button-wrapper {
	width: 100%;
}
.main-404 .theme-btn:hover {
	background: #009944;
	color: white;
}
.region-selector, a.region-selector {
	max-width: 256px;
	height: 44px;
	display: flex;
	align-items: center;
	padding: 10px 58px 10px 32px;
	color: #009944;
	letter-spacing: 0.9px;
	font-size: 18px;
	border-radius: 5px;
	background: white;
	border: 1px solid white;
	position: relative;
}
.region-selector::after{
	content: '';
	display: block;
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translate(0, -50%);
	width: 7.7px;
	height: 13px;
	background: url('../images/right-arrow.png') no-repeat center /cover;
	transition: 0.3s;
}
.region-selector:hover::after{
	right: 22px;	
}
.common-card-container {
	width: 100%;
	margin-bottom: 70px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 28px;
	row-gap: 40px;
}
.common-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	background: #fff;
}
.common-card-img {
	border-radius: 10px 10px 0 0;
	width: 100%;
	height: auto;
}
.common-card-grow {
	width: 100%;
	flex-grow: 1;
}
/* menu btn 
______________________*/
.menu-btn{
	width: 22px;
	height: 22px;
	position: absolute;
	left: 17px;
	top: 50%;
	transform: translate(0, -50%);
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.menu-btn span{
	width: 100%;
	height: 2px;
	background: white;
	position: relative;
	border-radius: 2px;
}
.menu-btn span::before,
.menu-btn span::after{
	content: '';
	display: block;
	border-radius: 2px;
	position: absolute;
	left: 0;
	width: 100%;
	top: -5px;
	background: white;
	height: 2px;
}
.menu-btn span::after{
	top: auto;
	bottom: -5px;
}
/* Header
______________________*/
.header-wrap{
	background: #009944;
	padding: 26px 0 29px;
	position: relative;
}
.header-left{
	max-width: 123px;
	width: 100%;
}
.logo{
	display: block;
	width: 100%;
}
.logo img{
	width: 100%;
	display: block;
}
.header{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-right nav{
	display: flex;
	align-items: center;
}
.main-menu{
	display: flex;
	padding:0 12px;
	align-items: center;
	gap: 16px;
}
.main-menu li{
	letter-spacing: 0.8px;
	position: relative;
}

.main-menu .lang-menu{
	display: none;
}
.main-menu li .sub-menu{
	position: absolute;
	background-color: #009944;
	z-index: 5;
	min-width: 150px;
	margin-left: 0;
	padding: 10px 15px ;
	left: 0;
	top:100%;
	display: none;
	border-radius: 0 0 10px 10px;
}
.main-menu  .sub-menu li::after {
	display: none;
}
.main-menu li .sub-menu li{
	padding:5px 0;
}
.main-menu li:last-child{
	display: none;
}
.main-menu li a{
	color: #FFFFFF;
}
.main-menu li a:hover{
	opacity: 0.8;
}
.lang-value{	
	width: 155px;
	height: 35px;
	background: white url('../images/dropdown-icon.png') no-repeat right 12px center/10px;
	border: 0;
	border-radius: 5px;
	padding: 7px 15px 7px 37px;
	text-transform: capitalize;
	color: #009944;
	appearance: none;
	cursor: pointer;
}
.lang-value span{
	max-width: 82px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
}
.lang-dropdown{
	position: relative;
}
.lang-dropdown::after{
	content: '';
	display: block;
	position: absolute;
	left: 12px;
	top: 50%;
	width: 16px;
	height: 16px;
	background: url('../images/globel-icon.png') no-repeat center/cover;
	transform: translate(0, -50%);
}
.lang-dropdown-list{	
	position: absolute;
	padding: 0;
	display: none;
	min-width: 326px;
	background: white;
	right: 0;
	top: 114%;
	z-index: 5;
	box-shadow: 0px 3px 6px #00000029;
}
.lang-dropdown-list li{
	padding: 20px;
	border-bottom: 1px solid #DADADA;
	position: relative;
}
.lang-dropdown-list li a{
	font-size: 18px;
	color: #009944;
	font-weight: 700;
	display: block;
}
.lang-dropdown-list li:hover::after{	
	right: 14px;
}
.lang-dropdown-list li::after{
	content: '';
	display: block;
	position: absolute;
	background:url('../images/right-arrow.png') no-repeat center/cover; 
	width: 8px;
	height: 14px;
	right: 20px;
	top: 50%;
	margin-top: -7px;	
}
.lang-sp-current {
	display: none;
}
.recommended-projects .projects{
	margin-bottom: 80px;
}
.overlay-link{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
}
.search-toggle{
	display: none;
	cursor: pointer;
	position: absolute;
	left: 58px;
	top: 50%;
	width: 18px;
	transform: translate(0, -50%);
	z-index: 9999;
}
.search-toggle img{
	display: block;
}

/* cni link section
________________________*/
.cni-link-wrap {
	background: #00b050;
	padding: 5px 0;
}

.cni-link-wrap .container {
	display: flex;
	justify-content: flex-end;
}

.cni-link-wrap .container a {
	color: #FFF;
	transition: .3s;
}

@media (hover:hover) {
	.cni-link-wrap .container a:hover {
		opacity: .6;
	}
}

@media (hover:none) {
	.cni-link-wrap .container a:active {
		opacity: .6;
	}
}


/* search bar section 
________________________*/
.search-categories-wrap{
	background: #E4E4E4;
	padding: 18px 0;
}
.search-categories-wrap .d-flex{
	align-items: center;
	justify-content: space-between;
}
.search-form .search{
	max-width: 798px;
	width: 100%;
}
.search-field{		
	width: 100%;
	background: white;
	border: 1px solid #DADADA;
	height: 44px;
	border-radius: 4px;
	position: relative;
}
.search-field input:not([type="submit"]){
	border-radius:5px;
	border: 0;
	width: 100%;	
	height: 100%;
	padding: 10px 20px 10px 63px;
	letter-spacing: 0.8px;
}
form .search-submit{
	position: absolute;
	font-size: 0;
	width: 20px;
	height: 20px;
	background: url('../images/search-icon.png') no-repeat center /cover;
	position: absolute;
	top: 50%;
	left: 26px;
	transform: translateY(-50%);
	border: 0;
	cursor: pointer;
}
.categories {
	max-width: 246px;
	width: 100%;
}
.categories select{
	height: 44px;
	background: white url('../images/gry-dropdown-icon.png') no-repeat right 18px center/14px;
	border-radius: 5px;
	width: 100%;
	border:1px solid #DADADA;
	padding: 10px 26px;
	color: #57575680;
	appearance: none;	
	letter-spacing: 0.8px;
}
/* banner styles
_____________________ */
.banner-wrap{
	padding: 29px 0 61px;
}
.banner-img{
	width: 	919px;
	padding: 7px 0 10px;
}
.banner-img img{
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 10px;
}
.main-banner .owl-dots{
	display: flex;
	justify-content: center;
	margin-top: 29px;
}
.main-banner .owl-dot{
	width: 	9px;
	height: 9px;
	border-radius: 100px;
	background: #DADADA !important;
	margin: 0 4px;
}
.main-banner .owl-dot.active{
	background: #009944 !important	;
}
.main-banner .owl-nav{
	position: absolute;
	top: 41%;
	left: 0;
	width: 	100%;
	display: flex;
	justify-content: space-between;
}
.main-banner .owl-prev {
    transform: rotate(-180deg);
    margin-left: 15px;
}
.main-banner .owl-next {
	margin-right: 15px;
}
.main-banner .owl-prev,
.main-banner .owl-next {
	color: #000 !important;
	width: 9px;
	height: 16px;
	background: url('../images/gry-rigth-arrow.png') no-repeat center /cover !important;
	font-size: 0 !important;
}
/* main-wrap
______________________ */
.main-wrap{
	padding-bottom: 200px;
	background: #F8F8F8;
}
.home-main-wrap{
	padding-top: 80px;
}
.heading{
	position: relative;
	border-bottom: 1px solid #DADADA;	
	padding-bottom: 10px;
	letter-spacing: 1.8px;
	position: relative;
}
.heading::after{
	content: '';
	display: block;
	position: absolute;
	bottom: -1.5px;
	left: 0;
	background: #009944;
	width: 129px;
	height: 3px;
}
.sub-heading {
	width: 100%;
	color: #094;
	border-left: solid 5px #094;
	padding-left: .5em;
}
.recommended-sec{
	padding-bottom: 75px;
}
.knitting-title h2{
	margin-bottom: 81px;
}
.series-page .series-sec h2{
	margin-bottom: 51px;
}
.recommended-sec h2{
	margin-bottom:  87px;
}
.product-img{
	display: block;
	margin-bottom: 18px;
}
.product-img img{
	display: block;
	border-radius: 10px;
	box-shadow: 0px 3px 6px #00000029;
}

.recommended-img {
	aspect-ratio: 1/1;
	object-fit: cover;
}

.project-features .projects{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-template-rows: auto;
	margin: 0 auto 69px;	
}
.project-features .projects.one-column {
	grid-template-columns: 1fr;
}
.project-features .projects.project-card-grid {
	width: 85%;
}
.project-features .projects>*:nth-child(odd) {
	justify-self: flex-end;
}
.project-info{
	padding:17px 13px 26px;
	background: white;
	border-radius: 0 0 10px 10px;
}
.product p{
	letter-spacing: 0.9px;
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 0;
}
.projects-sec{
	padding-bottom: 120px;
}
.projects-sec h2{
	margin-bottom: 81px;
}
.projects-sec h3{	
	margin-bottom: 40px;
	color: #009944;
	letter-spacing: 1.4px;
}
.full-width-project {
	max-width: 819px;
	display: flex;
	margin: 0 auto;
}
.project-img a{
	display: block;
}
.project-img img {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px 10px 0 0;
    display: block;
    width: 100%;
}
.project-info{
	box-shadow: 0px 3px 6px #00000029;
}
.project-info p{
	letter-spacing: 0.8px;
}
.project-info p a{
	color: #575756;
}
.project-info p.small{
	letter-spacing: 0.7px;
}
.tool-name .tag{
	width: fit-content;
	height: fit-content;
	font-size: 12px;
	padding: 4px 12px;
	border-radius: 100px;
	color: white;
	background: #009944;
	margin-right: 10px;
	opacity: 1;
	float: left;
}
.tool-name-text {
	line-height: 1.6;
}
.tool-name .tag::after {
	clear: both;
}
.projects-sec .theme-btn{
	margin: 0 auto;
}
.recommended-projects{
	padding-top: 80px;
}
.most-viewed-projects {
	padding-top: 80px;
}
.products-wrap:not(.pb-0){
	padding-bottom: 80px;
}
.products-wrap.pb-0{
	padding-bottom: 8px;
}
.products-wrap h2{
	margin-bottom: 87px;
}
.products-categories{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 29px;
	row-gap: 38px;
}
.products-categories.alt{
	display: block;
}
.products-categories.alt .product-category{
	max-width: 100%;
	height: 100%;
}
.categories-row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 33px;
  margin: 0 -14px;
}
.col-50{
	width: 100%;
	max-width: 50%;
}
.col{
	width: 100%;
	padding:0 14px;
}
.col-25{
	max-width: 25%;
}
.product-category{
	box-shadow: 0px 3px 6px #00000029;
	padding: 5px 20px;
	display: flex;
	align-items: center;
	border-radius: 8px;
	background: white;
	position: relative;
	min-height: 74px;
}
.products-categories{
	column-gap: 29px;
}
.product-category p{
	margin-left: 14px;
}
.product-category.w50{
	max-width: 48%;
}
.product-category.w25{
	max-width: 23%;
}
.product-category p{
	margin-bottom: 0;
	margin-left: 20px;
	letter-spacing: 0.8px;
}
.product-category-icon{
	max-width: 30px;
}
.product-category-icon img{
	display: block;
}
.news-wrap{
	padding: 0 0 200px;
}
.news-wrap h2{
	margin-bottom: 81px;
}
.news-wrap .theme-btn{
	margin:116px auto 0;
}
.news-container {
	width: 100%;
	max-width: 900px;
	margin: auto;
}
.news-item{
	display: grid;
	grid-template-columns: 120px 1fr;
	align-items: center;
	margin-bottom: 31px;
	gap: 20px;
}
.news-date{
	color: #009944;
	font-size: 18px;
	letter-spacing: 0.9px;
	justify-self: flex-start;
	width: max-content;
}
.news-title{
	font-size: 18px;
	letter-spacing: 0.9px;
}
.facebook-badge{
	background: #006AEB;
}
.twitter-badge{
	background: #1D94E1;
}
.pintress-badge{
	background: #CF1930;
}
.social-badges{
	display: flex;
	justify-content: center;
}
.social-badge{
	display: flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 5px;
	margin: 0 5px;
}
.social-badge img{
	display: block;
	max-width: 16px;
}
.social-badge span{
	margin-bottom: 0;
	color: white;
	margin-left: 10px;
	letter-spacing: 0.6px;
	font-size: 12px;
}
.social-links-wrap{
	background: white;
	padding: 62px 0;
}
.social-links-wrap .container{
	max-width: 670px;
}
.social-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.social-links a{
	display: block;
	max-width: 56px;
}
.social-links a img{
	display: block;
}
/*	404 Error
--------------------------------- */
.main-404-wrap{
	padding-top: 100px;
}
.main-404{
	text-align: center;
	margin: 0 auto;
}
.main-404 h1{
	margin-bottom: 34px;
	font-size: 120px;
	line-height: 1.2167;
	color: #009944;
	font-weight: 400;
	letter-spacing: 6px;
}
.main-404 p{
	font-size: 22px;
	line-height: 1.227;
	letter-spacing: 1.1px;
	color: #575756;
	margin-bottom: 100px;
}
.main-404 .theme-btn{
	margin: 0 auto;
	color: #009944;
}
/*  Search Result
-------------------------------------- */
.search-result-wrap{
	padding-top: 99px;
}
.search-result h3{
	font-weight: 400;
	text-align: center;
	font-size: 24px;
	line-height: 1.2083;
	margin-bottom: 77px;
	letter-spacing: 1.2px;
}
.search-result-form{
	column-gap: 30px;
	margin-bottom: 126px;
}
.search-result-form .search-field{
	height: 70px;
}
.search-result-form .categories select{
	height: 100%;
}
.search-result-content{
	display: flex;
	flex-direction: column;
	row-gap: 38px;
	margin: 0 auto 110px;
	max-width: 890px;
}
.search-result-list{
	display: grid;
	grid-template-columns: 200px auto;
	align-items: center;
	gap: 30px;
}
.search-result-list iframe {
	aspect-ratio: 16/9;
	border: none;
	border-radius: 5px;
}
.search-result-fig img {
    display: block;
    border-radius: 5px;
    box-shadow: 0px 3px 6px #00000029;
    width: 100%;
}
.search-result-info h4{
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 1.083;
	letter-spacing: 1.2px;
	color: #009944;
	font-weight: 400;
}
.search-result-info p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.44;
    letter-spacing: 0.9px;
    color: #575756;
}
.pagination, .page-numbers{
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagination li{
	margin: 0 12px;
	font-size: 18px;
	line-height: 1.22;
	letter-spacing: 0.9px;
	color: #575756;
}
.pagination li.first-page-number,
.pagination li.last-page-number{
	display: flex;
	align-items: center;
}
.pagination li.first-page-number{
	margin-left: 24px;
}
.pagination li.last-page-number{
	margin-right: 24px;
}
.pagination li.first-page-number::before,
.pagination li.last-page-number::after{
	content: '';
	width: 1px;
	height: 35px;
	background: #DADADA;
	display: block;
}
.pagination li img{
	max-width: 14px;
}
.pagination li img {
    max-width: 8px;
}
.pagination li.last-page-number::after{
	margin-left: 38px;
}
.pagination li.first-page-number::before{
	margin-right: 38px;
}
.pagination a{
	color: #575756;
}
.pagination em{
	font-style: normal;
}
.pagination span{
	position: relative;
}
.pagination span.current {
	color: #009944;
}
.pagination span.current::after{
	content: '';
	width: 18px;
	height: 1px;
	background: #009944;
	position: absolute;
	left: 50%;
	top: 100%;
	margin-top: 2px;
	transform: translateX(-50%);
}
/*  Region
-------------------------------------- */
.region-wrap{
	padding-top: 10px;
}
.region-top{
	text-align: center;
}
.region-top img{
	display: block;
	margin: 0 auto;
}
.region-top h3{
	font-size: 22px;
	line-height: 1.227;
	font-weight: 400;
	letter-spacing: 1.1px;
	color: #575756;
	margin: 27px 0 116px;
}
.region-list-row{
	display: flex;
	column-gap: 30px;
	margin-bottom: 200px;
}
.region-list-col{
	width: 100%;
	max-width: 33.33%;
}
.region-list-col h4{
	font-size: 24px;
	min-height: 81px;
	line-height: 1.2083;
	letter-spacing: 1.2px;
	color: #009944;
	padding-bottom: 22px;
	border-bottom: 1px solid #DADADA;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
}
.region-list-col li{
	border-bottom: 1px solid #DADADA;
}
.region-list-col li > a{
	display: block;
}
.region-list-col li > a:not(.link-card){
	font-size: 18px;
	line-height: 1.22;
	letter-spacing: 0.9px;
	color: #575756;
	display: block;
	font-weight: 600;
	padding: 21px 30px 20px 0;
	position: relative;
}
.region-list-col li > a:not(.link-card)::after{
	content: '';
	width: 8px;
	height: 13.5px;
	background: url('../images/right-arrow.png') no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 17px;
}
.link-card{
	padding-bottom: 23.29px;
}
.link-card img{
	display: block;
	border-radius: 12px;
}
/*  Footer 
-------------------------------------- */
.footer-wrap{
	padding: 58px 0 77px;
	background: #009944;
}
.footer-logo{
	display: block;
	max-width: 145px;
}
.footer-logo img{
	display: block;
}
.footer{
	display: flex;
	align-items: flex-start;
	margin-bottom: 36px;
	justify-content: space-between;	
	column-gap: 16px;
	row-gap: 24px;
}
.footer-btm{
	padding: 27px 0 26px;
}
.copyright{
	text-align: center;
	font-size: 14px;
	margin-bottom: 23px;
	letter-spacing: 0.7px;
}
.footer-btm-links{
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-btm-links a{
	display: block;
	letter-spacing: 0.7px;
	color: #009944;
	font-size: 14px;
	padding: 0 20px;
	border-left: 1px solid #009944;
}
.footer-btm-links a:first-child{
	padding-left: 0;
	border-left: 0;
}
.footer-list {
	min-width: 90px;
}
.footer-list h4 a:hover,
.footer-btm-links a:hover,
.footer-list li a:hover{
	filter: opacity(0.7);
}
.footer-list li{
	font-size: 14px;
	line-height: 2;
}
.footer-list li a{
	color: white;
}
.footer-wrap .d-flex{
	align-items: center;
	justify-content: space-between;
	max-width: 681px;
}
.footer-list h4{
	font-weight: 400;
	letter-spacing: 0.9px;
	margin-bottom: 22px;
	text-transform: capitalize;
	text-transform: none;
}
.footer-list h4 a{
	color: white;
}
/* custom css */
.knitting-sec .heading{
	margin-bottom: 81px;
}
.knitting-needles{
	margin-bottom: 54px;	
}
.kitting-products{
	align-items: flex-start;
}
.kitting-product{
	max-width: 400px;
	margin-bottom: 80px;
}
.col-6{
	max-width: 50%;
	width: 100%;
}
.kitting-product h4{	
	letter-spacing: 0.9px;
	margin-bottom: 20px;
	line-height: 1.3;
}

.green-txt,
.green-text a,
.green-heading {
	color: #009944;
}
.kitting-product h4.green-text,
.products-feature-info .green-heading {
	font-weight: 700;
	margin-bottom: 30px;
}
.green-text, .single-feature .products-feature-info h4 {
	color: #009944;
	font-weight: 400;
	padding-right: 25px;	
	position: relative;
	display: inline-block;
}
.green-text::after{
	content: '\03e';
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 20px;
	height: 20px;
}
.kitting-product .product-img{
	max-width: 245px;
	margin-bottom: 30px;
}
.kitting-product ul{
	margin-bottom: 35px;
}
.kitting-product li {
	color: #009944;
	margin-bottom: 18px;
	line-height: 1.3;
	letter-spacing: 0.9px;
	padding-left: 16px;
	position: relative;
}
.kitting-product li a {
	font-size: 18px;
	color: #009944;
}
.kitting-product li::after{
	content: '\03e';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
}
.read-more-btn{
	border: 1px solid #009944;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 154px;
	height: 40px;
	border-radius: 5px;
	color: #009944;
	background: transparent;
}
.read-more-btn:hover{
	background: #009944;
	color: white;
}
.darning-needles{
	padding-bottom: 58px;
}
.darning-needles h3{
	margin-bottom: 35px;
}
.bread-crumbs, .breadcrumbs{
	padding: 34px 0;
	background: #F8F8F8;
}
.bread-crumbs-list{
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
}
.bread-crumbs-list{
	column-gap: 38px;
	overflow: hidden;
}
.bread-crumbs-list li, .bread-crumbs a {
	font-size: 18px;
	font-weight: 700;
	position: relative;
	line-height: 1.3;
}
.bread-crumbs a {
    font-weight: 400;
    color: #009944;
}
.bread-crumbs span.current-item {
	font-weight: 700;
}
.bread-crumbs-list li:first-child{
	padding-left: 0;
}
.bread-crumbs-list li.disable:last-child::after{
	display: none;
}
.bread-crumbs-list li:not(:last-of-type):after{
	content: '\03e';
	display: block;
	position: absolute;
	right: -29px;
	top: 50%;
	transform: translateY(-50%);
	color: #575756;
	font-weight: 400;
	width: 20px;
	height: 20px;
}
.bread-crumbs-list li a, .breadcrumbs a{
	color: #009944;
	font-weight: 400;
}
.bread-crumbs-list li a:hover, .breadcrumbs a:hover {
	opacity: 0.7;
}
.bread-crumbs span {
	font-size: 18px;
}
.knitting-main-wrap{
	padding-top: 10px;
}
.kitting-product .d-flex{
	display: block;
}

/* product-archive product-feature-cards */
.product-feature-card {
	width: 100%;
	background: #fff;
	border-radius: 10px 10px 0 0;
}

.product-feature-img {
	display: block;
	border-radius: 10px 10px 0 0;
	width: 100%;
	height: auto;
}

.product-feature-info {
	letter-spacing: .8px;
	margin: 0;
	padding: 17px 13px 26px;
	border-radius: 0 0 10px 10px;
	box-shadow:0px 3px 6px #00000029;
}

/* product-children-container */
.product-children-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	align-items: flex-start;
	gap: 50px;
}

.product-child-box {
	height: 100%;
}

.product-child-box:not(:nth-last-of-type(-n+2)) {
	border-bottom: solid 1px #ccc;
}

/* child-term-more */
.child-term-more-button {
	display: block;
	border: none;
	background: transparent;
	padding: 10px;
	margin: auto;
	border-radius: 10px;
	color: #094;
	cursor: pointer;
	transition: .3s;
}

/* grandchild-list */
.grandchild-list li a {
	color: #575756;
}

.grandchild-list li::after {
	color: #575756;
}

@media (hover:hover) {
	.child-term-more-button:hover {
		background: #094;
		color: #fff;
	}
}

@media (hover:none) {
	.child-term-more-button:active {
		background: #094;
		color: #fff;
	}
}

.child-term-more-links {
	display: none;
	margin-top: 20px;
	transition: .3s;
}

/* product name page starts*/
.product-name-wrap{
	padding-top: 9px;
}
.product-name-title{
	margin-bottom: 51px;
}
.product-name-main{
	display: flex;
	margin-bottom: 190px;
}
.product-name-right,
.product-name-left{
	max-width: 522px;
	width: 100%;
}
/* top slider */
.splide {
	margin-inline: 15px;
}

.splide__track {
	margin-top: 15px;
}

.splide__list {
	align-items: flex-start;
}

.splide__pagination {
	gap: 15px;
}

.splide__pagination__page {
	background: #094;
	opacity: .3;
	padding: 6px;
	border-radius: 9999px;
	margin-top: 15px;
}

.splide__pagination__page.is-active {
	opacity: 1;
}

@media screen and (max-width:768px) {
	.splide {
		margin-inline: 0;
	}
	.splide__track {
		margin-top: 0;
	}
}
.slide-main-img img,
.slide-main-img{
	width: 100%;
}
.slide-main-img{
	margin-bottom: 50px;
	text-align: center;
}
.slide-main-img img {
    border-radius: 10px;
    box-shadow: 0px 3px 6px #00000029;
    max-height: 400px;
    width: auto;
}
.product-slides{
	display: flex;
	column-gap: 15px;
	align-items: flex-start;
}
.product-slide-img{
	max-width: 92px;
	border:2px solid transparent;
	cursor: pointer;
	border-radius: 6px;
}
.product-slide-img img {
    border-radius: 5px;
    box-shadow: 0px 3px 6px #00000029;
    display: block;
    height: 88px;
    width: 92px;
    object-fit: contain;
}
.product-slide-img.active{
	border-color: #009944;
}
.product-name-right{
	margin-left: 30px;
}
.product-info{
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 1em;
}
.art-no {
	font-weight: bold;
	margin-right: 10px;
}
.download-btn{
	display: flex;
	max-width: 246px;
	height: 53px;
	align-items: center;
	border-radius: 5px;
	border: 1px solid #EC8542;
	color: #EC8542;
	padding-left: 47px;
	position: relative;
	font-size: 18px;
	letter-spacing: 0.8px;
}
.download-btn::before{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 21px;
	width: 18px;
	height: 18px;
	background: url('../images/download-icon.png') no-repeat center /cover;
}
.product-name-right .green-text{
	margin-bottom: 50px;
}
.product-name-right .download-btn{
	margin-bottom: 50px;
}
.pdf-instruction{
	column-gap: 46px;
}
.instruction-box{
	max-width: 200px;
	margin-bottom: 53px;
	width: 100%;
	column-gap: 46px;
}
.instruction-box h4{
	margin-bottom: 18px;
	color: #575756;
	letter-spacing: 0.9px;
}
.instruction-img{
	position: relative;
}
.instruction-img img{
	width: 100%;
	border-radius: 10px;
	display: block;
	aspect-ratio: 1;
}
.instruction-info{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.4);
	padding: 17px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.instruction-info p{
	max-width: 147px;
	margin: 0 auto;
	text-align: center;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.7px;	
}
.pdf-icon{
	max-width: 40px;
	margin: 0 auto;
}
.pdf-icon img{
	border-radius: 0;
}
.pdf-overlay-link{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.product-name-right .social-badges {
	justify-content: flex-start;
}
.projects-sec h3.product-inner-heading,
.product-inner-heading{
	font-size: 24px;
	padding-bottom: 20px;
	border-bottom:1px solid #DADADA;
	letter-spacing: 1.2px;
	margin-bottom: 59px;
	color: #575756;
}
.product-feature-wrap .projects{
	row-gap: 51px;
}
.product-name-wrap .projects-sec .theme-btn{
	display: none;
}
.video-sec h3{
	margin-bottom: 50px;
}
.series{
	justify-content: flex-start;
	row-gap: 30px;
	margin: 0 -15px;
	padding-bottom: 100px;
}
.series-sec .theme-btn{
	display: none;
	margin: 0 auto;
}
.series-box .product-img,
.series-box .product-img img{
	box-shadow: none;
	margin-bottom: 0;
}
.series-box .product-img img {
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 0px 6px #00000029;
}
.series-box-info{
	box-shadow: 0px 3px 6px #00000029;
	background: white;
	border-radius: 0 0 10px 10px;
	padding: 17px 13px 26px;
}
.series-box-info p{
	font-size: 16px;
	margin-bottom: 24px;
	letter-spacing: .8px;
}
.series-box-info .small{
	font-size: 14px;
	margin-bottom: 0;
	letter-spacing: 0.7px;
	color: rgba(87, 87, 86, 0.6);
}
.series-box-info .green-text{
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.6px;
	margin-bottom: 12px;
	padding: 0;
}
.series-box-info p a {
	color: #575756;
}
.series-box .green-text::after{
	display: none;
}
.video-sec{
	padding-bottom: 139px;
}
.video-thumbnail {
	width: 100%;
}
.video-descp p{
	margin-bottom: 14px;
	font-size: 18px;
	letter-spacing: 0.9px;
	line-height: 1.4;
	color: #575756;
}
.video-descp p.small{
	font-size: 14px;
	letter-spacing: 0.7px;
	line-height: 1.8;
	margin-bottom: 20px;	
	color: rgba(87, 87, 86, 0.6);
}
.video-descp-time{
	color: #009944;
	letter-spacing: 0.8px;
	line-height: 1.18;
	text-align: right;
	font-size: 16px;
}
.video{
	margin-bottom: 30px;
}
.video video{
	width: 100%;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 5px;
	display: block;
}
.product-name-wrap .projects-sec{
	padding-bottom: 0;
}
.product-name-wrap .projects{
	margin-bottom: 0;
	row-gap: 50px;
}
/*product name page ends*/

/* product feature page styles 
________________________________*/
.product-feature-individual,
.product-feature-wrap{
	padding-top: 9px;
}
.product-feature-wrap .social-badges{
	justify-content: flex-end;
	margin-bottom: 30px;
}
.product-feature-banner{
	margin-bottom: 100px;
}
.product-feature-banner img{
	width: 100%;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 10px
}
.products-features{
	display: flex;
	justify-content: space-between;
	margin-bottom:60px;
	gap: 20px;
}
.products-features:last-child{
	margin-bottom: 0;
}
.products-feature-info{
	width: 100%;
	max-width: 47%;
	margin-right: 48px;
}
.products-feature-info .green-heading {
	margin-top: 28px;
}
.products-feature-img{
	max-width: 48%;
	width: 100%;
}

.product-features.one-column .products-features-img {
	max-width: initial;
	width: initial;
}
.products-feature-img img{
	width: 100%;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 10px;
}
.products-features-sec+* h4.black-text {
	padding-top: 60px;
}
.products-features-sec .products-feature-info h4{
	margin-bottom: 18px;
	letter-spacing: 1.1px;
	font-size: 24px;
	color: #575756;
	font-weight: 700;
}
.products-features-sec .two-column .products-feature-info h4.green-heading {
	margin-top: 0;
}
.products-feature-info h4.green-text, .single-feature .products-feature-info h4{
	margin-bottom: 30px;
	font-weight: 400;
	padding: 0;
	max-width: 100%;
	color: #009944;
}
.products-feature-info h4.green-text::after{
	display: none;
}
.products-feature-info p{
	
	letter-spacing: 0.9px;
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 0;
}
.how-use-products{
	padding-bottom: 52px;
}
.how-use-products .product p{
	
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.8px;
}
.how-use-products .product-img{
	margin-bottom: 25px;
}
.how-use-features .theme-btn{
	display: none;
}
.product-feature-wrap .projects-sec{
	padding-bottom: 0;
}
/* product feature page styles 
________________________________*/

/* project page styles
________________________ */
.project-list-wrap{
	padding-top: 10px;
}
.project-list-main h2{
	margin-bottom: 45px;
}	
.project-list-btns{
	display: flex;
	align-items: center;
	column-gap: 24px;
	margin-bottom: 44px;
}
.project-list-btns select,
.category-dorpdown-title{
	border-radius: 5px;	
	background: #009944 url('../images/dropdown-white.png') no-repeat right 24px center/14px;
	border: 0;
	color: white;
	width: 100%;
	max-width: 166px;
	height: 40px;
	padding: 10px 24px;
	appearance: none;
	letter-spacing: 0.9px;
	line-height: 1.18;	
	display: flex;
	align-items: center;
	cursor: pointer;
}
.category-dorpdown{
	max-width: 166px;
	width: 100%;
}
.project-list-btns a{
	background: #575756;
	display: block;
	border-radius: 5px;
	letter-spacing: 0.9px;
	line-height: 1.18;	
	width: 100%;
	max-width: 166px;
	height: 40px;
	color: white;
	display: flex;	
	align-items: center;
	justify-content: center;
}
.project-list-btns a span{
	padding-left: 24px;
	position: relative;
}
.project-list-btns a span::after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url('../images/double-arrow.png') no-repeat center/cover;
	width: 14px;
	height: 20px
}
.project-list-btns .video-cat-link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.tag-btn{
	padding: 11px 31px;
	background: transparent;
	border-radius: 100px;
	border: 2px solid #009944;
	color: #009944;
	letter-spacing: 0.8px;
	line-height: 1.1;
}
.tag-btn:hover{
	background: #009944;
	color: white;
}
.tag-btns{
	display: flex;
	align-items: center;
	column-gap: 16px;
	row-gap: 16px;
	flex-wrap: wrap;
	padding-bottom: 46px;
	border-bottom: 1px solid #DADADA;	
}
.project-features-list{
	padding-top: 98px;
}
.project-features-list h3{
	margin-bottom: 45px;
	color: #009944;
	letter-spacing: 1.4px;
}
.project-features-list .projects{
	margin-bottom: 100px;
	row-gap: 51px;
}
.project-features-list .most-viewed-projects .projects{
	margin-bottom: 0;
}
.project-features-list .project-info{
	box-shadow: 0px 3px 6px #00000029;
}
.social-badges.project-list-social-badges{
	padding-bottom: 80px;
}
.project-list-wrap .theme-btn{
	display: none;
}
/* project page ends */

/*project individual
______________________*/
.project-individual-wrap .video-sec{
	padding-bottom: 0;
}
.project-individual-wrap .product-name-right .social-badges{
	justify-content: flex-end;
}
.product-desiners-info{
	padding-bottom: 125px;
	border-bottom: 2px solid #E4E4E4;
}
.product-desiners-info div{
	display: flex;
}
.product-desiners-info p{
	font-size: 18px;
	margin-bottom: 12px;
	letter-spacing: 0.9px;
}
.product-desiners-info p.green-text{
	padding-right: 0;
	font-weight: 700;
	margin-right: 31px;
	margin-bottom: 12px;
	min-width: 136px;
}
.product-desiners-info p.green-text::after{
	display: none;
}
.product-name-right .tag-btns{
	padding-top: 43px;
	border: 0;
	padding-bottom: 56px;
}
.project-individual-wrap .slide-main-img{
	margin-bottom: 0;
}
.project-individual-wrap .product-name-main{
	margin-bottom: 129px;
}
.tools-features{
	padding-bottom: 100px;
	display: flex;
	align-items: center;
	row-gap: 20px;
	flex-wrap: wrap;
	justify-content: flex-start;
	column-gap: 28px;
}
.tools-features-box {
    display: flex;
    max-width: 338px;
    align-items: center;
    width: 33%;
}
.tools-features-img{
	width: 100%;
	max-width: 95px;
}
.tools-features-img img {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 5px;
    width: 95px;
}
.tools-features-box p a{
	color: #009944;
	text-decoration: underline;
}
.tools-features-box p{
	max-width: 223px;
	margin-left: 20px;
	color: #009944;
	letter-spacing: 0.8px;
	line-height: 1.7;
	margin-bottom: 0;
}
.project-social-badges{
	display: none;
}
.project-individual-wrap .product-inner-heading{
	margin-bottom: 50px;
}
.materials-customized{
	padding-bottom: 100px;
}
.materials-customized-box{
	padding: 59px 62px 57px;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 8px;
	background: #fff;
}
.materials-customized-box h4{
	color: #575756;
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 5px;
}
.materials-customized-info{
	display: flex;
	align-items: center;
}
.materials-customized-info p{
	margin: 0;
	max-width: 100%;
	
}
.customized-label{
	font-weight: 700;
	padding-right: 20px;
}
.pattern-sec{
	padding-bottom: 100px;
}
.pattern-sec .instruction-box{
	max-width: 157px;
	margin-bottom: 0;
}
.pattern-sec .pdf-icon{ 
	max-width: 36px;
	/* margin-bottom: 14px; */
}
.pattern-sec .instruction-info p{
	max-width: 100%;
}
.d-flex.making-flex{
	row-gap: 30px;
}
.making-sec{
	padding-bottom: 100px;
}
.making-info-box{
	box-shadow: 0px 3px 6px #00000029;
	padding:42px 62px 50px;
	border-radius: 8px;
	margin-bottom: 62px;
	position: relative;
	background: white;
}
.making-number{
	box-shadow: 0px 3px 6px #00000029;
	font-size: 22px;
	letter-spacing: 1.1px;
	color: white;
	background: #009944;
	width: 36px;
	height: 36px;
	border-radius: 100px;
	position: absolute;
	top: -18px;
	left: -18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}
.making-info-box:last-child{
	margin-bottom: 0;
}
.mb-30{
	margin-bottom: 30px;
}
.making-info.width100{
	max-width: 100%;
	margin-left: 0;
}
.making-lead-text{
	padding-bottom: 20px;
	border-bottom: 1px solid #DADADA;
	margin-bottom: 40px;
	
	font-size: 20px;
}
.making-img{
	max-width: 398px;
	width: 100%;
}
.making-img img{
	border-radius: 5px;
}
.making-info{
	width: 100%;
	max-width: 490px;	
	margin-left: 62px;
}
.making-info p,
.making-info-box p{
	letter-spacing: 0.8px;
	line-height: 1.5;
	margin-bottom: 0;
}
.how-porject-btns{
	display: none;
}
/* how to page styles starts */
.how-to-features{
	display: flex;
	flex-wrap: wrap;
	row-gap: 30px;
	column-gap: 30px;
	padding-bottom: 100px;
	border-bottom: 1px solid #DADADA;
}
.how-to-feature-box{
	display: flex;
	align-items: center;
	max-width: 304px;
	width: 100%;
}
.how-to-feature-img{
	max-width: 140px;
	margin-right: 30px;
	width: 100%;
}
.how-to-feature-img img {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 5px;
    width: 140px;
}
.how-to-feature-list{
	max-width: 131px;
}
.how-to-feature-list p{
	font-size: 20px;
	margin-bottom: 20px;
	letter-spacing: 1px;
}
.how-to-feature-list li{
	margin-bottom: 14px;
	letter-spacing: 0.8px;
	line-height: 1.5;
	position: relative;
	display: inline-block;
}
.how-to-feature-list li:last-child{
	margin-bottom: 0;
}
.category-dorpdown-list li::before,
.how-to-feature-list li::before{
	content: '\25B6';
	display: block;
	display: inline-block;
	color: #009944;
	margin-right: 4px;
}
.how-to-feature-list li::after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 3px;
	background: #009944;
	height: 1px;
}
.how-to-feature-list li a{
	color: #009944;
}
.how-to-feature-list li a:hover{
	opacity: 0.7;
}
.sewing-list p{
	white-space: nowrap;
}
.how-to-feature-box.how-features-btns{
	max-width: 356px;
}
.how-to-feature-box .how-porject-btns{
	display: flex;
}
.how-to-feature-box .project-list-main{
	width: 100%;
}
.videos-features-sec{
	padding-top: 100px;
}
.videos-features-sec .theme-btn{ 
	margin: 0 auto;
	display: none;
}
.videos-features-sec h3{
	color: #009944;
	letter-spacing: 1.4px;
	margin-bottom: 56px;
	font-size: 28px;
}
.videos-features{
	margin-bottom: 98px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 46px;
	column-gap: 25px;
}
.feature-video iframe {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}
.feature-video,
.videos-feature-img{
	margin-bottom: 25px;
	position: relative;
}
.videos-feature-img img{
	border-radius: 5px;
	box-shadow: 0px 3px 6px #00000029;
	width: 100%;
}
.videos-feature-info p{
	margin-bottom: 18px;
	letter-spacing: 0.8px;
	line-height: 1.5;
	
}
.videos-feature-info p:first-child {
	min-height: 48px;
}
.videos-feature-info p.green-txt{
	text-align: right;
	margin: 0;
}
.play-btn-img{
	max-width: 41px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 55;
}
.play-btn-img img{
	box-shadow: none;
}
.videos-features.most-viewed-videos{
	margin-bottom: 0;
}
.knitting-breadcrumb .bread-crumbs-list li{
	font-weight: 400;
}
.knitting-breadcrumb .bread-crumbs-list li.disable::before {
	display: block;
}
.knitting-breadcrumb .bread-crumbs-list li::before {
	display: none;
}
.bread-crumbs.knitting-breadcrumb{
	padding: 106px 0 62px;
}
.videos-features-sec.pd-0{
	padding: 0 0 98px;
}
.videos-features-sec.pd-0 .videos-features{
	margin-bottom: 0;
}
/* catagory drop-down style */
.category-dorpdown{
	position: relative;
}
.category-dorpdown-list{
	position: absolute;
	padding: 21px 24px 27px;
	background: white;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 5px;
	min-width: 340px;
	top: 120%;
	display: none;
	z-index: 555;
}
.category-dorpdown-list h4{ 
	margin-bottom: 27px;
	font-size: 18px;
	letter-spacing: 0.9px;
	line-height: 0.8;
}
.category-dorpdown-list p{
	font-size: 16px;
	letter-spacing: 0.8px;
	margin-bottom: 10px;
	line-height: 1.1;
	font-weight: 700;
}
.category-dorpdown-list ul{
	margin-bottom: 26px;	
}
.category-dorpdown-list ul:last-child{
	margin-bottom: 0;
}
.category-dorpdown-list li {
    position: relative;
    font-size: 14px;
    color: #009944;
    letter-spacing: 0.7px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
}
.category-dorpdown-list a {
    background: transparent;
    color: #009944;
    height: auto;
    line-height: 1;
    display: inline-block;
}
.cat-list {
    display: flex;
}
.cat-list .cat-box {
    width: 100%;
    min-width: 200px;
}
.video-cat-list .cat-box+* {
	margin-top: 20px;
}
.category-dorpdown-list li:last-child{
	margin-bottom: 0;
}
/* how to individual page  */
.how-to-individual .video-sec{
	padding: 100px 0;
}
.how-to-individual .video-descp-time{
	margin-bottom: 50px;
}
.how-to-individual .video-sec h3{
	
	font-size: 30px;
	letter-spacing: 1.5px;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 30px;
}
.how-to-individual .video-descp{
	padding: 27px 34px;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 10px;
	margin-bottom: 50px;
}
.how-to-individual .video-descp p{
	margin-bottom: 0;
}
.video-sec .social-badges{
	justify-content: flex-end;
}
.individual-product-sec h2{
	margin-bottom: 50px;
}
.individual-product-feature{
	display: flex;
	align-items: center;
	column-gap: 30px;
	max-width: 48%;
	width: 100%;
}
.individual-product-img{
	max-width: 184px;
	width: 100%;
}
.individual-product-img img{
	border-radius:10px ;
	box-shadow: 0px 3px 6px #00000029;
}
.individual-product-info p, .individual-product-info a{
	max-width: 308px;
	
	font-size: 18px;
	letter-spacing: 0.9px;
	line-height: 1.3;
	margin-bottom: 0;
}
.individual-product-features{
	display: flex;
	justify-content: space-between;
	column-gap: 33px;
	row-gap: 33px;
	flex-wrap: wrap;
}
.products-features.alt .products-feature-info{
	margin-right: 0;
	margin-left: 74px;
}
.products-features-sec h4{
	margin-bottom: 24px;
	font-size: 24px;
	color: #009944;
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 1.2;
	
}
.products-features.alt{
	align-items: center;
	margin-bottom: 50px;
	flex-direction: row-reverse;
}
.products-features.alt:last-child{	
	margin-bottom: 0;	
}

.series-products .product{
	max-width: 336px;
}
.series-products .product-img{
	margin-bottom: 0;
}
.series-products .product-img img{
	box-shadow: 0px 0px 6px #00000029;
	border-radius: 10px 10px 0px 0px;
}
.series-product-info{
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 0px 0px 10px 10px;
	background: white;
	padding: 30px 22px 29px;
}
.series-product-info p{
	
}
.categories-tag{
	margin-top: 20px;	
	padding: 9px 27px;
	background: #009944;
	border-radius: 100px;
	color: white;
	letter-spacing: 0.8px;
	line-height: 1.1;
	display: inline-block;
	position: relative;
	z-index: 55;
}
.products.series-products{
	row-gap: 41px;
	column-gap: 30px;
	padding-bottom: 100px;
	justify-content: flex-start;
}
.series-products.pd-0{
	padding-bottom: 0;
}
.series-products .product{
	margin-bottom: 0;
	margin: 0;
}
.product-individual-series .series-products{
	padding-bottom: 100px;
}
.product-individual-series .theme-btn{
	display: flex;
	margin: 0 auto;
}
/* news page 
__________________ */
.news-sec{
	display: flex;
	flex-direction: row-reverse;	
	justify-content: flex-end;
}
.news-sec aside{
	width: 100%;
	max-width: 272px;
}
.region-list-col.aside{
	max-width: 100%;
}
.topics-main-wrap,
.news-main-wrap{
	padding-top: 10px;
}
.news-main-wrap h2{
	margin-bottom: 105px;
}
.region-list-col.aside h4{
	padding-bottom: 20px;
	line-height: 1.2;
	color: #575756;
	min-height: auto;
	margin-bottom: 21px;
}
.aside{
	margin-bottom: 106px;
}
.aside:last-child{
	margin-bottom: 0;
}
.region-list-col li.aside-accordian-title{
	border-bottom: 0;	
}
.region-list-col.aside .aside-accordian-title >a{
	border-bottom: 1px solid #DADADA;
	font-weight: 700;
}
.region-list-col.aside li a{
	font-weight: 400;
}
.aside-accordian ul{
	padding-left: 62px;
}

.region-list-col li.aside-accordian-title >a::after {
	background-image: url('../images/open-icon.png');
	width: 15px !important;
	height: 15px !important;
	right: 10px !important;
}
.region-list-col li.aside-accordian-title.closed >a::after {
	background-image: url('../images/plus-icon.png');
}
.news-main{
	padding-left: 91px;
	max-width: 75%;
	width: 100%;
}
.news-main .news-item{
	padding: 34px 0;
	border-bottom:1px solid #DADADA;
	column-gap: 86px;
	width: 100%;
	line-height: 1.4;
	margin-bottom: 0;
}
.news-main .news-item.first-article{
	padding-top: 0;
}
.news-main .news-title{
	max-width: 522px;
}
.news-main section{
	padding-bottom: 77px;
}
.pagination li.active{
	color: #009944;
}
.news-single-main h2{
	margin-bottom: 28px;
	letter-spacing: 1.4px;
	line-height: 1.3;
	font-size: 28px;
}
.publish-date{
	margin-bottom: 30px;
	color: rgba(87, 87, 86, 0.5);
	font-size: 18px;
	letter-spacing: 0.9px;
}
.news-single-main .d-flex{
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}
.catagory-name{
	color: #009944;
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 1.3;
	margin-bottom: 0;
}
.news-single-main p.catagory-name{
	margin-bottom: 0;
	font-size: 22px;
}
.news-single-main .feature-img img{
	margin-bottom: 100px;
	box-shadow: 0px 0px 6px #00000029;
	border-radius: 10px;
}
.news-single-main > img{
	width: 100%;
	box-shadow: 0px 0px 6px #00000029;
	border-radius: 10px;
	margin-bottom: 50px;
}
.news-single-main h3{
	margin-bottom: 20px;
	color: #009944;
	font-size: 24px;
	letter-spacing: 1.2px;
}
.news-single-main p{
	
	font-size: 18px;
	letter-spacing: 0.9px;
	line-height: 2;
	margin-bottom: 50px;
}
.news-single-main p a{
	color: #009944;
	text-decoration: underline;
}
.news-single-main a:not(.theme-btn):hover{
	opacity: 0.7;
}
.news-single-main a.social-badge:hover{
	opacity: 1;
}
.related-posts {
	display: grid;
	grid-template-columns: 150px 1fr;
	align-items: center;
	justify-content: flex-start;
	border-bottom: 2px solid #DADADA;
	padding: 35px 0 15px;
	column-gap: 64px;
	position: relative;
}
.related-posts-date{
	color: #009944;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.8px;
	padding: 0 34px;
	position: relative;
}
.related-posts::after{
	content: '';
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 184px;
	background: #009944;
	height: 2px;
}
.news-single-main .related-posts-descp p{
	margin: 0;
	letter-spacing: 0.8px;
	line-height: 2;
	font-size: 16px;
	
}
.related-posts-sec{
	padding: 75px 0 160px;
	border-bottom: 1px solid #DADADA;
	margin-bottom: 100px;
}
.news-single-main .theme-btn{
	margin: 0 auto;
}
.news-single-main a.social-badge{
	text-decoration: none;
}
.for-dealers-wrap h2{
	margin-bottom: 105px;
}
.dealers-features{
	display: flex;
	align-items: center;
	margin-bottom: 78px;
	row-gap: 40px;
	column-gap: 30px;
}
.dealers-feature{
	width: 100%;
	max-width: 246px;
}
.dealers-feature-img img{
	width: 100%;
	border-radius: 10px;
}
.dealers-feature-img{
	margin-bottom: 20px;
	max-width: 220px	;
	height: 310px;
}
.dealers-feature p{
	font-size: 18px;
	margin-bottom: 20px;
	line-height: 1.4;		
}
.dealers-feature .theme-btn{
	height: 40px;
	font-size: 14px;
}
.dealers-feature .theme-btn span{
	display: flex;
	align-items: center;
}
.dealers-feature .theme-btn span::before{
	content: '';
	max-width: 19px;
	background: url('../images/digital-btnicon.png') no-repeat center/contain;
	width: 19px;
	height: 18px;
	display: inline-block;
	margin-right: 10px;
}
.dealers-feature .theme-btn:hover span::before{
	filter: brightness(200%);
}
.system-requirment{
	padding: 70px 62px;
	background: white;
	border-radius: 10px;
	margin-bottom: 200px;
}
.system-requirment .product-inner-heading{
	margin-bottom: 40px;
}
.system-requirment p{
	font-size: 18px;
	letter-spacing: 0.9px;
	line-height: 1.7;
	margin-bottom: 30px;
}
.system-requirment p.mb0{
	margin-bottom: 0;
}
.system-requirment ul{
	margin-bottom: 30px;
	padding-left: 21px;
}
.system-requirment ul li{
	font-size: 18px;
	letter-spacing: 0.9px;
	line-height: 1.7;
	list-style-type: disc;
}
.privacy-wrap{
	padding-top: 10px;
}
.privacy-main h2{
	margin-bottom: 105px;
}
.privacy-main h3{
	margin-bottom: 62px;
	color: #009944;
	
}
.privacy-main h4{
	
	margin-bottom: 25px;
	font-size: 20px;
}
.privacy-main p{
	margin-bottom: 30px;
	font-size: 18px;
	letter-spacing: 0.9px;
	line-height: 1.7;
}
.privacy-main section{
	margin-bottom: 100px;
}
.privacy-main section:last-child{
	margin-bottom: 0;
}
.topics-features{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	padding-bottom: 90px;
	column-gap: 30px;
	row-gap: 41px;
	justify-content: space-between;
}
.topics-feature{
	display: flex;
	flex-direction: column;
	max-width: 338px;
	width: 100%;
	position: relative;
}
.topics-feature .topics-overlay-link{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.topics-img img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 0px 6px #00000029;
    display: block;
    object-fit: cover;
}
.topics-info{
	padding: 45px 19px 45px 22px;
	background: white;
	border-radius: 0 0 10px 10px;
	box-shadow: 0px 3px 6px #00000029;
	flex-grow: 1;
}
.topics-info p{
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 30px;
	letter-spacing: 0.9px;
}
.topics-info p.catagories{
	color: #009944;
	font-size: 16px;
	line-height: 1.1;
}
.topics-info p:last-child{
	margin-bottom: 0;
}
.topics-titles{
	position: relative;
}
.topics-catagory-name{	
	font-size: 18px;
	letter-spacing: 0.9px;
	position: absolute;
	right: 0;
	top: 6px;
	margin: 0;
}
.topics-catagory-name span{
	color: #009944;
	padding-left: 15px;
}
.topics-titles{	
	margin-bottom: 105px;
}
.news-single-main hr{
	margin: 70px 0 100px;
	border: 1px solid #DADADA;
}
/* popup styles
____________________ */
.cookie-notice-wrap{
	padding: 35px 0;
	background: #F8F8F8;
}
.cookie-notice-main h2{
	text-align: center;
	color: #009944;
	margin-bottom: 20px;
	letter-spacing: 1.3px;
	line-height: 1.1;
}
.cookie-notice-main p{
	line-height: 1.5;
	letter-spacing: 0.8px;
	margin-bottom: 20px;
	
}
.cookie-btns{
	display: flex;
	letter-spacing: 0.8px;
	justify-content: center;
	column-gap: 30px;
}
.cookie-btns .theme-btn{
	max-width: 226px;
	height: 48px;
	font-size: 16px;
}
.cookie-btns .theme-btn{
	background: #009944;
	color: white;
}
.cookie-btns .theme-btn.alt{
	color: #009944;
	background: transparent;
}
.cookie-btns .theme-btn.alt:hover{
	background: #009944;
	color: white;
}
.cookie-btns .theme-btn:hover{
	color: #009944;
	background: transparent;
}
.sitemap-main h2{
	margin-bottom:92px;
}
.sitemap-main .region-list-row{
	margin-bottom: 97px;
}
.sitemap-main .region-list-row:last-child{
	margin-bottom: 0;
}
.sitemap-main .region-list-col h4{
	min-height: auto;
	padding-bottom: 20px;
	margin-bottom: 40px;
}
.region-wrap.sitemap-wrap{
	padding-top: 10px;
}
/* contact us page styles
___________________________ */
.contact-us-wrap{
	padding-top: 10px;
}
.contact-us-main h2{
	margin-bottom: 88px;
}
.form{
	max-width: 706px;
	margin: 0 auto;
}
.input{
	width: 100%;
	margin-bottom: 30px;
}
.checkbox label,.radio label,
.input label, .checkboxes label{
	font-size: 18px;
	letter-spacing: 0.9px;
	line-height: 1.5;
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
}
.checkbox label,.radio label{
	margin-bottom: 0;
	display: inline-block;
	position: relative;
	padding-left:37px;
	cursor: pointer;
}
.checkbox label::after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 3px;
	border:1.5px solid #E4E4E4;
	width: 21px;
	height: 21px;
	background: white;
}
/*.radio label::after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 3px;
	border:1.5px solid #E4E4E4;
	width: 21px;
	height: 21px;
	background: white;
}*/
.checkbox input{
	position: absolute;
	top: -100%;
	left: -100%;
	visibility: hidden;
	opacity: 0;
}
.checkbox input:checked + label::after{
	background: url('../images/check-tick.png') no-repeat center center/contain;
}
.radio input:checked + label::after{
	background: url('../images/check-tick.png') no-repeat center center/contain;
}
.checkboxes{
	margin-bottom: 57px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	column-gap: 51px;
}
.checkboxes label {
	display: flex;
	align-items: center;
	gap: 16px;
}
.input label span{
	color: #009944;
}
.input select,
.input input{
	background: white;
	font-size: 16px;
	display: block;
	width: 100%;
	border-radius: 5px;
	height: 44px;
	border: 1.5px solid #E4E4E4;
	padding:10px 15px ;
	font-family: 'Noto Sans JP', sans-serif;
}
.input select{
	background:white url('../images/gry-dropdown-icon.png') no-repeat right 20px center/16px;
	appearance: none;
}
.input textarea{
	font-size: 16px;
	width: 100%;
	border: 0;
	font-family: 'Noto Sans JP', sans-serif;
	min-height: 260px;
}
.form-group{
	display: flex;
	align-items: center;
	column-gap: 30px;
}
.form-group .input{
	max-width: 48%;
}
.textarea textarea {
	padding: 20px;
	background: white;
	border-radius:5px;
	border: 1.5px solid #E4E4E4;
}
.form .submit-btn{
	margin:100px auto 0;
}
.video{
	position: relative;
}
.video-play-btn{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 87px;
	height: 87px;
	background: url('../images/play-lg.png') no-repeat center/cover;
	border-radius: 100px;
	z-index: 1;
	border: 0;
}
.feature-video{
	position: relative;
	/* padding-top: 64%; */
	border-radius: 5px;
}
.feature-video video{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	border-radius: 5px;
}

.company-information h2{
	margin-bottom: 105px;
}
.company-profile-info{
	max-width: 706px;
	margin: 0 auto;
	padding-bottom: 104px;
}
.company-profile-img img{
	border-radius: 10px;
	box-shadow: 0px 0px 6px #00000029;
}
.company-profile-img{
	margin-bottom: 40px;
}
.company-profile-info ul{
	display: flex;
	margin-bottom: 10px;
	column-gap: 47px;
}
.company-profile-info li{
	font-size: 18px;
	color: #575756;
	line-height: 1.7;
	letter-spacing: 0.9px;
	width: 100%;
	max-width: 250px;
}
.company-profile-info li strong{
	color: #009944;
}
.company-profile-info li:last-child{
	margin-bottom: 0;
	max-width: 100%;
}
.colover-bases{
	padding-bottom: 104px;
}

.colover-bases-box.first-child{
	padding-top: 0;
}
.colover-bases-box{
	display: flex;
	justify-content: space-between;
	padding: 58px 0 36px;
	border-bottom: 1px solid #DADADA;
	column-gap: 30px;
}
.colover-bases-title{
	width: 100%;
	max-width: 279px;
}
.colover-bases-title h3{
	color: #009944;
	font-size: 22px;
	letter-spacing: 1.1px;
	font-weight: 400;
	margin-bottom: 0;
}
.colover-bases-address{
	width: 100%;
	font-size: 18px;
	line-height: 1.7;
	letter-spacing: 0.9px;	
}
.colover-bases-address a:hover{
	opacity: 0.6;
}
.colover-bases-btn{
	max-width: 154px;
	width: 100%;
	align-self: center;
}
.colover-bases-btn .theme-btn{
	height: 40px;
	font-size: 16px;
}
.colover-bases-address .theme-btn{
	display: none;
}
.history-sec{
	max-width: 980px;
	margin: 0 auto 230px;
	border-left: 2px solid #DADADA;
	padding:0 0 42px;
}
.history-box.first-box{
	padding-top: 0;
}	
.history-box{
	display: flex;
	align-items:center;
	padding: 26px 0;
	column-gap: 30px;	
	margin-left: 20px;
	position: relative;
}
.history-box.alt{
	padding-top: 0;
}
.history-box.bdr-btm{
	border-bottom: 2px solid #DADADA;
}
.history-box .history-title {
	position: relative;
}
.history-box .history-title::before {
	content: '';
	display: block;
	position: absolute;
	top: -2px;
	left: -33.5px;
	/* transform: translateY(-50%); */
	width: 27px;
	height: 27px;
	background: #009944;
	border-radius: 100px;
}
.history-box.alt .history-title::before{
	width: 14px;
	height: 14px;
	left: -27px;
	top: 5px;
}
.history-title{
	min-width: 180px;
	text-align: center;
}
.history-box p{
	font-size: 20px;
	margin-bottom: 0;
	letter-spacing: 1px;
	
}
.history-info p{
	font-weight: 300;
}
.company-information-wrap{
	padding-top: 10px;
}
.environmental-initiatives-wrap{
	padding-top: 10px;
}
.environmental-initiatives h2{
	margin-bottom: 105px;
}
.environmental-initiatives h3.product-inner-heading{
	
	margin-bottom: 62px;
	color: #009944;
}
.environmental-initiatives{
	padding-bottom: 180px;
}
.environmental-info h4{
	margin-bottom: 25px;
	font-size: 20px;
	
	letter-spacing: 1px;
}
.environmental-info p{
	
	letter-spacing: 0.9px;
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 0;
}
.environmental-box {
    display: flex;
    align-items: center;
    column-gap: 33px;
    padding-bottom: 100px;
    justify-content: space-between;
}
.environmental-box.w100{
	padding-bottom: 0;
}
.environmental-box.w100 .environmental-info{
	max-width: 100%;
}
.environmental-info{
	max-width: 614px;
}
.environmental-img{
	max-width: 433px;
	width: 100%;
}
.environmental-img img{
	border-radius: 10px;
	box-shadow: 0px 0px 6px #00000029;
}
.project-summery{
	padding-bottom: 80px;
}
.project-summery .social-badges{
	justify-content: flex-end;	
	margin-bottom: 37px;
}
.project-summery h2{
	margin-bottom: 47px;
}
.project-summery p{
	
	font-size: 18px;
	line-height: 1.7;
	letter-spacing: 0.9px;
	margin-bottom: 28px;
}
.project-summery .tool-name-text {
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}
.project-summery p.summery{
	margin-bottom: 88px;
}
.project-summery .product-inner-heading{
	margin-bottom: 37px;
}
.project-summery-wrap{
	padding-top: 10px;
}
.project-summery-features{
	justify-content: center;
	gap: 80px;
	margin-bottom: 120px;
}
.project-summery-features .project:not(.full-width-project) {
    max-width: 367px;
    margin-bottom: 30px;
}
.project-summery-features .project-info{
	box-shadow: 0px 3px 6px #00000029;
}
.full-width-project {
    max-width: 819px;
    display: flex;
    margin: 0 auto 30px;
}
.full-width-project .project-img img{
	border-radius: 10px 0px 0px 10px;
}
.full-width-project .project-info{
	padding: 30px;
	border-radius: 0px 10px 10px 0px;
	box-shadow: 0px 3px 6px #00000029;
	max-width: 427px;
	width: 100%;
}
.full-width-project .project-info .tool-name p {
	font-size: 14px;
	margin-left: 10px;
	word-break: break-word;
}
.full-width-project .project-img{
	max-width: 392px;
	width: 100%;
}
.full-width-project .project-info > div{
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
}
.project-archives-sec h3{
	margin-bottom: 37px;
	color: #009944;
}
.project-archive-box{
	display: flex;
	align-items: center;
	column-gap: 30px;
	width: 48%;
}
.project-archive-img a{
	display: block;
}
.project-archive-img{
	max-width: 120px;
}
.project-archive-img img {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 5px;
    width: 100px;
}
.project-archive-info{
	max-width: 375px;
}
.project-archive-info p{
	font-size: 18px;
	letter-spacing: 0.9px;
	line-height: 1.4;
	margin-bottom: 0;
}
.project-archives{
	display: flex;
	flex-wrap: wrap;
	row-gap: 30px;
	column-gap: 30px;
}
.main-wrap.product-page{
	padding-top: 10px;
}
.product-page h2{
	margin-bottom: 92px;
}
.sitemap-wrap .region-list-col li > a:not(.link-card){
	font-weight: 400;
}
.search-result .categories select{
	font-size: 20px;
}
.search-result .search-field input:not([type="submit"]){
	font-size: 20px;
}
.home-main-wrap.knitting-page{
	padding-top: 10px;
}
/* bamboo circular
______________________ */
.products-features-sec.bamboo-circular h4.black-text{
	color: #575756;
	font-weight: 700;
	margin-bottom: 20px;
}
.bamboo-circular .products-feature-info h4{
	margin-bottom: 20px;
}

.full-width .products-feature-info h4{
	margin-bottom: 28px;
}
.bamboo-circular .products-feature-info h4.green-text, .single-feature .products-feature-info h4{
	margin-bottom: 18px;
}
.bamboo-circular .products-feature-info p{
	margin-bottom: 28px;
}
.bamboo-circular .products-feature-info p:last-child{
	margin-bottom: 0;
}
.bamboo-circular .products-feature-img img{
	margin-bottom: 28px;
}
.bamboo-circular .products-feature-img.mb-0 img {
	margin-bottom: 0;
}
.bamboo-circular .machin-dev .products-feature-info,
.bamboo-circular.full-width .products-feature-info{
	max-width: 100%;
	margin: 0;
}
.products-features-sec.bamboo-circular.pd-btm-28	{
	padding-bottom: 28px;
}
.bamboo-circular .products-features{
	margin-bottom: 0;
	flex-direction: row-reverse;
}
.bomboo-ciurcular-outer--alt .products-features{
	flex-direction: row;	
}
.bomboo-ciurcular-outer{
	padding-bottom: 40px;
}
.bamboo-circular-wrap .video-sec{
	padding-bottom: 100px;
}
.series-sec.alt .theme-btn{
	display: flex;
	margin: 0 auto;
}
.series-sec.alt .series{
	padding-bottom: 60px;
}
.series-sec.alt{
	padding-bottom: 100px;
}
.bamboo-circular-wrap .projects{
	margin-bottom: 150px;
}
.bamboo-circular-wrap .product-name-title{
	margin-bottom: 31px;
}
.bamboo-circular-wrap .product-inner-heading{
	margin-bottom: 50px;
}
.footer-mob-logo, .single-video .how-features-btns, .tax-project_tag .btn-scroll, .tax-video_category .how-features-btns {
	display: none;
}
.back-to-top{
	/* display: flex; */
	display: none;
	position: fixed;
	width: 58px;
	height: 58px;
	z-index: 5;
	right: 14%;
	bottom: 50px;
	background: rgba(196,196,196,0.5);
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}
.back-to-top img{
	max-width: 19px;
}
/* new product
__________________________ */
.products-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	column-gap: 20px;
	row-gap: 30px;
	padding-left: 20px;
}
.product-card {
	display: flex;
	flex-direction: column;
	width: calc( 100% / 4 - 20px );
}
.product-card .product-img {
	margin: 0;
}
.product-card .product-img img {
	width: 100%;
	border-radius: 10px 10px 0 0;
	aspect-ratio: 4/3;
}
.series-box-info {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.series-box-info .green-text::after {
	display: none;
}
.series-box-info .product-title {
	flex-grow: 1;
}
.pagination-parts {
	margin-top: 50px;
}

/* cookie notice */
.cky-notice {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 15px;
}
.cky-notice-des {
	text-align: center;
}
.cky-notice-des p {
	line-height: 1.5;
	letter-spacing: 0.8px;
	word-wrap: break-word;
}
.cky-notice-des p span {
	font-size: 16px;
}
.cky-notice .cky-notice-btn-wrapper {
	margin-top: 20px;
	margin-left: 0;
}
.cky-consent-bar .cky-notice .cky-title {
	text-align: center;
	font-size: 1.6em;
}
.cky-notice .cky-notice-group {
	display: block;
}
.cky-notice .cky-btn-accept {
	order: -1;
}
button.cky-btn-reject {
	margin-left: 30px;
	margin-right: 0;
}
.cky-notice .cky-notice-btn-wrapper .cky-btn {
	border-radius: 4px;
}
.cky-btn-revisit-wrapper {
display: none !important;
}
.cookie-notice-main p strong{
	text-decoration: underline;
}

/* responsive styles
__________________________ */

@media (max-width: 1366px) {
	.banner-img{
		width: 800px
	}
	.main-404 h1{
		font-size: 100px;
		margin-bottom: 30px;
	}
	.main-404 p{
		margin-bottom: 80px;
	}
	/* custom style */

	.product-name-main{
		margin-bottom: 100px;
	}
	.video-sec{
		padding-bottom: 100px;
	}
	.project-features-list{
		padding-top: 90px;
	}
	.making-info-box{
		margin-bottom: 55px;
	}
	.videos-features-sec h3{
		font-size: 26px;
	}
	.bread-crumbs.knitting-breadcrumb{
		padding: 90px 0 60px;
	}	
	.news-main-wrap h2{
		margin-bottom: 90px;
	}
	.news-main .news-item{
		column-gap: 50px;
	}	
	.system-requirment{
		margin-bottom: 150px;
	}
	.history-sec{
		margin-bottom: 150px;
	}
	.project-summery p.summery{
		margin-bottom: 70px;
	}
	.project-summery-features{
		margin-bottom: 80px
	}
	.bamboo-circular-wrap .projects{
 		margin-bottom: 100px;
 	}

}
@media (max-width: 1199px) {
	h2, .h2{
		font-size: 32px;
	}
	h3, .h3 {
		font-size: 24px;
	}
	.theme-btn{
		max-width: 350px;
		height: 55px;
	}
  .header-left{
  	max-width: 100px;
  }
  .main-menu{
  	padding: 0 10px;
  }
  .lang-value{
  	max-width: 140px;
  	font-size: 15px
  }
  .main-menu li{
  	font-size: 15px;
  	letter-spacing: 0.5px;
  }
  .search-categories-wrap .d-flex{
  	justify-content: flex-start;
  }
  .search-form .search{
  	margin-left: 23px;
  }
  .search-submit{
  	width: 18px;
  	height: 18px;
  }
  .banner-img{
		width: 700px
	}
	.lang-dropdown-list li{
		padding: 15px;
		font-size: 16px
	}
	.knitting-title h2,
	.recommended-sec h2,
	.projects-sec h2,
	.products-wrap h2,
	.news-wrap h2{
		margin-bottom: 70px;
	}
	.recommended-sec {
		padding-bottom: 60px;
	}
	.products{
		margin-left: -10px;
		margin-right: -10px;
	}
	.product{
		max-width: 25%;
		padding: 0 10px;
		margin: 0;
		margin-bottom: 35px;
	}
	.kitting-product{
		max-width: 400px;
	}
	.projects-sec{
		padding-bottom: 100px;
	}
	.projects-sec h3{
		margin-bottom: 30px;
	}
	.projects{
		margin-left: -10px;
		margin-right: -10px;
	}
	.project{
		max-width: 25%;
		margin:0 ;
	}
	.project.full-width-project {
		max-width: 100%;
		justify-content: center;
	}
	.project-info {
		padding: 15px 15px 20px;
	}
	.products-wrap {
	  padding-bottom: 80px;
	}
	.products-categories{
		column-gap: 10px;
		row-gap: 30px;
	}
	.product-category{
		max-width: calc(25% - 8px);
		/* padding: 20px; */
		min-height: 68px;
	}
	.product-category p{
		margin-left: 15px;
	}
	.news-wrap{
		padding-bottom: 150px;
	}
	.news-wrap .theme-btn{
		margin-top: 95px;
	}
	.main-wrap{
		padding-bottom: 150px;
	}
	.social-links-wrap{
		padding: 50px 0;
	}
	.footer-wrap .d-flex{
		max-width: none;
	}
	.main-404 h1 {
		font-size: 85px;
	}
	.main-404 p {
		font-size: 20px;
		margin-bottom: 75px;
	}
	/*	Search Result
	---------------------------- */
	.search-result-form .search{
		margin: 0;
	}
	.search-result-wrap{
		padding-top: 80px;
	}
	.search-result h3{
		margin-bottom: 60px;
	}
	.search-result-form{
		margin-bottom: 100px;
	}
	.search-result-form .search-field{
		height: 60px;
	}
	.search-result-info h4{
		font-size: 22px;
		margin-bottom: 15px;
	}
	.search-result-info p{
		font-size: 16px;
	}
	.search-result-content{
		row-gap: 30px;
		margin-bottom: 90px;
	}
	/* Region
	------------------------- */
	.region-top h3{
		margin-bottom: 100px;
	}
	.region-list-col h4{
		font-size: 20px;
		min-height: 64.33px;
		padding-bottom: 15px;
	}
	.region-list-col li > a:not(.link-card){
		font-size: 16px;
		padding: 16px 30px 15px 0;
	}
	.region-list-row{
		margin-bottom: 150px;
	}
	.product-page .products-categories{
		column-gap: 20px;
	}
	/* .product-category.w50{
		max-width: 44%;
	} */
	.product-category.w25{
		max-width: 23.5%
	}
	.product-page .products-categories{
		justify-content: flex-start;
	}
	.categories-row {
		margin: 0 -7px;
	}
	.col{
		padding: 0 14px;
	}
	/* custom styles */

	.bread-crumbs-list li, .bread-crumbs a {
		font-size: 16px;
	}
	.bread-crumbs{
		padding: 30px 0;
	}
	.kitting-product li{
		font-size: 16px;
	}
	.knitting-sec .heading{
		margin-bottom: 70px;
	}	
	.knitting-sec .heading{
		margin-bottom: 50px;
	}
	.knitting-needles{
		margin-bottom: 30px;
	}
	.product-name-right .green-text{
		margin-bottom: 40px;
	}
	.download-btn{
		height: 50px;
	}
	.product-name-right .download-btn{
		margin-bottom: 50px;
	}
	.instruction-box{
		margin-bottom: 40px;
	}
	.product-name-right, .product-name-left{
		max-width: 48%;
	}
	.product-name-right{
		margin-left: 20px;
	}
	.pdf-instruction{
		column-gap: 30px;
	}
	.product-name-main{
		margin-bottom: 80px;
	}
	.series{
		margin: 0 -10px;
	}
	.series-box{
		margin: 0;
	}
	.series-box-info .small,
	.series-box-info .green-text{
		font-size: 12px;
	}
	.series-box-info p{
		margin-bottom: 20px;
		font-size: 15px;
	}	
	.series{
		row-gap: 20px;
		padding-bottom: 80px;
	}
	.projects-sec h3.product-inner-heading,
	.product-inner-heading{
		font-size: 22px;
	}
	.video-sec{
		padding-bottom: 80px;
	}
	.product-feature-banner{
		margin-bottom: 80px;
	}
	.products-feature-info{
		margin-right: 30px;
	}
	.products-feature-info h4{
		font-size: 22px;
		margin-bottom: 15px;
	}
	.products-feature-info h4.green-text, .single-feature .products-feature-info h4{
		margin-bottom: 25px;
		font-size: 20px;
	}
	.products-feature-info p{
		font-size: 16px;
	}
	.tag-btn{
		font-size: 14px;
		padding: 10px 27px;
	}
	.project-features-list{
		padding-top: 80px;
	}
	.project-features-list h3{
		margin-bottom: 40px;
	}
	.project-features-list .projects{
		row-gap: 40px;
	}
	.product-desiners-info{
		padding-bottom: 90px;
	}
	.project-individual-wrap .product-name-main{
		margin-bottom: 100px;
	}
	.tools-features{
		column-gap: 20px;
	}
	.tools-features-box{
		max-width: 31%;
	}
	.materials-customized-box{
		padding: 50px ;
	}
	.materials-customized-box h4{
		font-size: 18px;
	}
	.making-number{
		left: 0;
		font-size: 20px;
	}
	.making-info{
		margin-left: 50px;
	}
	.making-sec{
		padding-bottom: 90px;
	}
	.making-number{
		font-size: 18px;
		width: 31px;
		height: 32px;
		top: -16px;
	}
	.making-info-box{
		margin-bottom: 45px;
	}
	.how-to-feature-box{
		max-width: 45%
	}
	.how-to-feature-list p{
		font-size: 18px;
	}
	.how-to-features{
		padding-bottom: 80px;
	}
	.videos-features-sec{
		padding-top: 90px;
	}
	.videos-features-sec h3{
		font-size: 24px;
	}
	.videos-features{
		grid-template-columns: repeat(3, 1fr);
		column-gap: 15px;
		row-gap: 40px;
		margin-bottom: 90px;
	}
	.bread-crumbs.knitting-breadcrumb{
		padding: 80px 0 70px;
	}
	.videos-features-sec.pd-0{
		padding-bottom: 90px;
	}
	.how-to-individual .video-sec{
		padding: 90px 0;
	}
	.how-to-individual .video-sec h3{
		font-size: 27px;
	}
	.individual-product-feature{
		column-gap: 20px;
	}
	.products-features.alt .products-feature-info{
		margin-left: 50px;
	}
	.products.series-products{
		column-gap: 0;
	}
	.series-products .product{
		max-width: 33.33%;
	}
	.product-individual-series .series-products{
		padding-bottom: 80px;
	}
	.products.series-products{
		padding-bottom: 90px;
	}	
	.news-main-wrap h2{
		margin-bottom: 80px;
	}
	.news-date,
	.news-title{
		font-size: 16px;
	}
	.news-main .news-item{
		padding: 25px 0;
	}
	.news-main{
		padding-left: 50px;
	}
	.news-main .news-item{
		column-gap: 40px;
	}	
	.aside{
		margin-bottom: 80px;
	}
	.news-single-main h2{
		font-size: 26px;
		margin-bottom: 60px;
	}
	.publish-date{
		font-size: 16px;
		margin-bottom: 20px
	}
	.news-single-main .d-flex{
		margin-bottom: 40px;
	}
	.news-single-main .feature-img img{
		margin-bottom: 80px;
	}
	.news-single-main h3{
		font-size: 22px;
	}
	.news-single-main p{
		line-height: 1.8;
		margin-bottom: 40px;
	}
	.related-posts-sec{
		padding: 50px 0 100px;
	}
	.related-posts{
		padding:30px 0 15px;
		column-gap: 30px;
	}
	.related-posts-date{
		padding:0 20px ;
	}
	.related-posts::after {
		width: 160px;
	}
	.dealers-feature p{
		font-size: 16px;
	}
	.system-requirment{
		margin-bottom: 100px;
	}
	.system-requirment{
		padding: 60px;
	}
	.privacy-main h2{
		margin-bottom: 80px;
	}
	.privacy-main h3{
		margin-bottom: 60px;
	}
	.privacy-main h4 {
		margin-bottom: 22px;
	}
	.privacy-main p{
		margin-bottom: 25px;
	}
	.privacy-main section{
		margin-bottom: 80px;
	}
	.news-main{
		max-width: 71%;
	}
	.topics-info p{
		font-size: 16px;
	}
	.topics-info{
		padding: 40px 19px 40px 20px;
	}
	.topics-catagory-name{
		font-size: 16px;
	}
	.topics-titles{
		margin-bottom: 80px;
	}
	.topics-features{
		padding-bottom: 80px;
		justify-content: flex-start;
	}
	.news-single-main hr{
		margin: 60px 0 80px;
	}
	.sitemap-main h2{
		margin-bottom: 80px;
	}
	.sitemap-main .region-list-col h4{
		margin-bottom: 34px;
		padding-bottom: 15px;
	}
	.sitemap-main .region-list-row{
		margin-bottom: 80px;
	}
	.contact-us-main h2{
		margin-bottom: 70px;
	}
	.input{
		margin-bottom: 25px;
	}
	.form .submit-btn{
		margin-top: 80px;
	}
	.company-information h2{
		margin-bottom: 80px;
	}
	.company-profile-info li{
		font-size: 16px;
	}
	.company-profile-info{
		padding-bottom: 90px;
	}
	.colover-bases-address{
		font-size: 16px;
	}
	.colover-bases-title h3{
		font-size: 18px;
	}
	.colover-bases-btn .theme-btn{
		font-size: 14px;
	}
	.colover-bases-box{
		padding: 40px 0 30px;
	}
	.history-sec{
		margin-bottom: 100px;
	}
	.history-box p{
		font-size: 18px;
	}
	.environmental-initiatives h2{
		margin-bottom: 80px;
	}
	.environmental-initiatives h3.product-inner-heading{
		margin-bottom: 50px;
	}
	.environmental-box{
		padding-bottom: 80px;
	}
	.environmental-info{
		max-width: 60%;
	}
	.environmental-img{
		max-width: 40%;
	}
	.environmental-initiatives{
		padding-bottom: 100px;
	}
	.environmental-info h4{
		font-size: 20px;
	}
	.project-summery p.summery{
		margin-bottom: 65px;
	}
	.project-summery p{
		font-size: 16px;
	}
	.project-summery p{
		margin-bottom: 22px;
	}
	.project-summery-features{
		gap: 40px;
		margin-bottom: 70px
	}
	.product-page h2{
		margin-bottom: 80px;
	}
	.product-feature-wrap .projects{
		row-gap: 40px;
	}
	.making-lead-text{
		font-size: 18px;
	}
	.for-dealers-wrap h2{
		margin-bottom: 80px;
	}
	.search-result .categories select{
		font-size: 18px;
	}
	.search-result .search-field input:not([type="submit"]){
		font-size: 18px;
	}
	.bamboo-circular-wrap .projects{
 		margin-bottom: 80px;
 	}
	 .project-features .project.full-width-project{
		max-width: 100%;
		justify-self: center;
	}
	.history-box.alt .history-title::before {
		top: 3px;
	}
	.history-box .history-title::before {
		top: -4px;
	}
	.footer {
		display: grid;
		grid-template-columns: auto 3fr 2fr 2fr;
		grid-template-rows: auto;
	}
}
@media(max-width: 1050px){
	.history-sec{margin-left: 13px;}
	.main-menu{gap: 12px;}
}
@media(min-width: 992px){
	.header-right nav{
		display: flex !important;
	}
	.main-menu li:hover .sub-menu{
		display: block
	}
}
@media (max-width: 991px) {
	body{
		background: #F8F8F8;
	}
	h2, .h2 {
		font-size: 28px;
	}
	h3, .h3 {
		font-size: 22px;
	}
	.common-card-container {
		grid-template-columns: repeat(3, 1fr);
	}
  .search-field input:not([type="submit"]){
    	padding-left: 45px;
  }
  .search-submit{
  	left: 20px;
  }
  .categories select{
  	background-size: 12px;
  	padding-left: 20px;
  }
  .search-form .search{
  	margin-left: 15px;
  }
  .header-wrap{
  	padding: 20px 0;
  }
  .menu-btn{
  	display: flex;
  }
	.header-left{
		position: absolute;
    left: 50%;
    transform: translateX(-50%);
		z-index: 555555;
	}
  .header-right nav{
	position: fixed;
	background: white;
	left: -100%;
	width: 295px;
	z-index: 5555;
	top: 20px;
	height: 100vh;
	display: block;
	transition: 0.3s;
	overflow: auto;
  }
  .header-right nav.show{
  	left: 0;
  }
	.lang-dropdown {
		z-index: 9999;
	}
	.lang-dropdown-list {
		min-width: 250px;
	}
	.lang-value{
  	max-width: 140px;
  }
  .main-menu{
		display: block;
		padding: 0;
		width: 100%;
		top:74px;
		position: absolute
  }
  .main-menu li{
  	font-weight: 500;
  	border-bottom: 1px solid #DADADA;
  	position: relative;
		padding-left: 16px;
  }
  .main-menu li a{
		color: #009944;
  	display: block;
		padding-block: 8px;
  }
	.main-menu li a:hover{
  	opacity: 1;
  }
  .main-menu li::after{
		content: '';
		display: block;
		position: absolute;
		background:url('../images/right-arrow.png') no-repeat center/cover; 
		transition: 0.3s;
		width: 6px;
		height: 10px;
		right: 20px;
		top: 50%;
		transform: translateX(-50%);
		margin-top: -5px;
	}
	.main-menu li.has-children::after{
		content: '+';
		background: transparent;
		font-size: 20px;
		width: auto;
		height: auto;
		right: 20px;
		top: 25px;
		margin-top: -12px;
		color: #009944;
		display: block;
		position: absolute;

	}
	.main-menu li.has-children.active::after{
		content: '';
		display: block;
		position: absolute;
		background:url('../images/right-arrow.png') no-repeat center/cover; 
		transition: 0.3s;
		width: 6px;
		height: 10px;
		right: 20px;
		top: 50%;
		transform: translateX(-50%);
		margin-top: -5px;
	}
	.main-menu li:last-child{
		display: none;
	}
  .main-menu .lang-menu{
		display: block;
	}
	.banner-img{
		width: 600px
	}
	.main-banner .owl-dots{
		margin-top: 20px;
	}
	.banner-wrap{
		padding-bottom: 50px;
	}
	.knitting-title h2,
	.series-page .series-sec h2,
	.recommended-sec h2, .projects-sec h2, .products-wrap h2, .news-wrap h2 {
		margin-bottom: 45px;
	}
	.products,
	.products-categories{
		justify-content: flex-start;
	}
	.product{
		max-width: 33.33%;
	}
	.kitting-product{
		max-width: 400px;
	}
	.projects{
		flex-wrap: wrap;
		row-gap: 30px;
	}
	.project{
		max-width: 33.33%;
	}
	.project-summery-features .project.full-width-project {
		max-width: 100%;
		justify-self: center;
	}
	.product-category{
		max-width: calc(33.33% - 8px);
	}
	.products-wrap {
	  padding-bottom: 70px;
	}
	.news-item{
		margin-bottom: 25px;
		grid-template-columns: 100px 1fr;
	}
	.news-title {
		font-size: 16px;
	}
	.theme-btn {
		max-width: 300px;
		height: 50px;
		font-size: 17px;
	}
	.news-wrap,
	.main-wrap{
		padding-bottom: 100px;
	}
	.news-wrap .theme-btn{
		margin-top: 70px;
	}
	.social-links a img {
		width: 85%;
	}
	.footer-logo{
		max-width: 120px;
	}
	.footer-wrap {
		padding: 50px 0 60px;
	}
	.main-404-wrap {
		padding-top: 85px;
	}
	.main-404 h1 {
		font-size: 80px;
	}
	.main-404 p{
		margin-bottom: 60px;
	}
	/* Search Result
	-------------------------------- */
	.search-result-wrap{
		padding-top: 70px;
	}
	.search-result h3 {
		font-size: 22px;
		margin-bottom: 40px;
	}
	.search-result-form .search-field {
		height: 50px;
	}
	.search-result-form {
		margin-bottom: 85px;
		column-gap: 25px;
	}
	.search-result-list{
		gap: 24px;
	}
	.search-result-info h4{
		font-size: 18px;
	}
	.pagination li{
		font-size: 16px;
	}
	/* Region
	------------------------- */
	.region-top img{
		max-width: 220px;
	}
	.region-top h3 {
		margin: 20px 0 70px;
		font-size: 20px;
	}
	.region-list-row{
		column-gap: 25px;
		margin-bottom: 100px;
	}
	.region-list-col h4{
		font-size: 18px;
		min-height: 54.5px;
		margin-bottom: 25px;
		padding-bottom: 10px;
	}
	.link-card{
		padding-bottom: 15px;
	}
	.region-list-col li > a:not(.link-card){
		padding: 14px 20px 13px 0;
	}
	.region-list-col li > a:not(.link-card)::after {
		width: 6px;
		height: 11px;
		right: 12px;
	}
	.product-category.w50{
		max-width: 100%;
	}
	.md-w25.product-category,
	.product-category.w25{
		max-width: 49%
	}
	.product-category.md-w100{
		max-width: 100%;	
	}
	.region-top h3{
		font-size: 16px;
	}
	.series-page .series-sec h2{
		margin-bottom: 40px;
	}
	.col-25{
		max-width: 50%;
	}
	.col-50{
		max-width: 100%;
	}
	.categories-row{
		row-gap: 20px;
	}
	/* custom styles */
	.bread-crumbs{
		padding: 27px 0;
	}
	.knitting-sec .heading{
		margin-bottom: 60px;
	}
	.knitting-needles{
		margin-bottom: 40px;
	}
	.knitting-sec .heading{
		margin-bottom: 40px;
	}
	.knitting-needles{
		margin-bottom: 20px;
	}
	.product-info{
		font-size: 16px;
	}
	.download-btn{
		font-size: 16px;
		max-width: 230px;
	}
	.product-name-right .green-text{
		margin-bottom: 30px;
	}
	.instruction-box h4{
		margin-bottom: 15px;
	}
	.pdf-instruction{
		column-gap: 15px;
	}
	.pdf-icon{
		max-width: 35px;
	}
	.instruction-info{
		padding: 11px;
	}
	.instruction-box{
		margin-bottom: 30px;
	}
	.product-name-main{
		margin-bottom: 60px;
	}
	.slide-main-img{
		margin-bottom: 30px;
	}
	.product-slides{
		column-gap: 8px;
	}
	.series{
		row-gap: 15px;
		padding-bottom: 60px;
	}
	.series-box-info p{
		font-size: 14px;
	}
	.series-box-info{
		padding: 20px 13px 28px;
	}
	.projects-sec h3.product-inner-heading,
	.product-inner-heading{
		margin-bottom: 50px;
		padding-bottom:  15px;
		font-size: 20px;
	}
	.video-sec{
		padding-bottom: 60px;
	}
	.projects{
		justify-content: flex-start;
	}
	.product-feature-banner{
		margin-bottom: 60px;
	}
	.products-feature-info{
		margin-right: 20px;
	}
	.products-feature-info h4{
		font-size: 20px;
	}
	.products-feature-info h4.green-text, .single-feature .products-feature-info h4{
		font-size: 18px;
		margin-bottom: 20px;
	}
	.products-feature-img{
		max-width: 49%;
	}
	.products-features{
		margin-bottom: 50px;
	}
	.how-use-products .product-img{
		margin-bottom: 20px;
	}
	.how-use-products .product{
		margin-bottom: 30px;
	}
	.project-list-btns select,
	.category-dorpdown-title{
		font-size: 14px;
		background-size: 12px;
		max-width: 160px;
		height: 38px;
	}
	.category-dorpdown{
		max-width: 160px;
		width: 100%;
	}
	.project-list-btns a{
		font-size: 14px;
		height: 38px;
	}
	.project-list-btns{
		margin-bottom: 30px;
	}
	.tag-btns{
		row-gap: 14px;
		column-gap: 12px;
	}
	.project-features-list{
		padding-top: 70px;
	}
	.project-features-list h3{
		margin-bottom: 35px;
	}
	.project-features-list .projects{
		row-gap: 30px;
	}
	.product-desiners-info p{
		font-size: 16px;
	}
	.product-desiners-info{
		padding-bottom: 50px;
	}
	.product-name-right .tag-btns{
		padding-bottom: 40px;
	}
	.project-individual-wrap .product-name-main{
		margin-bottom: 90px;
	}
	.project-individual-wrap .product-inner-heading{
		margin-bottom: 45px;
	}
	.tools-features-box{
		max-width: 45%;
		width: 100%
	}
	.materials-customized-box{
		padding:30px;
	}
	.materials-customized-info p{
		font-size: 15px;
	}
	.customized-label{
		padding-right: 10px;
	}
	.materials-customized-box h4{
		font-size: 16px;
	}
	.materials-customized{
		padding-bottom: 90px;
	}
	.pattern-sec{
		padding-bottom: 80px;
	}
	.making-info-box{
		padding: 30px 30px 30px;
	}
	.making-info{
		margin-left: 30px;
		max-width: 55%;
	}
	.making-img{
		width: 45%
	}
	.making-info p,
	.making-info-box p{
		font-size: 14px;
	}
	.making-lead-text{
		margin-bottom: 30px;
		padding-bottom: 15px;
	}
	.making-sec{
		padding-bottom: 80px;
	}
	.making-number{
		font-size: 16px;
		width: 30px;
		height: 30px;
		top: -15px;
	}
	.making-info-box{
		margin-bottom: 36px;
	}
	.how-to-feature-list p{
		font-size: 16px;
	}
	.how-to-features{
		padding-bottom: 60px;
	}
	.videos-features-sec{
		padding-top: 80px;
	}
	.videos-features-sec h3{
		font-size: 20px;
		margin-bottom: 50px;
	}
	.videos-features{
		margin-bottom: 80px;
		column-gap: 20px;
		row-gap: 30px;
	}
	.bread-crumbs.knitting-breadcrumb{
		padding: 70px 0 60px;
	}
	.videos-features-sec.pd-0{
		padding-bottom: 80px;
	}
	.how-to-individual .video-sec{
		padding: 80px 0;
	}
	.how-to-individual .video-sec h3{
		font-size: 24px;
	}
	.how-to-individual .video-descp p{
		font-size: 16px;
	}
	.how-to-individual .video-descp{
		padding:20px;
	}
	.how-to-individual .video-descp-time{
		margin-bottom: 30px;
	}
	.individual-product-info p, .individual-product-info a{
		max-width: 100%;
	}
	.individual-product-info{
		max-width: 60%;
	}
	.individual-product-features{
		column-gap: 20px;
		row-gap: 20px;
	}
	.individual-product-info p, .individual-product-info a{
		font-size: 16px;
	}
	.products-features.alt .products-feature-info{
		margin-left: 30px;
	}
	.products-features-sec h4{
		margin-bottom: 20px;
	}
	.products-features-sec h4{
		font-size: 22px;
	}
	.product-individual-series .series-products{
		padding-bottom: 60px;
	}
	.series-product-info p{
		font-size: 16px;
	}
	.series-product-info{
		padding: 25px 15px;
	}
	.products.series-products{
		padding-bottom: 80px;
	}
	.products.series-products{
		row-gap: 30px;
	}	
	.news-main-wrap h2{
		margin-bottom: 60px;
	}
	.news-main .news-item{
		column-gap: 20px;
	}	
	.news-sec aside{
		max-width: 250px;
	}
	.aside{
		margin-bottom: 60px;
	}
	.news-date,
	.news-title{
		font-size: 14px;
	}
	.news-main .news-item{
		padding: 20px 0;
	}
	.aside-accordian ul{
		padding-left: 40px;
	}	
	.news-main section{
		padding-bottom: 50px;
	}
	.region-list-col.aside h4{
		padding-bottom: 15px;
	}
	.knitting-main-wrap .products-wrap{
		padding-bottom: 80px;
	}
	.news-main{
		max-width: 67%;
	}	
	.news-main-wrap h2{
		margin-bottom: 30px;
		font-size: 22px;
	}
	.publish-date{
		font-size: 14px;
		margin-bottom: 16px;
	}
	.news-single-main p.catagory-name{
		font-size: 14px;
	}
	.news-single-main .feature-img img{
		margin-bottom: 65px;
	}
	.news-single-main h3{
		font-size: 20px;
	}
	.news-single-main p{
		font-size: 16px;
		margin-bottom: 30px;
		line-height: 1.6;
	}
	.news-single-main > img{
		margin-bottom: 35px;
	}
	.related-posts::after {
		width: 142px;
	}
	.news-single-main .related-posts-descp p{
		font-size: 14px;
		line-height: 1.5;
	}
	.related-posts-date{
		font-size: 14px;
		line-height: 1.5;
	}
	.related-posts{
		grid-template-columns: 120px 1fr;
		padding:20px 0 15px ;
	}
	.related-posts-sec{
		padding:40px 0 80px ;
		margin-bottom: 80px;
	}
	.dealers-features{
		flex-wrap: wrap;
		column-gap: 20px;
		margin-bottom: 60px;
	}
	.dealers-feature{
		max-width: 31%;
	}
	.system-requirment{
		margin-bottom: 80px;
	}
	.system-requirment{
		padding:40px;
	}
	.system-requirment .product-inner-heading{
		font-size: 18px;
		margin-bottom: 30px;
	}
	.system-requirment ul li,
	.system-requirment p{
		font-size: 16px;
	}
	.privacy-main h2{
		margin-bottom: 60px;
	}
	.privacy-main h3{
		margin-bottom: 40px;
		padding-bottom: 13px;
	}
	.privacy-main h4 {
		margin-bottom: 16px;
	}
	.privacy-main p{
		margin-bottom: 20px;
	}
	.privacy-main section{
		margin-bottom: 60px;
	}
	.topics-features{
		column-gap: 20px;
	}
	.topics-info{
		padding: 30px 19px 30px 20px;
	}
	.topics-info p{
		font-size: 14px;	
		margin-bottom: 20px;
	}
	.topics-info p.catagories {
		font-size: 14px;
	}
	.topics-titles{
		margin-bottom: 60px;
	}
	.topics-catagory-name{
		font-size: 14px;
	}	
	.topics-features{
		padding-bottom: 60px;
	}
	.news-single-main hr{
		margin: 30px 0 60px;
	}
	.news-single-main .theme-btn{
		max-width: 200px;
	}
	.cookie-btns{
		column-gap: 20px;
	}
	.cookie-btns .theme-btn{
		max-width: 180px;
		height: 40px;
		font-size: 14px
	}
	.sitemap-main h2{
		margin-bottom: 60px;
	}
	.sitemap-main .region-list-col h4{
		margin-bottom: 21px;
		padding-bottom: 12px;
	}
	.region-wrap .sitemap-main .region-list-col ul{
		display: block;
	}
	.sitemap-main .region-list-row{
		margin-bottom: 60px;
	}
	.contact-us-main h2{
		margin-bottom: 60px;
	}
	.checkbox label, .input label{
		font-size: 16px;
	}
	.input{
		margin-bottom: 20px;
	}
	.form .submit-btn{
		margin-top: 80px;
	}
	.input select, .input input{
		font-size: 14px;
	}
	.input textarea{
		font-size: 14px;
	}
	.company-information h2{
		margin-bottom: 60px;
	}
	.company-profile-info{
		padding-bottom: 76px;
	}
	.colover-bases-title{
		max-width: 180px;
	}
	.colover-bases-btn{
		max-width: 120px;
	}
	.colover-bases-btn .theme-btn{
		height: 35px;
	}
	.colover-bases{
		padding-bottom: 80px;
	}
	.colover-bases{
		padding-bottom: 90px;
	}
	.history-sec{
		padding-bottom: 31px;
		margin-bottom: 90px;
	}
	.history-box{
		padding: 20px 0;
	}
	.history-box p{
		font-size: 16px;
	}
	.history-title{
		min-width: 140px;
	}
	.colover-bases-box{
		padding: 30px 0 25px;
	}
	.environmental-initiatives h2{
		margin-bottom: 60px;
	}
	.environmental-initiatives h3.product-inner-heading{
		margin-bottom: 40px;
	}
	.environmental-box{
		padding-bottom: 70px;
	}
	.environmental-initiatives{
		padding-bottom: 80px;
	}
	.environmental-info p{
		font-size: 16px;
	}
	.environmental-info h4{
		margin-bottom: 20px;
		font-size: 18px;
	}
	.project-summery .social-badges{
		margin-bottom: 30px;
	}
	.project-summery p.summery{
		margin-bottom: 50px;
	}
	.project-summery .product-inner-heading{
		margin-bottom: 30px;
	}
	.project-summery p{
		margin-bottom: 20px;
	}
	.project-summery-features{
		gap: 24px;
	}
	.project-summery-features .project{
		max-width: 46%;
	}
	.project-summery-features{
		margin-bottom: 50px;
	}
	.project-summery{
		padding-bottom: 25px;
	}
	.project-archive-info p{
		font-size: 16px;
	}
	.project-archive-box{
		column-gap: 25px;
	}
	.project-archives{
		row-gap: 22px;
		column-gap: 22px;
	}
	.product-page{
		padding-top: 0;
	}
	.product-page h2{
		margin-bottom: 60px;
	}
	.for-dealers-wrap h2{
		margin-bottom: 60px;
	}
	.search-result .categories select{
		font-size: 16px;
	}
	.search-result .search-field input:not([type="submit"]){
		font-size: 16px;
	}
	.video-play-btn{
		width: 60px;
		height: 60px		
	}
	.products-features-sec .products-feature-info h4{
 		font-size: 20px;
 		margin-bottom: 25px
 	}
 	.products-features-sec .products-feature-info h4.green-text, .single-feature .products-feature-info h4{
 		font-size: 18px;
 	}
 	.bamboo-circular .products-feature-info p{
 		margin-bottom: 25px;
 	}
 	.bamboo-circular-wrap .video-sec{
 		padding-bottom: 80px;
 	}
 	.series-sec.alt{
 		padding-bottom: 80px;
 	}
 	.series-sec.alt .series{
 		padding-bottom: 50px;
 	}
 	.bamboo-circular-wrap .projects{
 		margin-bottom: 60px;
 	}
 	.bamboo-circular-wrap .product-inner-heading{
		margin-bottom: 40px;
	}
	.privacy-main h4{
		font-size: 18px;
	}
	.back-to-top{
		right: 10%;
		width: 50px;
		height: 50px;
	}
	.back-to-top img{
		max-width: 17px;
	}
	.main-menu li .sub-menu{
		position: static;
		background: transparent;
	}
	.main-menu li .sub-menu li{
		border-bottom: 0;
	}
	.main-menu li .sub-menu li:last-child{
		padding-bottom: 0;
	}
	.header-wrap{
		background-color: transparent;
	}
	.header-wrap::after{
		content: '';
		display: block;
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: #009944;
		z-index: 5555;
	}
	.menu-btn{
		z-index: 555555;
	}
	.history-box.alt .history-title::before {
		top: 2px;
	}
	.footer {
		grid-template-columns: auto 3fr 3fr 4fr;
		grid-template-rows: auto auto;
		column-gap: 12px;
	}
	.home-link {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}
	.product-list {
		grid-column: 2 / 4;
		grid-row: 1 / 2;
	}
	.project-list {
		grid-column: 4 / 5;
		grid-row: 1 / 2;
	}
	.video-list {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	.topic-list {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}
	.dealer-list {
		grid-column: 3 / 4;
		grid-row: 2 / 3;
	}
	.about-us-list {
		grid-column: 4 / 5;
		grid-row: 2 / 3;
	}
}

@media ( min-width: 768px ) {.footer-mob-logo{display: none;}}
@media (max-width: 767px) {
	h2, .h2{
		font-size: 20px;
	}
	h3, .h3{
		font-size: 16px;
	}
	.heading{
		padding-bottom: 6.52px;
	}
	.heading::after {
		width: 72px;
	}
    .banner-img{
		width: 	100%;
		max-width: 500px;
		margin: 0 auto;
		padding: 7px 10px 10px;
	}
	.main-banner .owl-prev{
		display: block;		
		margin-left: 15px;
	}
	.main-banner .owl-next{
		display: block;		
		margin-right: 15px;
	}
	.main-banner{
		max-width: 500px;
		margin: 0 auto;
	}
	.header-left{
		max-width: 90px;
	}   
	.header-wrap{
		padding: 15px 0;
	}
	.common-card-container {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 16px;
	}
	.search-categories-wrap .d-flex{
		display: block;
 	}
 	.categories{
 		max-width: 100%;
 		margin-bottom: 10px
 	}
 	.search-form .search{
 		margin-left: 0;
 	}
 	.categories select{
 		font-size: 15px;
 		padding-left: 15px;
 		height: 40px;
 		letter-spacing: 0.7px;
 	}
 	.search-field input:not([type="submit"]){
 		font-size: 15px;
 		height: 40px;
 		letter-spacing: 0.7px;
 	}
 	.search-categories-wrap{
 		display: none;
 	}
 	.search-toggle{
    	display: block;
    }
    .main-banner .owl-dots{
    	margin-top: 14px;
    }
    .banner-wrap{
    	padding-bottom: 40px;
    }
    .home-main-wrap{
    	padding-top: 40px;
    }
    .knitting-title h2,
    .series-page .series-sec h2,
    .recommended-sec h2{
    	margin-bottom: 40px;
    }
    .products{
    	margin-left: -6px;
    	margin-right: -6px;
    }
    .product{
    	max-width: 50%;
    	padding: 0 6px;
    	margin-bottom: 20px;
    }
    .product-img{
    	margin-bottom: 14px;
    }
    .product p{
    	font-size: 14px;
    	font-weight: 500;
    	letter-spacing: 0.7px;
    }
    .projects-sec h2{
    	margin-bottom: 40px;
    }
    .projects-sec h3 {
    	margin-bottom: 20px;
    }
    .projects{
    	row-gap: 20px;
    	margin-left: -6px;
    	margin-right: -6px;
    	margin-bottom: 40px;
    }
    .project{
    	max-width: 50%;
    }
    .project-info{
    	padding: 14px 9px;
    }
    .project-info p{
    	font-size: 13px;
    	font-weight: 500;
    	letter-spacing: 0.65px;
    	margin-bottom: 16px;
    }
    .tool-name .tag{
    	border-radius: 12px;
    	width: 38px;
    	height: 16px;
    	line-height: 16px;
    	padding: 0;
    	font-size: 9px;
    	letter-spacing: 0.45px;
    	text-align: center;
    }
		.full-width-project .project-info .tool-name p {
			font-size: 12px;
		}
    .recommended-projects{
    	padding-top: 60px;
    }
    .theme-btn{
    	width: 188px;
    	height: 38px;
    	border-radius: 5px;
    	font-size: 12px;
    	font-weight: 500;
    	background: none;
    }
    .recommended-projects .projects{
    	margin-bottom: 60px;
    }
    .projects-sec{
    	padding-bottom: 80px;
    }
    .products-wrap h2{
    	margin-bottom: 46px;
    }
    .products-categories{
    	column-gap: 12px;
    	row-gap: 14px;
    }
    .product-category {
      max-width: calc(50% - 6px);
      padding: 17px 10px 16px 17px;
      margin: 0;
    }
    .product-category p{
    	font-size: 10px;
    	margin-left: 14px;
    	letter-spacing: 0.5px;
    	font-weight: 500;
    }
    .products-wrap{
    	padding-bottom: 86px;
    }
    .news-wrap h2 {
      margin-bottom: 40px;
    }
    .news-item{
    	display: block;
    	margin-bottom: 20px;
    }
    .news-date{
    	font-size: 14px;
    	font-weight: 500;
    	margin-right: 0;
    	margin-bottom: 10px;
    	letter-spacing: 0.7px;
    }
    .news-title{
    	font-size: 14px;
    	letter-spacing: 0.7px;
    	font-weight: 500;
    }
    .news-wrap .theme-btn{
    	margin-top: 40px;
    }
    .news-wrap,
    .main-wrap{
    	padding-bottom: 80px;
    }
    .social-links-wrap .container{
    	max-width: 250px;
    }
    .social-links a img{
    	width: 33px;
    }
    .social-links-wrap{
    	padding: 28px 0;
    }
    .footer-wrap{
    	padding: 32px 0 55px;
    }
    .footer{
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
    }
		.footer-list {
			width: calc(100% / 3 - 32px);
		}
		.product-list {
			grid-column: initial;
			grid-row: initial;
		}
		.project-list {
			grid-column: initial;
			grid-row: initial;
		}
		.video-list {
			grid-column: initial;
			grid-row: initial;
		}
		.topic-list {
			grid-column: initial;
			grid-row: initial;
		}
		.dealer-list {
			grid-column: initial;
			grid-row: initial;
		}
		.about-us-list {
			grid-column: initial;
			grid-row: initial;
		}
    .footer-list ul{
    	display: none;
    }
    .footer-list h4{
    	margin-bottom: 0;
    	font-size: 12px;
    	letter-spacing: 0.6px;
    	font-weight: 500;
			text-align: center;
    }
    .footer-btm{
    	padding: 22px 0;
    }
    .copyright,
    .footer-btm-links a{
    	font-size: 9px;
    	font-weight: 500;
    	letter-spacing: 0.45px;
    }
    .copyright{
    	margin-bottom: 10px;
    }
    .footer-btm-links a{
    	padding: 0 11px;
    }
    .footer-logo{
    	display: none;
    }
    .footer-wrap .d-flex{
    	display: block;
    	text-align: center;
    }
    .region-selector{
    	font-size: 12px;
    	padding: 9.5px 40px 9.5px 19px;
    	font-weight: 500;
    	letter-spacing: 0.6px;
    	max-width: none;
    	display: inline-flex;
    	height: auto;
    	margin:0 auto;
    }
    .region-selector::after{
    	width: 5px;
    	height: 9px;
    	right: 18px;
    }
    .region-selector:hover::after{
    	right: 15px;
    }
    .footer-mob-logo{
    	margin-bottom: 40px;
    	display: inline-flex;
    }
    .main-404-wrap {
    	padding-top: 60px;
    }
    .main-404 h1{
    	font-size: 70px;
    	margin-bottom: 25px;
    }
    .main-404 p{
    	font-size: 18px;
    	margin-bottom: 50px;
    }
    /*	Search Result
    ------------------------- */
    .search-result-form{
    	display: block;
    	margin-bottom: 70px;
    }
    .search-result-wrap{
    	padding-top: 55px;
    }
    .search-result h3{
    	font-size: 20px;
    	margin-bottom: 30px;
    }
    .search-result-form .search-field {
    	height: 40px;
    }
    .search-result-form .search-field input:not([type="submit"]){
    	height: 100%;
    }
		.search-result-list {
			grid-template-columns: 120px auto;
		}
    .search-result-info h4 {
    	font-size: 16px;
    	margin-bottom: 10px;
    }
    .search-result-info p{
    	font-size: 14px;
    }
    /*	Region
    ------------------------- */
    .region-top img {
    	max-width: 100%;
    }
    .region-list-row {
		column-gap: 15px;
		margin-bottom: 80px;
	}
	.region-list-col h4 {
		font-size: 15px;
		min-height: 47.23px;
		margin-bottom: 15px;
	}
	.region-list-col li > a:not(.link-card){
		font-size: 13px;
	}
	.region-list-row{
		display: block;
	}
	.region-list-col{
		max-width: 100%
	}
	.region-wrap .region-list-col ul{
		display: none;
	}
	.region-page .container{
		padding: 0;		
	}
	.region-page .region-list-row{
		background: white;
		padding: 0 15px;
	}
	.region-page .region-list-col h4{
		padding: 23px 40px 23px 0;
		min-height: auto;
		border:	 0;
		margin-bottom: 0;
		font-size: 20px;
	}
	.region-page .region-list-col{
		border-bottom: 2px solid #f8f8f8;
	}
	.region-page .region-list-col:last-child{
		border: 0;
	}
	.region-page .region-list-col ul.active{
		display: block;
	}
	.region-page .region-list-col ul{
		padding-bottom: 23px;
	}
	.region-page .region-list-col li{
		border: 0;
	}
	.region-page .region-list-col li a{
		font-size: 18px;
	}
	.link-card{
		padding-top: 23px;
		max-width: 237px;
	}
	.product-page .products-categories{
		margin-bottom: 86px;
	}	
	.product-category{
		min-height: 49px;
	}
	.news-single-main .related-posts-descp p{
		line-height: 1.4;
	}
	.region-wrap{
		padding-top: 0
	}
	.region-top{
		max-width: 150px;
		margin: 0 auto;
	}
	.region-top h3{
		font-size: 14px;
	}
	.tool-name{
		display: block;
	}
	.region-page .region-list-col li a::after{
		display: none;
	}
	.region-page .region-list-col h4.active{
		background-image: url('../images/close-green-dropdown.png');
	}
	.series-page .series-sec h2{
		margin-bottom: 26px;
	}
	.categories-row{
		row-gap: 14px;
		margin: 0 -5px;
	}
	.col{
		padding: 0 5px;
	}
	/* custom styles */
	.bread-crumbs-list li, .bread-crumbs a {
		font-size: 13px;
	}
	.kitting-products{
		display: block;
	}
	.kitting-products .col-6{
		max-width: 100%;
	}
	.kitting-product .d-flex{
		display: flex;
		flex-direction: row-reverse;
	}
	.kitting-product-title{
		margin-left: 18px;		
	}
	.kitting-product{
		max-width: 100%;
	}
	.kitting-product h4{
		font-weight: 500;
	}
	.kitting-product{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
	.darning-needles .col-6:last-child .kitting-product{
		padding: 0;
		margin-bottom: 0;
		border: 0;
	}
	 .bread-crumbs-list{
	 	column-gap: 30px;
	 }
	.kitting-product ul{
		margin-bottom: 0;
	}
	.darning-needles{
		padding-bottom: 49px;
	}
	.kitting-product h4{
		font-size: 16px;
		margin-bottom: 12px;
		min-height: 59px;
		letter-spacing: 0.8px;
	}
	.kitting-product h4.green-text{
		font-size: 14px;
		min-height: auto;
		letter-spacing: 0.7px;
	}
	.kitting-product ul li{
		letter-spacing: 0.7px;	
		font-size: 14px;
		font-weight: 500;
		margin-bottom: 11px;
	}
	.kitting-product ul li:last-child{
		margin: 0;
	}
	.kitting-product .read-more-btn{
		margin: 19px auto 0;
	}
	.kitting-product .product-img{
		margin-bottom: 20px;
	}
	.kitting-product .d-flex{
		justify-content: flex-end;
	}
	.kitting-product h4{
		max-width: 222px;
	}
	.knitting-sec .heading{
		margin-bottom: 37px;
	}
	.knitting-needles{
		margin-bottom: 11px;
	}
	.read-more-btn{
		font-weight: 500;
		height: 38px;
	}
	.green-text::after{
		font-size: 18px;
	}
	.product-name-main{
		display: block;
	}
	.product-name-right, .product-name-left{
		max-width: 100%;
	}
	.product-name-title{
		margin-bottom: 40px;
	}
	.slide-main-img{
		margin-bottom: 20px;
	}
	.product-slides{
		margin-bottom: 27px;
	}
	.product-name-right{
		margin: 0;
	}
	.product-name-right .green-text{
		margin-bottom: 30px;
	}
	.download-btn{
		max-width: 221px;
		height: 48px;
		font-size: 14px;
	}
	.download-btn::before {
		width: 14px;
		height: 14px;
	}
	.product-name-right .download-btn{
		margin-bottom: 57px;
	}
	.instruction-box{
		margin-bottom: 45px;
	}
	.product-name-main{
		margin-bottom: 57px;
	}
	.pdf-icon{
		max-width: 32px;
		margin-bottom: 15px;
	}
	.instruction-info p{
		font-size: 12px;
		max-width: 122px;
	}
	.instruction-box h4{
		margin-bottom: 13px;
	}
	.projects-sec h3.product-inner-heading,
	.product-inner-heading{
		margin-bottom: 40px;
		padding-bottom:  10px;
		font-size: 18px;
	}
	.series-box-info p{
		font-size: 12px;
		margin-bottom: 12px;
	}
	.series-box-info .green-text{
		margin-bottom: 10px;
		max-width: 100%;
		line-height: 1.33;
	}
	.series-box-info{
		padding: 15px 10px 23px;
	}	
	.series{
		padding-bottom: 40px;
	}
	.series-sec{
		padding-bottom: 59px;
	}
	.product-name-wrap .projects-sec .theme-btn,
	.series-sec .theme-btn{
		display: flex;
		margin: 0 auto;
	}
	.product-name-wrap .projects{
		padding-bottom: 40px;
	}
	.video{
		margin-bottom: 23px;
	}
	.video-descp p{
		font-size: 16px;
		letter-spacing: 0.8px;
		line-height: 1.5;
		margin-bottom: 19px;
	}
	.video-descp p.small{
		line-height: 1.2;
	}
	.series{
		margin: 0 -6px;
	}
	.video-sec{
		padding-bottom: 40px;
	}
	.video-descp-time{
		font-size: 14px;
	}
	.slide-main-img{
		position: relative;
	}
	.arrow{
		width: 14px;
		height: 24px;
		background: red;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 12px;
		background: url('../images/dark-left-arrow.png') no-repeat center /cover;
		cursor: pointer;
	}
	.right-arrow{
		right: 15px;
		left: auto;
		background: url('../images/gry-rigth-arrow.png') no-repeat center /cover;
	}
	.product-feature-wrap .social-badges{
		margin-bottom: 27px;
	}
	.products-features{
		display: block;
	}
	.products-feature-info{
		max-width: 100%;
		margin-right: 0;
	}
	.products-feature-img{
		max-width: 100%;
	}
	.products-feature-info h4{
		font-size: 18px;
		letter-spacing: 0.9px;
		margin-bottom: 9px;
	}
	.products-feature-info h4.green-text, .single-feature .products-feature-info h4{
		font-size: 16px;
		margin-bottom: 16px;
		letter-spacing: 0.8px;
	}
	.products-feature-info p{
		line-height: 1.25;
	}
	.products-feature-info{
		margin-bottom: 27px;
	}
	.products-features{
		margin-bottom: 40px;
	}
	.products-features-sec.bamboo-circular h4.black-text {
    margin-bottom: 0;
}
	.how-use-products .product p{
		font-size: 14px;
	}
	.how-use-products .product-img{
		margin-bottom: 14px;
	}
	.how-use-products .product{
		margin-bottom: 17px;
	}
	.products.how-use-products{
		padding-bottom: 23px;
	}
	.how-use-features {
		padding-bottom: 58px;
	}
	.how-use-features .theme-btn{
		margin: 0 auto;
		display: flex;
	}
	.project-list-main h2{
		margin-bottom: 40px;
	}
	.project-list-btns a,
	.project-list-btns select,
	.category-dorpdown-title{
		font-size: 12px;
		background-size: 10px;
		max-width: 140px;
		height: 34px;
	}
	.category-dorpdown{
		max-width: 166px;
		width: 100%;
	}
	.project-list-btns{
		column-gap: 12px;
		margin-bottom: 25px;
	}
	.project-list-btns a span::after {
		width: 10px;
		height: 16px;
	}
	.project-list-btns a span{
		padding-left: 18px;
	}
	.tag-btn{
		font-size: 12px;
		padding: 9px 26px;
	}
	.tag-btns{
		column-gap: 8px;
		row-gap: 8px;
		padding-bottom: 40px;
	}
	.project-features-list{
		padding-top: 60px;
	}
	.project-features-list h3{
		margin-bottom: 20px;
	}
	.project-features-list .projects{
		row-gap: 20px;
	}
	.project-list-wrap .theme-btn{
		display: flex;
		margin: 0 auto;
	}
	.project-features-list .projects{
		margin-bottom: 40px;
	}
	.project-features-list .latest-projects{
		padding-bottom: 80px;
	}
	.project-features-list .most-viewed-projects,
	.project-features-list .latest-projects,
	.project-features-list .recommended-projects{
		padding-bottom: 80px;
	}
	.project-features-list .most-viewed-projects .projects{
		padding-bottom: 40px;
	}
	.project-social-badges{
		display: flex;
	}
	.project-individual-wrap .video-sec{
		padding-bottom: 60px;
	}
	.project-individual-wrap .slide-main-img{
		margin-bottom: 20px;
	}
	.product-desiners-info p{
		font-size: 14px;
		letter-spacing: 0.7px;
	}
	.product-desiners-info p,
	.product-desiners-info p.green-text{
		margin-bottom: 11px;
	}
	.product-desiners-info{
		padding-bottom: 16px;
	}
	.project-individual-wrap .product-name-right .social-badges{
		justify-content: center;
	}
	.project-individual-wrap .product-name-main{
		margin-bottom: 80px;
	}
	.project-individual-wrap .product-inner-heading{
		margin-bottom: 40px;
	}
	.tools-features{
		row-gap: 18px;
	}
	.tools-features-box{
		max-width: 100%;
	}
	.tools-features-box p{
		max-width: 100%;
		font-size: 14px;
	}
	.tools-features{
		padding-bottom: 80px;
	}
	.materials-customized-info p{
		font-size: 14px;
	}
	.customized-label{
		padding: 0;
	}
	.materials-customized-box h4{
		font-size: 14px;
	}
	.materials-customized-box{
		padding: 25px 18px;
	}
	.materials-customized{
		padding-bottom: 80px;
	}
	.pattern-sec{
		padding-bottom: 60px;
	}
	.pattern-sec .pdf-icon{
		max-width: 32px;
	}
	.instruction-info p{
		font-size: 10px;
	}
	.pattern-sec .instruction-box{
		max-width: 163px;
	}
	.pattern-sec .instruction-info{
		padding: 11px 11px 35px;
	}
	.pattern-sec .instruction-info p{ 
		max-width: 119px;
	}
	.d-flex.making-flex{
		display: block;
	}
	.making-img{
		width: 100%;
		max-width: 100%;
		margin-bottom: 14px;
	}
	.making-info{
		margin-left: 0;
		max-width: 100%;
	}
	.making-lead-text{
		margin-bottom: 18px;
		padding-bottom: 14px;
	}
	.making-flex.mb-30{
		margin-bottom: 40px;
	}
	.making-sec{
		padding-bottom: 60px;
	}
	.making-info-box{
		padding: 24px 18px;
	}
	.making-number{
		font-size: 14px;
		width: 25px;
		height: 25px;
		top: -12px;
	}
	.making-info-box{
		margin-bottom: 36px;
	}
	.how-porject-btns{
		display: flex;
	}
	.how-to-features{
		display: none;
	}
	.videos-features-sec{
		padding-top: 60px;
	}
	.videos-features-sec h3{
		margin-bottom: 40px;
		font-size: 18px;
	}
	.videos-features {
		grid-template-columns: repeat(2, 1fr);
	}
	.feature-video,
	.videos-feature-img{
		margin-bottom: 15px;
	}
	.videos-feature-info p{
		font-size: 14px;
		margin-bottom: 12px;
	}
	.videos-features{
		row-gap: 26px;
	}
	.play-btn-img{
		max-width: 27px;
	}
	.videos-features-sec .theme-btn{
		display: flex;
		margin-bottom: 60px;
	}
	.videos-features.most-viewed-videos,
	.videos-features{
		margin-bottom: 40px;
	}
	.project-list-btns.how-porject-btns{
		margin-bottom: 0;
		padding-bottom: 40px;
		border-bottom: 1px solid #DADADA;
	}
	.videos-features-sec.pd-0 .videos-features{
		margin-bottom: 60px;
	}
	.bread-crumbs.knitting-breadcrumb{
		padding: 30px 0;
	}
	.videos-features-sec.pd-0{
		padding-bottom: 0;
	}
	.how-to-wrap .pagination{
		margin-bottom: 79px;
	}
	.pagination li.last-page-number{
		margin-right: 12px;
	}
	.how-to-individual .video-sec{
		padding: 60px 0 80px;
	}
	.how-to-individual .video-descp{
		margin-bottom: 40px;
	}
	.how-to-individual .video-sec h3{
		font-size: 18px;
		margin-bottom: 20px;
	}
	.how-to-individual .video-descp-time{
		margin-bottom: 24px;
	}
	.how-to-individual .video-descp p{
		font-size: 14px;
	}
	.how-to-individual .video-descp{
		padding: 18px;
	}
	.video-sec .social-badges{
		justify-content: center;
	}
	.individual-product-feature{
		display: block;
	}
	.individual-product-img{
		margin-bottom: 19px;
		max-width: 100%;
	}
	.individual-product-info{
		max-width: 100%;
	}
	.individual-product-img img{
		width: 100%
	}
	.individual-product-sec{
		margin-bottom: 79px;
	}
	.individual-product-info p, .individual-product-info a{
		font-size: 14px;
	}
	.products-features.alt{
		margin-bottom: 40px;
	}
	.products-features.alt .products-feature-info{
		margin-left: 0;
	}
	.products-features-sec h4{
		font-size: 20px;
	}
	.series-products .product{
		max-width: 50%;
	}
	.products.series-products{
		padding-bottom: 40px;
	}
	.series-sec.product-individual-series{
		padding-bottom: 0;
	}
	.series-product-info p{
		font-size: 14px;
	}
	.categories-tag{
		margin-top: 18px;
		font-size: 14px;
		padding: 8px 20px;
	}
	.products.series-products{
		row-gap: 20px;
	}	
	.news-main-wrap h2{
		margin-bottom: 40px;
	}
	.news-sec{
		display: block;
	}
	.news-main .news-item{
		display: flex;
		justify-content: flex-start;
	}
	.news-main{
		padding-left: 0;
	}
	.news-date, .news-title{
		margin-bottom: 0;
	}
	.news-main section{
		padding-bottom: 40px;
	}
	.news-sec main{
		margin-bottom: 80px
	}
	.news-sec aside{
		max-width: 100%;
	}
	.aside{
		margin-bottom: 40px;
	}
	.aside-accordian ul{
		padding-left: 37px;
	}
	.region-list-col.aside h4{
		margin-bottom: 7px;
		padding-bottom: 9px
	}
	.news-sec aside{
		margin-bottom: 80px;
	}
	.news-main{
		max-width: 100%;
	}
	.news-single-main .d-flex{
		display: block;
	}	
	.news-main-wrap h2{
		font-size: 20px;
		margin-bottom: 25px;
	}
	.publish-date{
		font-size: 12px;
	}
	.news-single-main p.catagory-name{
		margin-bottom: 35px;
	}
	.news-single-main .feature-img img{
		margin-bottom: 57px;
	}
	.news-single-main h3{
		letter-spacing: 1px;
	}
	.news-single-main p{
		line-height: 1.3;
		margin-bottom: 27px;
	}
	.news-single-main > img{
		margin-bottom: 27px;
	}
	.related-posts-date{
		padding: 0;
		letter-spacing: 0.7px;
	}
	.related-posts::after {
		width: 101px
	}
	.related-posts{
		grid-template-columns: 100px 1fr;
		padding: 20px 0 11px;
		column-gap: 18px;
	}
	.related-posts-sec{
		padding: 13px 0 40px;
		margin-bottom: 40px
	}
	.dealers-feature{
		max-width: 48%;
		width: 100%
	}
	.theme-btn{
		width: 100%
	}
	.dealers-feature p{
		font-size: 14px;
		max-width:90%;
		margin-bottom: 14px;
	}
	.system-requirment{
		margin-bottom: 70px;
	}
	.system-requirment{
		padding: 28px;
	}
	.system-requirment .product-inner-heading{
		font-size: 16px;
		margin-bottom: 20px
	}
	.system-requirment ul li,
	.system-requirment p{
		font-size: 14px;
	}
	.system-requirment p,
	.system-requirment ul{
		margin-bottom: 20px;
	}
	.system-requirment ul{
		padding-left: 17px;
	}
	.privacy-main h2{
		margin-bottom: 40px;
	}
	.privacy-main h3{
		margin-bottom: 25px;
		padding-bottom: 9px;
	}
	.privacy-main h4 {
		margin-bottom: 11px;
		font-size: 16px;		
	}
	.privacy-main p{
		font-size: 14px;
	}
	.privacy-main section:last-child,
	.privacy-main section{
		margin-bottom: 57px;
	}	
	.topics-titles{
		margin-bottom: 40px;
	}
	.topics-titles h2{
		margin-bottom: 20px
	}
	.topics-catagory-name{
		position: static;
		font-size: 12px;
	}
	.topics-features{
		display: block;
	}
	.topics-feature{
		max-width: 100%;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;		
		padding: 20px 0;
		align-items: center;
		border-top: 1px solid #DADADA;
	}
	.topics-feature:last-child{
		border-bottom: 1px solid #DADADA;
	}
	.topics-img{
		max-width: 40%;
		width: 100%;
	}
	.topics-info{
		max-width: 50%;
		width: 100%;
		padding: 0;
		box-shadow: none;
	}
	.topics-img img{
		border-radius: 10px;
	}
	.topics-info p{
		margin-bottom: 34px;
	}
	.topics-info p.catagories {
		font-size: 12px;
	}
	.topics-features{
		padding-bottom: 40px;
	}
	.news-single-main hr{
		margin: 13px 0 40px;
	}
	.news-single-main .theme-btn{
		max-width: 180px;
	}
	.privacy-main h2{
		background: url('../images/plus-icon.png') no-repeat right center/15px;
	}
	.cookie-notice-main h2{
		font-size: 18px;
		margin-bottom: 14px;
	}
	.cookie-notice-main p{
		font-size: 14px;
		text-align: center;
	}
	.cookie-btns {
		column-gap: 10px;
	}
	.cookie-btns .theme-btn{
		font-size: 12px;
		height: 34px;
		max-width: 130px;
	}
	.sitemap-main .region-list-row:last-child{
		margin-bottom: 63px;
	}
	.sitemap-main h2{
		margin-bottom: 40px;
	}
	.sitemap-main .region-list-col h4{
		margin-bottom: 15px;
		padding-bottom: 10px;
		background: transparent;
		font-size: 18px;
	}
	.sitemap-main .region-list-col li a{
		font-size: 16px;
	}
	.sitemap-main .region-list-row{
		margin-bottom: 0;
	}
	.sitemap-main  .region-list-col{
		margin-bottom: 40px;
	}	
	.region-wrap.sitemap-wrap{
		padding-top: 0;
	}
	.contact-us-wrap{
		padding-top: 0;
	}
	.contact-us-main{
		padding-bottom: 73px;
	}
	.contact-us-main h2{
		margin-bottom: 40px;
	}
	.checkbox label, .input label{
		font-size: 14px;
	}
	.input{
		margin-bottom: 18px;
	}
	.form-group{
		margin-bottom:18px ;
		display: block;
	}
	.form-group .input{
		margin-bottom:18px;
		max-width: 100%;
	}
	.checkboxes{
		display: block;
	}
	.checkbox{
		margin-bottom: 14px;
	}
	.checkboxes{
		margin-bottom: 39px;
	}
	.input select{
		background-size: 12px;
	}
	.input select, .input input{
		padding:10px 15px;
	}
	.input textarea{
		min-height: 170px;
		font-size: 14px;
	}
	.input .textarea{
		padding:15px;		
	}
	.form .submit-btn{
		max-width: 188px;
		margin-top: 43px;
	}
	.company-information h2{
		margin-bottom: 40px;
	}
	.company-profile-info ul{
		column-gap: 15px;
	}
	.company-profile-info li{
		font-size: 14px;
		line-height: 1.4;
		max-width: 200px;
		letter-spacing: 0.7px;
	}
	.colover-bases-box{
		flex-wrap: wrap;
		padding: 21px 0 26px;
	}
	.colover-bases-title{
		max-width: 30%;		
	}
	.colover-bases-title h3{
		font-size: 14px;
	}
	.colover-bases-address{
		font-size: 14px;
		max-width: 60%;
	}
	.colover-bases-btn{
		max-width: 100%;
		display: none;
	}
	.colover-bases-address .theme-btn{
		max-width: 94px;
		font-size: 10px;
		height: 30px;
		margin-top: 16px;
	}
	.colover-bases{
		padding-bottom: 61px;
	}
	.history-sec{
		margin-bottom: 79px;
	}
	.colover-bases-address .theme-btn{
		display: flex;
	}
	.history-box{
		display: block;
		margin-left: 30px;
	}
	.history-title p{
		text-align: left
	}
	.history-box p{
		font-size: 14px;
	}
	.history-title{
		margin-bottom: 9px;
	}
	.history-box .history-title::before {
		width: 22px;
		height: 22px;
		left: -41.5px;
	}
	.history-box.alt .history-title::before {
		width: 12px;
		height: 12px;	
		left: -36px;
	}
	.history-sec{
		padding-bottom: 10px;
	}	
	.history-box .history-title::before {
		top: 20px;
		transform: translateY(0);
	}
	.history-box.first-box::before {
		top: 0;
	}
	.history-box.alt .history-title::before {
		top: 24%;
	}
	.company-information-wrap{
		padding-top: 0;
	}
	.history-sec,
	.colover-bases,
	.company-profile-info{
		display: none;
	}
	.company-information-wrap .product-inner-heading {
		background: url('../images/plus-icon.png') no-repeat right top 3px/15px;		
	}
	.company-profile-info{
		display: block;
	}
	.company-information-wrap .product-inner-heading.active{
		background-image: url('../images/open-icon.png');
		background-position: right top 12px;
	}
	.environmental-initiatives h2{
		margin-bottom: 40px;
	}
	.environmental-initiatives h3.product-inner-heading{
		margin-bottom: 26px;
	}
	.environmental-box{
		padding-bottom: 60px;
	}
	.environmental-initiatives{
		padding-bottom: 60px;
	}
	.environmental-box{
		display: block;
	}
	.environmental-img,
	.environmental-info{
		max-width: 100%;
	}
	.environmental-info{
		margin-bottom: 26px;
	}
	.environmental-info h4{
		margin-bottom: 11px;
		font-size: 16px;
	}
	.environmental-info p{
		font-size: 14px;
	}
	.environmental-box.w100 .environmental-info{
		margin-bottom: 0;
	}
	.project-summery h2{
		margin-bottom: 40px;
	}
	.project-summery .social-badges{
		margin-bottom: 26px;
	}
	.project-summery p.summery{
		margin-bottom: 37px;
	}
	.project-summery .product-inner-heading{
		margin-bottom: 26px;
	}
	.project-summery p{
		margin-bottom: 17px;
		font-size: 14px
	}
	.project-summery-features {
		gap: 12px;
	}
	.project-summery-features .project p{
		font-size: 12px;
	}
	.project-summery .project-info p{
		font-size: 12px;
		margin-bottom: 5px;
	}
	.project-archives .project-archive-img{
		max-width: 107px;
		width: 100%;
	}
	.full-width-project .project-info{
		max-width: 60%;
	}
	.full-width-project .project-info{
		padding: 11px ;
	}
	.full-width-project .project-img a{
		height: 100%;
	}
	.full-width-project .project-img a img{
		min-height: 100%;
		max-height: 100%;
	}
	.project-summery{
		padding-bottom: 0;
	}	
	.project-archive-box{
		width: 100%;
	}
	.project-archive-info p{
		font-size: 14px;
	}
	.project-archive-info{
		max-width: 100%		
	}
	.project-archives{
		margin-bottom: 82px;
	}
	.product-page h2{
		margin-bottom: 46px;
	}
	.bread-crumbs-list li::after {
		right: -22px;
	}
	.making-lead-text{
		font-size: 16px;
	}
	.for-dealers-wrap h2{
		margin-bottom: 40px;
	}
	.search-result .categories select{
		font-size: 14px;
	}
	.search-result .search-field input:not([type="submit"]){
		font-size: 14px;
	}
	.project-summery-wrap,
	.privacy-wrap,
	.topics-main-wrap, .news-main-wrap,
	.environmental-initiatives-wrap,
	.project-list-wrap,
	.main-wrap.product-page,
	.home-main-wrap.knitting-page,
	.product-name-wrap,
	.product-feature-individual, .product-feature-wrap{
		padding-top: 0;
	}
	.theme-btn,
	.project-list-wrap .theme-btn,
	.projects-sec .theme-btn,
	.product-name-wrap .projects-sec .theme-btn,
	.series-sec .theme-btn,
	.how-use-features .theme-btn{
		max-width: 180px		
	}
	.materials-customized-info{
		align-items: flex-start;
	}
	.video-play-btn{
		width: 44px;
		height: 44px		
	}
	.checkbox label::after {
		width: 16px;
		height: 16px;
	}
	.checkbox label{
		padding-left: 24px;
	}
	.input select, .input input{
		height: 40px;
	}
	.series-page .series{
		padding-bottom: 0;
	}
	.series-page .series-sec{
		padding-bottom: 79px;
	}
	.products-features-sec .products-feature-info h4{
 		font-size: 18px;
 		margin-bottom: 22px;
 		letter-spacing: 0.9px;
 	}
 	.products-features-sec .products-feature-info h4.green-text, .single-feature .products-feature-info h4{
 		font-size: 16px;
 	}
 	.products-feature-info p,
 	.bamboo-circular .products-feature-info p{
 		margin-bottom: 22px;
 	}
 	.bamboo-circular .products-feature-img img,
 	.bamboo-circular .products-feature-img.mb-0 img{
 		margin-bottom: 22px;
 	}
 	.products-feature-info{
 		margin-bottom: 0;
 	}
 	.machin-dev{
 		margin-top: 22px;
 	}
 	.bomboo-ciurcular-outer{
 		padding-bottom: 32px;
 	}
 	.bamboo-circular-wrap .video-sec{
 		padding-bottom: 60px;
 	}
 	.series-sec.alt{
 		padding-bottom: 60px;
 	}
 	.series-sec.alt .series{
 		padding-bottom: 40px;
 	}
 	.bamboo-circular-wrap .projects{
 		margin-bottom: 40px;
 	}
 	.bamboo-circular-wrap .product-name-title{
		margin-bottom: 27px;
	}
	.bamboo-circular-wrap .product-inner-heading{
		margin-bottom: 28px;
	}
	.dealers-features{
		flex-wrap: wrap;
		column-gap: 20px;
	}
	.project-summery-features{
		flex-wrap: nowrap;
		column-gap: 13px;
	}
	.project-summery-features .project{
		max-width: 47%;
	}
	.project.full-width-project{
		max-width: 100%;
	}
	.region-wrap.sitemap-wrap .region-list-col ul{
		display: block;
	}
	.topics-info{
		background: transparent;
	}
	.individual-product-feature{
		max-width: 46%;
	}
	.kitting-product li::after {
		font-size: 15px
	}
	.bamboo-circular .products-feature-info p:last-child{
		margin-bottom: 20px;
	}
	.back-to-top{
		display: flex;
		max-width: 40px;
		height: 40px;
		right: 7%;
	}
	.back-to-top img{
		max-width: 13px;
	}
	.main-menu{
		top: 60px;
	}
	.full-width-project .project-img{
		max-width: 46%;
	}
	.full-width-project .project-info{
		max-width: 53%;
	}
	.dealers-feature-img{
		height: 125%;
	}
	form .search-submit {
		left: 16px;
	}
	.products-container {
		justify-content: space-between;
		padding-left: 0;
	}
	.product-card {
		width: calc( 100% / 2 - 20px );
	}
	/* product-feature-cards */
	.product-feature-cards {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-template-rows: auto;
		padding: 0;
		gap: 16px;
	}

	.product-feature-card {
		width: 100%;
	}

	.product-feature-card-title {
		margin-top: 16px;
		font-size: 12px;
	}

	.product-child-box:not(:nth-last-of-type(-n+2)) {
		border-bottom: none;
	}

	.product-child-box:not(:last-of-type) {
		border-bottom: solid 1px #ccc;
	}
	/* grandchild-list */
	.grandchild-list li a {
		font-size: 16px;
	}
	/* cookie notice */
	.cky-notice-des p span {
		font-size: 14px;
	}
}

@media (max-width: 575px) {
 	.header-left{
 		max-width: 80px;
 	}      
 	.header-wrap{
 		padding: 9px 0 12px;
 	}
 	.categories select{
 		font-size: 14px;
 	}
 	.search-field input:not([type="submit"]){
 		font-size: 14px;
 	}
 	.banner-wrap{
 		padding: 24px 15px 40px;
 	}
 	.main-404-wrap{
 		padding-top: 40px;
 	}
 	.main-404 h1{
 		font-size: 60px;
 		line-height: 1.2167;
 		margin-bottom: 10px;
 		letter-spacing: 3px;
 	}
 	.main-404 p{
 		letter-spacing: 0.9px;
 		line-height: 1.33;
 	}
 	/*	Search Result
 	----------------------- */
 	.search-result-wrap{
 		padding-top: 40px;
 	}
 	.search-result h3{
 		font-size: 18px;
 		margin-bottom: 21px;
 	}
 	.search-result-form{
 		margin-bottom: 60px;
 	}
 	.search-result-info h4{
 		font-size: 14px;
 		font-weight: 700;
 		line-height: 1.285;
 		letter-spacing: 0.7px;
 		margin-bottom: 8px;
 	}
 	.search-result-info p{
 		font-size: 12px;
 		line-height: 1.33;
 		letter-spacing: 0.6px;
 	}
 	.search-result-content{
 		row-gap: 22px;
 		margin-bottom: 43px;
 	}
	.search-result-list {
		gap: 16px;
	}
 	.pagination li{
 		font-size: 14px;
 		letter-spacing: 0.7px;
 		line-height: 1.285;
 	}
 	.pagination li.first-page-number::before,
 	.pagination li.last-page-number::after {
 		height: 32px;
 	}
 	.pagination span::after{
 		width: 16.5px;
 	}
 	/* custom styles */
 	
	.bread-crumbs-list li, .bread-crumbs a {
		font-size: 10px;
	}
	 .bread-crumbs-list{
	 	column-gap: 20px;
	 }
	.knitting-main-wrap{
		padding-top: 3px;
	}
	.kitting-product .product-img{
		max-width: 100px;
	}
	.tag-btn{
		font-size: 10px;
		font-size: 10px;
		padding: 7px 22px;
		border-width: 1px;
		letter-spacing: 0.45px;
	}
	.project-list-btns a,
	.project-list-btns select,
	.category-dorpdown-title{
		font-size: 10px;
		max-width: 100px;
		height: 24px;
	}
	.category-dorpdown{
		max-width: 100px;
	}
	.project-list-btns select,
	.category-dorpdown-title{
		padding: 3px 10px;
		background-size: 8px;
		background-position: right 12px center;
	}
	.project-list-btns a span::after {
		width: 8px;
		height: 12px;
	}
	.project-list-btns{
		margin-bottom: 20px;
	}
	.project-list-btns a span{
		padding-left: 14px;
	}
	.project-list-btns{
		column-gap: 8px;
	}
	.project-features-list h3{
		margin-bottom: 20px;
	}
	.tag-btn{
		font-size: 9px;
	}
	.tools-features-box p{
		font-size: 12px;
	}
	.tools-features-img{
		max-width: 60px;
	}
	.making-number{
		font-size: 11px;
		width: 18px;
		height: 18px;
		top: -9px;
	}
	.videos-feature-info p{
		font-size: 12px;
	}
	.videos-feature-info p.green-txt{
		font-size: 10px;
	}
	.videos-features{
		column-gap: 19px;
	}
	.how-to-individual .video-sec h3{
		font-size: 14px;
	}
	.individual-product-info p, .individual-product-info a{
		font-size: 12px;
	}
	.individual-product-features{
		column-gap: 19px;
	}
	.individual-product-feature{
		max-width: 47%;
	}
	.project-features .projects{
		grid-template-columns: 1fr;
	}
	.project-features .projects>* {
		grid-column: 1;
	}
	.project-summery-features .project:not(.full-width-project) {
		margin-left: auto;
		margin-right: auto;
}
	.project-features .projects>*:nth-child(odd) {
		justify-self: initial;
	}
	.products-features-sec h4{
		font-size: 18px;
	}
	.series-product-info{
		padding: 20px 10px;
	}
	.categories-tag{
		font-size: 12px;
		padding-bottom: 8px 18px;
	}
	.news-date, .news-title{
		font-size: 12px;
	}
	.news-main .news-item{
		padding: 15px 0;
	}	
	.news-main-wrap h2{
		font-size: 18px;
		margin-bottom: 16px;
	}
	.news-sec main{
		margin-bottom: 60px;
	}
	.dealers-feature .theme-btn{
		font-size: 12px;
	}
	.dealers-feature .theme-btn span::before {
		width: 14px;
		height: 14px;
	}
	.dealers-feature{
		max-width: 46%;
	}
	.bread-crumbs-list li::after {
		right: -15px;
	}
	.bread-crumbs-list{
 		row-gap: 5px;
 	}
 	.topics-info{
 		max-width: 51%
 	}
 	.topics-info p{
 		font-size: 14px;
 		letter-spacing: 0.7px;
 	}
 	.company-profile-info li{
 		max-width: 130px;
 	}

	.product-children-container {
		grid-template-columns: 1fr;
	}

	.product-children-container>* {
		grid-column: 1;
	}
}
@media (max-width: 420px) {
	.lang-value {
		max-width: 60px;
	}
	.lang-value span {
		display: none;
	}
	.lang-sp-current {
		display: block;
		position: relative;
		background: #094;
		color: #fff;
		margin-top: -5px;
		padding-bottom: 5px;
		text-align: right;
		font-size: 12px;
		z-index: 5600;
	}
}
@media (max-width: 374px) {.category-dorpdown-list{min-width: 330px;}}
@media (max-width: 359px) {.category-dorpdown-list{min-width: 290px;}}