html{font-size:14px;}
@font-face {
    font-family: 'Poppins-Medium';
    src: url('fonts/Poppins-Medium.eot');
    src: url('fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
         url('fonts/Poppins-Medium.woff') format('woff'),
         url('fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins-Regular';
    src: url('fonts/Poppins-Regular.eot');
    src: url('fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/Poppins-Regular.woff') format('woff'),
         url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('fonts/Poppins-SemiBold.eot');
    src: url('fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
         url('fonts/Poppins-SemiBold.woff') format('woff'),
         url('fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins-Light';
    src: url('fonts/Poppins-Light.eot');
    src: url('fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'),
         url('fonts/Poppins-Light.woff') format('woff'),
         url('fonts/Poppins-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Kanit-Light';
    src: url('fonts/Kanit-Light.eot');
    src: url('fonts/Kanit-Light.eot?#iefix') format('embedded-opentype'),
         url('fonts/Kanit-Light.woff') format('woff'),
         url('fonts/Kanit-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Kanit-Medium';
    src: url('fonts/Kanit-Medium.eot');
    src: url('fonts/Kanit-Medium.eot?#iefix') format('embedded-opentype'),
         url('fonts/Kanit-Medium.woff') format('woff'),
         url('fonts/Kanit-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body{
    font-family: 'Poppins-Light', 'Kanit-Light';
	cursor: default;
	position: relative;
	line-height:1.75;
	font-size: 1rem;
	color: #000;	
}
a{
	color:inherit;
	text-decoration: none;
}
#back-to-top {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 9999;
    bottom: 30%;
    right: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:5px 0;
    background:#FFF;
    font-size: .9rem;
    opacity: 1;
    transform: translate(0,-50%);
}
#back-to-top:hover{
    opacity: 1;
}
#back-to-top a {
    color: #FFF;
}
button:focus {
    outline: none;
}


#nav-icon3{
	z-index: 88;
	width: 40px;
	height: 40px;
	position: relative;
    top: 0rem;
    right: 0rem;
	margin:0px 0;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	box-shadow: none;
	background: none;
	border: none;
}
#nav-icon3 span{
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
    background: #87cefa;
    border-radius: 6px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
#nav-icon3 span:nth-child(1) {
	top: 0px;
}
#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
	top: 12px;
	width: 75%;
	right: 0;
    left: auto;
}
#nav-icon3 span:nth-child(4) {
	top: 24px;
	width: 40%;
	right: 0;
    left: auto;
}
#nav-icon3.open span:nth-child(1) {
	top: 18px;
	width: 0%;
	left: 50%;
}
#nav-icon3.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#nav-icon3.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
	top: 18px;
	width: 0%;
	left: 50%;
}

#nav-icon3 p {
    position: absolute;
    right: 0rem;
    bottom: -1rem;
    margin: 0;
    color: #87cefa;
    font-family: 'Poppins-Light';
}

/*Landding page--//////////////////////////////////////////////////////////////////////////*/
.video-bg{
	width: 100%;
	height: 100vh;
	position: relative;
}
.video-bg::before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
    z-index: 1;
	background: rgb(43 126 155);
    mix-blend-mode: hard-light;
    background-blend-mode: color-burn;
}
.video-bg::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
    z-index: 1;
	background: url("../images/bg-white.png") top right no-repeat;
    mix-blend-mode: color-burn;
}
.video-bg video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.textweb{
	text-align: center;
	letter-spacing: 2px;
	color: #FFF;
	margin: 1rem auto 0;
}
.textweb a:hover{color: #FFF;}


.landding-v3-contentpage{
	padding:20% 0 10%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: url("../images/bg-landingpagev2.png") top center no-repeat;
	background-attachment: fixed !important;
	background-size: cover !important;
}
.landding-v3-contentpage .textweb{margin: 3rem auto 0;}
.ladding-text--v3{
	padding: 10% 5%;
	text-align: center;
	margin: auto;
	background: url("../images/bg-white.png") center center no-repeat;
	background-size: cover !important;
	border-radius: 40px;
	box-shadow: 2.954px 0.521px 19.32px 1.68px rgba(0, 0, 0, 0.4);
}

.ladding-text--v3 h1{
	font-size: 33px;
	color: #0f475b;
	margin-bottom: 1rem;
	text-transform: uppercase;
    font-family: 'Poppins-SemiBold';
	text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.27);
}
.ladding-text--v3 img{
	width: auto;
	margin: auto;
	max-width: 100%;
}
.ladding-text--v3 h2{
	font-size: 24px; 
	margin: 1rem 0 ;
	color: #87cefa;
    font-family: 'Poppins-Medium';
}


.button-style--v3{
	padding: 8px;
	display: block;
	color: #FFF;
	width: 100%;
	overflow: hidden;
	text-align: center;
	margin: 2rem auto 0;
	border-radius: 13px;
	transition: all 0.3s;
	border-color: transparent;
	border-style: solid;
	border-width: 2px;
	font-size: 16px;
	text-shadow: 0 3px 5px rgba(0,0,0,0.24);
}
.button-style--v3:hover{
	box-shadow:0 0 10px rgba(0,0,0,0.22), inset 0px 3px 9px 0px rgba(0, 0, 0, 0.45);
	transform: scale(1.05) !important;
}

.button-style--v3.homeclick{background-color: #082449;}
.button-style--v3.cleanclick{background-color: #4a7fbe;}
.button-style--v3.workclick{background-color: #d31500;}
.button-style--v3.productclick{background-color: #ffb84d;}

.button-style--v3.homeclick:hover{border-color: #082449;}
.button-style--v3.cleanclick:hover{border-color: #4a7fbe;}
.button-style--v3.workclick:hover{border-color: #d31500;}
.button-style--v3.productclick:hover{background-color: #ffb84d;}
/*head--//////////////////////////////////////////////////////////////////////////*/
.contact-headerbar{
	padding: 8px 0;
	background: #87cefa;
	color: #FFF;
}
.contact-headerbar img{
	width: 35px;
	margin-right: 5px;
	vertical-align: middle;
	filter: brightness(0) invert(1);
}
.contact-header a{color: #FFF;}
.contact-header a:hover{color: #000;}
.headbar-main{
    width: 100%;
    padding:.5rem 0;
    transition: all 0.5s;	
	background-color: #e0ffff;
}
.slim.headbar-main{box-shadow: 0 2px 7px rgba(0,0,0,0.2);}
.hamburgers-box{
    width: 100%;
    position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
    transition: all 0.5s;
}

.landding-contentpage .navbar-brand{display: none;}
.navbar-brand {
	width: 100%;
    padding: 0;
    text-align: left;
    margin:0;
	display: block;
    transition: all 0.5s;
}
.navbar-brand span{color: #00ffff;}
.navbar-brand img{
	max-width: 100%;
	width: 250px;
	transition: all 0.5s;
}
.navbar-brand.d-lg-none{text-align: center;}

.navbar-nav li{
	padding: 0 15px;
	text-align: left;
	font-size: 1.2rem;
	transition: all 0.5s;
}
.navbar-nav li img{
	width: 16px;
	margin: 0;
	transition: all 0.5s;
	filter: invert(38%) sepia(0%) saturate(0%) hue-rotate(162deg) brightness(96%) contrast(84%);
}
.navbar-nav li.cartpage,
.navbar-nav li.profilepage a{padding: 5px;}

.navbar-nav li.profilepage img,
.navbar-nav li.cartpage img{
	width: 20px;
} 
.navbar-nav li a:hover img, 
.navbar-nav li.active img{
	filter: brightness(0) invert(1);
}
.navbar-nav li.dropend img{
	display: block;
	filter: invert(72%) sepia(33%) saturate(705%) hue-rotate(177deg) brightness(103%) contrast(96%);
}
.navbar-nav li.dropend {padding: 0;}
.navbar-nav li.dropend a:hover img, 
.navbar-nav li.dropend.active img{
	filter: invert(72%) sepia(33%) saturate(705%) hue-rotate(177deg) brightness(103%) contrast(96%);
}
.navbar-nav .dropdown-menu li{padding: 0;}
.navbar-nav li.active .dropdown-menu a{background: #FFF;color: #87cefa;} 
.navbar-nav li.dropend .dropdown-menu a{
	background: #6fb6e2;
	color: #FFF;
}
.navbar-nav li.dropend .dropdown-menu a:hover{
	background: #FFF;
	color: #6fb6e2;
}

.navbar-nav li a {
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    color: #000;
    transition: all 0.5s;
    align-items: center;
    justify-content: space-between;
}
.navbar-nav li.active a, .navbar-nav li a:hover{
	color: #FFF;
	background: #87cefa;
}

.navbar-nav li.profilepage a,
.navbar-nav li.cartpage a{
	background: none;
}
.navbar-nav li.profilepage a:hover img,
.navbar-nav li.cartpage a:hover img,
.navbar-nav li.profilepage img:hover,
.navbar-nav li.cartpage img:hover{
	filter: invert(62%) sepia(30%) saturate(1097%) hue-rotate(152deg) brightness(95%) contrast(94%);
}
.navbar-nav li.profilepage a:hover,
.navbar-nav li.cartpage a:hover{
	background: none;
	color: #87cefa;
}


.navbar-nav .dropdown-menu {
	border: none;
	border-radius: 0;	
	width: 100%;
	padding: 0;
	margin: 0;
	background: #87cefa;
}
.navbar-nav .dropdown-menu a{
	text-align: left;
	padding: 10px 15px;
	color: #FFF;
	font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-nav .dropdown-menu a:hover{
	color: #87cefa;
	background: #FFF;
}

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
}

.social-header{
	text-align: center;
	margin: 2rem auto;
}
.social-header a{
	color: #000;
	text-decoration: none;
}
.social-header img{
	width: 45px;
	transition: all 0.5s;
	filter: none;
}
.social-header p{
	margin-bottom: 1rem;
	letter-spacing: 1px;
}
.social-header p img{width: 30px;margin-right: 5px;}
.social-header img:hover{
	transform: scale(.95);
	filter: invert(76%) sepia(28%) saturate(1823%) hue-rotate(127deg) brightness(106%) contrast(103%);
}

.navbar-brand.mobile-logotyle{text-align: center;}
.landding-contentpage .mobile-logotyle{
	text-align: center;
	padding: 0 30px;
	display: block;
}
.mobile-logotyle img{width: 280px;}
.line-mobile{
	width: 80%;
	height: 1px;
	background: #00ffff;
	margin: 1rem auto;
	border: none;
	opacity: 1;
}


.menumobile-set{
	background: #FFF;
	padding: 12px 0;
	
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1221;
	width: 100%;
	
	-webkit-box-shadow: -2px -1px 5px 0px rgba(0,0,0,0.42);
	-moz-box-shadow: -2px -1px 5px 0px rgba(0,0,0,0.42);
	box-shadow: -2px -1px 5px 0px rgba(0,0,0,0.42);
}
.menumobile-set .col-3{
	text-align: center;
	border-right: 1px solid #87cefa;
}
.menumobile-set .col-3:last-child{border: none;}
.menumobile-set img{
	width: 35px;
	transition: all 0.6s;
	filter: invert(62%) sepia(30%) saturate(1097%) hue-rotate(152deg) brightness(95%) contrast(94%);
}
.menumobile-set .col-3.active img,
.menumobile-set img:hover{filter: none;}
/*slide-banner--//////////////////////////////////////////////////////////////////////////*/
#carouselSlideIndicators .carousel-item img{max-width: 100%;}
#carouselSlideIndicators .carousel-indicators{
	align-items: center;
	justify-content: flex-start;
}
#carouselSlideIndicators .carousel-indicators button{
	width: 12px;
	height: 12px;
	margin: 0 3px;
	opacity: 1;
	border-radius: 50px;
	background: #87cefa;
	border: 1px solid #87cefa;
}
#carouselSlideIndicators .carousel-indicators button.active{
	background: #00ffff;
	border-color: #00ffff;
	width: 20px;
	height: 20px;
	color: #FFF;
}
.banner--slide{
	padding: 7% 0 0;
	position: relative;
	background-size: cover !important;
	background-position: top left ;
	background-repeat: no-repeat;
}
.banner--slide.banner1{background-image: url("../home/images/bg-banner.png")}
.banner--slide.banner2{background-image: url("../home/images/bg-banner2.png");}
.banner--slide.banner3{background-image: url("../home/images/bg-banner3.png");}
.banner-caption{padding: 1rem;}
.banner-caption h1{
	font-size: 38px;
	margin-bottom: 1rem;
    font-family: 'Poppins-SemiBold';
	text-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	
	display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    height: calc(1rem * 1.75 * 4);

}
.line-mainweb{
	width: 180px;
	height: 5px;
	background: #5c89c5;
	margin: 2rem 0;
	border-radius: 5px;
}
.banner-caption h2{
	font-size: 24px;
	color: #5c89c5;
	margin-bottom: 1rem;
    font-family: 'Poppins-Medium';
	
	
	display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    height: calc(1rem * 1.3 * 9);
}
.banner-caption p{margin: 0;}

.banner-caption a{
	padding:10px 8px;
	border: 1px solid #87cefa;
	color: #87cefa;
	display: block;
	margin: 1rem 0 0;
	text-align: center;
	border-radius: 15px;
	width: 215px;
	overflow: hidden;
	transition: all 0.5s;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 5px 0px;
}
.banner-caption a:hover{
	color: #fff;
}


/* Sweep To Right */
.hvr-sweep-to-right {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #87cefa;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/*content--//////////////////////////////////////////////////////////////////////////*/
.content-about{
	padding: 10% 0;
	background: -webkit-linear-gradient(left, rgba(224,255,255,1) 0%, rgba(224,255,255,1) 40%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(left, rgba(224,255,255,1) 0%, rgba(224,255,255,1) 40%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
	background: linear-gradient(to right, rgba(224,255,255,1) 0%, rgba(224,255,255,1) 40%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);	
}
.content-cleanroom{
	padding: 10% 0;
	background: #FFF;
	position: relative;
}
.content-cleanroom::before{
	content: '';
	background: #e0ffff;
	width: 100%;
	height: 15%;
	left: 0;
	bottom: 0;
	position: absolute;
	z-index: 1;
}
.content-workwear{
	padding: 20% 0;
	background: -webkit-linear-gradient(rgba(224,255,255,1) 0%, rgba(224,255,255,1) 40%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(rgba(224,255,255,1) 0%, rgba(224,255,255,1) 40%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
	background: linear-gradient(rgba(224,255,255,1) 0%, rgba(224,255,255,1) 40%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);	
}
.img-about ul{
	list-style: none;
	display: flex;
	padding: 0;
	margin: 0;
}
.img-about li{
	display: block;
	overflow: hidden;
	position: relative;
	border-radius: 30px;
	background-color: rgb(135, 206, 250);
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
}
.img-about ul li.ab-2{margin-left: 15px; margin-top: 2rem;}
.img-about img{
	width: 100%;
	height: 100%;
	transition: ease-out 0.5s;
	object-fit: cover;
}
.img-about li:hover img{transform: scale(1.07);}
.img-about li::before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	border-radius: 30px;
	transition: ease-out 0.5s;
	background: #87cefa;
    mix-blend-mode: color-burn;
	transform: translateY(-100%);
}
.img-about li:hover:before{
	transform: translateY(0);
}


.img-box{
	width: 100%;
	text-align: center;
	overflow: hidden;
	position: relative;
	z-index: 2;
	border-radius: 15px;
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
}
.img-box img{
	width: 100%;
	transition: ease-out 0.5s;
}
.img-box:hover img{transform: scale(1.05);}
.about-box{margin-top: 2rem;}
.about-box h1{
	font-size: 38px;
	margin-bottom: .75rem; 
    font-family: 'Poppins-SemiBold';
}
.text-1box h1{
	color: #00ffff;   
	font-size: 38px;
	margin-bottom: .75rem; 
    font-family: 'Poppins-SemiBold';
}
.about-box h2{
	font-size: 20px;
	margin: 0;
    font-family: 'Poppins-Medium';
}
.about-box p, .text-1box p{margin-bottom: 1.5rem;}
.about-box a, .text-1box a{
	padding: 0 8px;
	color: #87cefa;
	border-bottom: 1px solid #87cefa;
}
.about-box a:hover .fa-plus, .text-1box a:hover .fa-plus{transform: translateX(10px);}
.about-box a:hover, .text-1box a:hover{color: #00ffff;border-color: #00ffff;}

.text-1box {
	border-left: 4px solid #00ffff;
	margin-bottom: 2rem;
	padding-left: 20px;
}
.about-box .fa-plus, .text-1box .fa-plus{transition: all 0.5s;}
.text-1box .line-mainweb{background: #000;}
.cleanimg-2.row{align-items: flex-start;}
.cleanimg-2.row .img-about.img2{margin-top: 2rem;}


.content-taglinebottom{
	padding: 7% 0;
	background: url( "../home/images/bg-bottom--mobile.png") top center no-repeat;
	background-attachment: fixed !important;
	background-size: cover !important;
}
.text-tagline{
	text-align: center;
	color: #FFF;    
    font-family: 'Poppins-Medium';
}
.text-tagline p{margin: 1rem auto;}
.text-tagline .line-mainweb{background: #fff;margin:auto;}

.content-workwear .text-1box{margin: 2rem 0;}


.content-aboutpage{
	padding: 10% 0;
	background: url("../aboutus/images/About5.png") left bottom no-repeat #FFF;
	background-size: contain !important;
}
.text-about h1{
	color: #6ec0f4;
	font-size: 35px;
	margin-bottom: 0;
    font-family: 'Poppins-Medium';
	text-shadow: 1.5px 2.598px 0px rgba(0, 0, 0, 0.2);
}
.text-about h2{
	color: #011e30;
	font-size: 40px;
	margin-bottom: 1rem;
    font-family: 'Poppins-Medium';
	text-shadow: 1.5px 2.598px 0px rgba(0, 0, 0, 0.2);
}
.text-about span{
	font-family: 'Poppins-Medium';
	color: #0a5485;
	font-size: 18px;
}
.text-about p{margin-bottom: 1rem;}
.text-about img{
	width: 115px;
	margin-left: 5px;
	vertical-align: baseline;
}
.text-about p.bg-lightblue{
	padding: 1rem;
	background: #e1fffe;
	margin: 2rem auto;
}
.text-about p.addline-about{
	border-left: 4px solid #6ec0f4;
	padding-left: 1rem;
}

.content-asg{
	padding: 10% 0;
	background: #e1fffe;
}
.asg-text{
	text-align: center;
	margin-bottom: 2rem;
}
.asg-text hr{
	width: 120px;
	border-bottom: 3px solid rgb(43 184 235);
	margin: .75rem auto 1.5rem;
	border-top: none;
	opacity: 1;
}
.asg-text h1{
	font-size: 33px;
	line-height: 1.75;
	margin-bottom: 0;
	text-transform: uppercase;
	font-family: 'Poppins-Medium';
	color: rgb(1, 30, 48);
	text-shadow: 1.5px 2.598px 0px rgba(0, 0, 0, 0.2);
}
.asg-text p{margin-bottom: 1rem;}
.asg-text h2{
	line-height: 1.75;
	font-size: 1.2rem;
	margin-bottom: 0;
	font-family: 'Poppins-Medium';
}

.content-aboutpage2{
	padding: 10% 0;
	background: url("../aboutus/images/About6.png") right bottom no-repeat #FFF;
	background-size: contain !important;
}
.text-about2 p{margin-bottom: 1rem;}
.text-about2 span{
	font-family: 'Poppins-Medium';
	font-size: 1.1rem;
}
.text-about2 img{
	width: 250px;
	margin: auto;
	display: block;
}

.accordion--about{margin-top: 2rem;}
.accordion--about .accordion-item{margin-bottom: 1rem;}
.accordion--about .accordion-header{
	font-size: 18px;
	margin: 0;
	padding: 1rem;
	background: #f5f5f5;
	color: #0a5485;
	font-family: 'Poppins-Medium';
	
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.accordion--about .accordion-header img{
	width: 25px;
	transition: all 0.5s;
	filter: invert(18%) sepia(94%) saturate(1821%) hue-rotate(185deg) brightness(93%) contrast(92%);
}
.accordion--about .accordion-header[aria-expanded="true"] img{transform: rotate(180deg);}
.accordion--about .accordion-header[aria-expanded="false"] img{transform: rotate(0deg);}
.accordion--about .accordion-item{
	padding: 0;
	border: none;
	border-radius: 0;
}

.img-about2{
	text-align: center;
	margin: auto;
	overflow: hidden;
}
.img-about2 img{max-width: 100%;}





.banner-title{
	position: relative;
	text-align: center;
	margin: auto;
	color: #FFF;
	padding: 10% 0;
	background: url("../images/homepage-design_bg01-scaled.jpeg") center center no-repeat;
	background-size: cover !important;
}
.banner-title img{width: 100%;}
.banner-title p{
	margin: 0;
	letter-spacing: 2px;
	color: #00ffff;
}
.banner-title h1{
	font-size: 40px;
	margin: 0;
    font-family: 'Poppins-Medium';
}

.content-cleanroompage{padding: 10% 0;}
.text-clean{margin-bottom: 2rem;}
.text-clean h1{
	font-size: 20px;
    font-family: 'Poppins-Medium';
	margin-bottom: .5rem;
}
.text-clean h2{
	font-size: 24px;
    font-family: 'Poppins-Medium';
	margin-bottom: .5rem;
	text-decoration: underline;
}
.text-clean p{margin-bottom: 1rem;}
.text-clean p.bg-lightblue{
	padding: 1rem;
	background: #c4f9fc;
	margin-bottom: 0;
}
.img-clean{text-align: center;overflow: hidden;}
.img-clean img{width: 100%;}

.menu-product img{
	width: 8px;
	margin: 0 5px 0 0;
	transform: translateX(-5px);
	transition: all 0.5s;
	filter: invert(71%) sepia(62%) saturate(1310%) hue-rotate(176deg) brightness(93%) contrast(93%);
}
.menu-product {margin: 2rem auto;}
.menu-product ul{
	list-style: none;
	margin: 0;
}
.menu-product ul li{
	padding: 5px 0;
	color: #69b1e7;
	transition: all 0.5s;
	
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
}
.menu-product ul li:hover{
	transform: scale(1.05);
	color: #095485;
}
.menu-product ul li:hover img{
	transform: translateX(0);
	filter: invert(18%) sepia(46%) saturate(3916%) hue-rotate(186deg) brightness(95%) contrast(93%);
}


.text-clean ul{
	list-style: none;
	margin: 0;
}
.text-clean .fa-angles-right{font-size: 14px;}
.text-clean ul li{padding-bottom: 5px;}

.table-cleanroom{
	overflow-x: auto;
	overflow-y: hidden;
	margin: 1rem auto 2rem;;
}
.table-cleanroom table{
	min-width: 640px;
	overflow: hidden;
	border: 1px solid #d3f4f9;
}
.table-cleanroom table th{background: #d3f4f9;}
.table-cleanroom table td{background: #f3fcfd;}
.table-cleanroom table tr:nth-child(2n+1) td{background: #FFF;}
.table-cleanroom table td, 
.table-cleanroom table th{
	vertical-align: top;
	padding: 10px 8px;
	text-align: right;
	color: #095485;
}
.table-cleanroom table td:first-child, 
.table-cleanroom table th:first-child{text-align: left;font-weight: bold;}
.table-cleanroom table td:last-child, 
.table-cleanroom table th:last-child{text-align: center;}


.content-contactpage{padding: 10% 0;}
.address-box{margin-bottom: 2rem;}
.address-box h1, .contact-box h1, .follow-box h1{
	font-size: 24px;
	margin-bottom: .75rem;
	color: #87cefa;
    font-family: 'Poppins-Medium';
}
.contact-box{margin: 1rem 0;}
.contact-box ul{
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.contact-box img{
	width: 30px;
	margin-right: 10px;
	filter: invert(78%) sepia(86%) saturate(3518%) hue-rotate(178deg) brightness(102%) contrast(99%);
}
.contact-box ul li{padding-bottom: 10px;}
.contact-box ul li a:hover{color: #87cefa;text-decoration: underline;}
.follow-box img{width: 45px;transition: all 0.5s;}
.follow-box img:hover{transform: scale(.95);}
.message-contact {
	border-radius: 15px;
	margin-top: 2rem;
}
.message-contact h1{
    font-size: 26px;
    font-family: 'Poppins-SemiBold';
    margin-bottom: 2rem;
    text-align: center;
	color: #87cefa;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}
.message-contact h1 span{color: #0086d9;}
.mapbox{
    width: 100%;
    height: 315px;
    overflow: hidden;
}
.mapbox iframe{
    width: 100%;
    height: 100%;
}
.detail-form{
    margin-bottom: 1rem;
}
.detail-form #captcha-refresh{
    cursor: pointer;
    color: #87cefa;
	font-size: 26px;
	vertical-align: middle;
}
.detail-form span{color: #f00;}
.detail-form p{margin-bottom: 0;}
.form-text{
    padding: 8px 15px;
    background: none;
    border: 1px solid #87cefa;
    width: 100%;
    color: #000;
	border-radius: 8px;
}
.form-text:focus{
	outline: none;
	box-shadow: none;border-color: #000;
}
.form-text:active, .form-text:target{border-color: #000;}
.form-text::placeholder{color: #b1b1b1;}
.sendus-btn{
	width: 200px;
    padding: 8px;
    display: block;
    box-shadow: none;
    border: 1px solid #87cefa;
    color: #FFF;
    background: #87cefa;
    margin:.5rem auto;
    cursor: pointer;
    transition: all 0.5s;
	border-radius: 10px;
}
.sendus-btn:hover{
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    background: #000;
    color: #FFF;
	border-color: #000;
	transform: scale(.98);
}
.titlemap-pic p{
	margin: 0;
	background: #87cefa;
	padding: 1rem;
	border-radius: 15px;
	color: #FFF;
	font-size: 24px;
    font-family: 'Poppins-Medium';
}
.titlemap-pic{
	border: 2px solid #87cefa;
	padding: .5rem;
	border-radius: 20px;
	margin-bottom: 2rem;
}
.pic-map{
	overflow: hidden;
	text-align: center;
	border-radius: 20px;
	border: 2px solid #87cefa;
  box-shadow: 3px 7px 7px 0px rgba(0, 0, 0, 0.15);
}

.pic-map img{width: 100%;}

.content-workwearpage, .content-clientspage{padding: 10% 0;}
.vdo-present{
	width: 100%;
	height: 280px;
	overflow: hidden;
	border-radius: 20px;
	margin-top: 3rem;
	box-shadow: 0 0 15pc rgba(0,0,0,0.15);
}
.vdo-present iframe{
	width: 100%;
	height: 100%;
}

.title-sub{
	text-align: center;
	font-size: 24px;
	color: rgb(135, 206, 250);
	text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins-SemiBold';
	margin-bottom: 2rem;
}
.logo-clients{
	padding: .5rem;
	text-align: center;
	margin-bottom: 1rem;
	background: #FFF;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.logo-clients a{display: block;}
.logo-clients img{
	width: 100%;
	transition: all 0.5s;
}
.logo-clients:hover img{transform: scale(.95);}

.content-policypage{padding: 10% 0;}

.title-sub h1{
	font-size: 1.3rem;
	margin: 0;
    font-family: 'Kanit-Medium';
	text-shadow: none;
	color: #000;
}
.title-sub p{
	margin: 0;
	font-size: 1rem;
	text-shadow: none;
}

.text-policy{margin-bottom: 2rem;}
.text-policy h1{
	font-size: 1.2rem;
    font-family: 'Kanit-Medium';
	margin-bottom: 1rem;
}
.text-policy p.text-right{text-align: right;}
.text-policy p{
	text-indent: 3%;
	margin-bottom: 1rem;
}
.text-policy a:hover{color: rgb(135, 206, 250);}
.text-policy ul{
	list-style: none;
	margin: 0;
	padding-left: 1rem;
}
.text-policy span{
    font-family: 'Kanit-Medium';
}

.text-workwear h1{
	color: #87cefa ;
	text-decoration: underline;
	font-size: 24px;
	margin-bottom: .5rem;
    font-family: 'Poppins-SemiBold';
}
.text-workwear p{margin-bottom: 1rem;}

.slide-products{margin-bottom: 2rem;}
#carouselworkwear .carousel-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
#carouselworkwear .carousel-indicators button {
    box-sizing: inherit;
    width: 25%;
    height: 70px;
    padding: 0;
	margin: 0 3px;
    text-indent: 0;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 3px solid transparent;
    opacity: 1;
    transition: all 0.5s;
}
#carouselworkwear .carousel-indicators button:hover, #carouselworkwear .carousel-indicators button.active{
	border-color: #87cefa; 
	box-shadow: 0 0 8px rgba(0,0,0,0.4);
	transform: scale(.95);
}
#carouselworkwear .carousel-indicators {
    position: inherit;
    right: auto;
    bottom: auto;
    left: auto;
    margin: auto;
	justify-content: flex-start;
	margin-top: .5rem;
}
#carouselworkwear .carousel-indicators button img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Underline From Center */
.hvr-underline-from-center {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #87cefa;
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.tabs-category ul.nav-pills#pills-tabtitle li a.hvr-underline-from-center:hover:before, .tabs-category ul.nav-pills#pills-tabtitle li a.hvr-underline-from-center:focus:before, .tabs-category ul.nav-pills#pills-tabtitle li a.active.hvr-underline-from-center:before {
  left: 0;
  right: 0;
}

.tabs-category ul.nav-pills{
	justify-content: center;
}
.tabs-category ul.nav-pills#pills-tabtitle li{
	width: 25%;
	margin: 0 15px;
	font-size: 1.3rem;
}
.tabs-category ul.nav-pills#pills-tabtitle li a{padding: 8px;}
.tabs-category ul.nav-pills#pills-tab li{
	width: auto;
	margin: auto;
}
.tabs-category ul.nav-pills#pills-tab li p{margin: 16px 0 0;}
.tabs-category ul.nav-pills li a{
	text-align: center;
	display: block;
}
.products-box{margin-bottom: 2rem;}
.products-box:hover img{transform: scale(1.05);}
.text-products{
	padding: 1rem 0;
}
.text-products h1{
	font-size: 1.1rem;
	margin-bottom: .5rem;
    font-family: 'Poppins-Medium';
}
.text-products p{
	margin: 0;
    font-family: 'Poppins-Regular';
}
.text-products ul{
	list-style: none;
	padding-left: 0;
}
.img-radius{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	padding: 1rem;
	border: 2px solid #f5ffff;
	background: #f5ffff;
	transition: all 0.5s;
}
.img-radius img{
	width: auto;
	max-width: 100%;
	transition: all 0.6s;
	filter: invert(88%) sepia(27%) saturate(6147%) hue-rotate(180deg) brightness(107%) contrast(104%);
}

.products-box .img-box{
	border-radius: 0;
	aspect-ratio: 3/3;
}
.products-box .img-box img{
	height: 100%;
	object-fit: contain;
}
.products-box .img-box img.product{opacity: 1;}
.products-box .img-box:hover img.product{opacity: 0;}
.products-box .img-box img.hoverproduct{opacity: 0;position: absolute;
top: 0;left: 0;z-index: 1;}
.products-box .img-box:hover img.hoverproduct{opacity: 1;}


.content-products{padding: 10% 0;}

#pills-tabtitle{margin-bottom: 3rem;}
 #pills-tab{margin-bottom: 2rem;}
#pills-tabtitle li a.active{
	color: #87cefa;
}
#pills-tab li .img-radius:hover,
#pills-tab li a.active .img-radius{
	border-color: #87cefa;
}
.img-products  {
    width: 100%;
	position: relative;
    transition: all 0.6s;
}
.img-products img {
    width: 100%;
    transition: all 0.6s;
}

.img-products:hover img{transform: scale(1.05);}
.slideshow-products .slider-nav{
	height: 100%;
	/*padding: .5rem 0;*/
}
.slideshow-products .slider-nav .slick-prev{
	left: 50%;
	top: 0;
	opacity: 1;
	z-index: 1;
	width: 20px;
	height: 20px;
	background: url("../products/images/arrow-left.png") center center no-repeat;
	background-size: 100% !important;
	transform: translate(-50%,0);
	filter: invert(60%) sepia(90%) saturate(459%) hue-rotate(184deg) brightness(116%) contrast(96%);
}
.slideshow-products .slider-nav .slick-next{
	right: 50%;
	top: auto;
	bottom: 0;
	opacity: 1;
	z-index: 1;
	width: 20px;
	height: 20px;
	background: url("../products/images/arrow-next.png") center center no-repeat;
	background-size: 100% !important;
	transform: translate(50%,0);
	filter: invert(60%) sepia(90%) saturate(459%) hue-rotate(184deg) brightness(116%) contrast(96%);
}
.slideshow-products .slider-nav .slick-prev:before, .slideshow-products .slider-nav .slick-next:before{display: none;}
.slideshow-products .slider-nav .img-products{
	aspect-ratio:2/2;
	opacity: .5;
}
.slideshow-products .slider-nav .img-products img{
	aspect-ratio:2/2;
	object-fit: cover;
}
.slideshow-products .slick-slide .img-products  {
    aspect-ratio: 3 / 4;
}

.slideshow-products .slick-slide .img-products img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}
.slideshow-products .slider-nav .slick-slide.slick-current.slick-active .img-products{opacity: 1;}

.redtext{color: #f00;}
.textdetail-products{margin: 2rem auto;}
.textdetail-products h1{
	font-size: 1.4rem;
	margin-bottom: 0;
    font-family: 'Poppins-Medium';
}
.textdetail-products h2{
	font-size: 1.2rem;
	margin-bottom: 0;
    font-family: 'Poppins-Medium';
}
.textdetail-products h3{
	font-size: 1.2rem;
	margin-bottom: .5rem;
    font-family: 'Poppins-Regular';
}
.textdetail-products p{margin-bottom: 1rem;}
.textdetail-products ul{
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 0;
	margin:.5rem 0;
    font-family: 'Poppins-Regular';
}
/* The container */
.colorselect {
	display: block;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
.colorselect input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.colorselect .checkmark {
	/*position: absolute;
	top: 0;
	left: 0;*/
	display: block;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	border: 2px solid transparent;
}
.colorselect.colorblue .checkmark{background-color: #538cd5;}
.colorselect.colorgreen .checkmark{background-color: #31859b;}


/* When the radio button is checked, add a blue background */
.colorselect input:checked ~ .checkmark {
	border-color: #000000;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.colorselect .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.colorselect input:checked ~ .checkmark:after {
  display: block;
}

/* ราคาปกติ */
.nm-price{
	font-size: 14px;
	text-decoration: line-through;
	/* font-weight: bold; */
	color: rgb(151, 151, 151)!important;
}
/* ราคาพิเศษ */
.sp-price{
	font-weight: bold;
	font-size: 16px;
	
}

.addtocart a{
	padding: 8px;
	text-align: center;
	border-radius: 10px;
	background: #538cd5;
	border: 1px solid #538cd5;
	transition: all 0.6s;
    font-family: 'Poppins-Medium';
	color: #FFF;
	display: block;
	width: 180px;
	margin: 2rem 0 0;
}
.addtocart a:hover{
	color: #538cd5;
	background: #FFF;
	transform: scale(.96);
}

.addtocart button {
	padding: 8px;
	text-align: center;
	border-radius: 10px;
	background: #538cd5;
	border: 1px solid #538cd5;
	transition: all 0.6s;
	font-family: 'Poppins-Medium';
	color: #FFF;
	display: block;
	width: 180px;
	margin: 2rem 0 0;
	cursor: pointer;
	font-size: 1rem;
}

.addtocart button:hover {
	color: #538cd5;
	background: #FFF;
	transform: scale(.96);
}


.moredetail-productbox{margin-top: 2rem;}
.moredetail-productbox .nav-pills{
	border: 1px solid #acdfff;
	overflow: hidden;
	border-radius: 10px;
}
.moredetail-productbox .nav-pills li{
	width: 33.33%;
	margin: 0;
}
.moredetail-productbox .nav-pills li button{
	box-shadow: none;
	padding: 7px;
	text-align: center;
	background: #FFF;
	width: 100%;
	border-radius: 10px;
	display: block;
	border: none;
	border-right: 1px solid #acdfff;
}
.moredetail-productbox .nav-pills li:last-child button{border-right: none;}
.moredetail-productbox .nav-pills li button.active{
	background: #538cd5;
	color: #FFF;
	border-right: none;
}
.textmored-box { 
	font-family: 'Kanit-Light';
	padding: 1rem 0;
}
.textmored-box h2{
	font-size: 1.2rem;
	margin: 0;
    font-family: 'Kanit-Medium';
}
/* .textmored-box ul span{font-family: 'Kanit-Medium';} */
.textmored-box p{
	margin-bottom: 1.5rem;
}
.textmored-box ul{
	//list-style: none;
	padding-left: 20px;
	margin: .5rem 0;
}

.textmored-box .fa-circle{
	font-size: 11px;
	margin-right: 10px;
}
.textmored-box ul li{margin-bottom: .5rem;}

.textmored-box ul li strong,
.textmored-box p strong{
	font-family: 'Kanit-Medium';
}

.img-heightbox{
	text-align: center;
	background: url("../register/images/bg-register.png") center bottom no-repeat;
	background-size: cover !important;
}
.img-heightbox img{
	width: 100%;
	transition: all 0.6s;
}
.logo-register{
	text-align: center;
	margin-bottom: 2rem;
}
.logo-register img{width: auto;max-width: 80%;}
.formregister{
	text-align: center;
	padding: 2rem 0;
}
.formregister h1{
	text-transform: uppercase;
	font-size: 1.3rem;
	margin: .5rem auto 2rem;
    font-family: 'Poppins-Medium';
}
.formregister p a{text-decoration: underline;}
.formregister p{
	margin: 2rem auto 0;
}
.login-btn{
	width: 80%;
	margin: 0 auto .5rem;
	border-radius: 8px;
	background: #FFF;
	text-align: center;
	box-shadow: none;
	border: 1px solid #d1d1d1;
	padding: 8px;
	transition: all 0.6s;
}
.login-btn:hover{border-color: #000;}
.login-btn img{
	width: 25px;
	margin-right: 10px;
	transition: all 0.6s;
}

.sizeselect{margin-bottom: 10px;}
.sizetyle{
    color: #070707;
    border-radius: 8px;
    padding: 6px;
    text-align: center;
    transition: all 0.5s;
    background: #FFF;
    border: 1px solid #000;
    width: 100%;
	cursor: pointer;
	margin-bottom: 0;
}
.sizetyle p{color: #000;}
.sizetyle:hover{
	color: #F00;
	border-color: #F00;
}
.sizetyle p{margin: 0;}
.sizetyle:hover p{color: #F00;}
.color-choose input[type='radio'],
.sizeselect input[type='radio']{display: none;}
/*.color-choose input[type='radio']:checked + label ,*/
.sizeselect input[type='radio']:checked + label {color:#F00;border-color: #F00;}
/*.color-choose input[type='radio']:checked + label p,*/
.sizeselect input[type='radio']:checked + label p{color:#F00;}
.sizecharttable{
	width: 100%;
	border-radius: 15px;
	background: #fff;
	overflow-x: auto;
	overflow-y: hidden;
	display: none;
	box-shadow: 0 0 15px rgba(0,0,0,0.15);
}
.sizecharttable table{width: 100%;}
.sizecharttable table th,
.sizecharttable table td{
	vertical-align: top;
	padding: 8px 15px;
	border-bottom: 1px solid #dfdfdf;
}
.sizecharttable table tr:last-child td{border-bottom: none;}
.sizecharttable table th{
	background: #f5f5f5;
	border-bottom: none;
}

.content-profilepage{padding: 10% 0;}
.title-box{text-align: center;margin-bottom: 2rem;}
.title-box h1{
	font-size: 1.6rem;
	margin-bottom: 0;
    font-family: 'Poppins-Medium';
	text-transform: uppercase;
}
.title-box img{
	width: 25px;
	filter: invert(54%) sepia(98%) saturate(1297%) hue-rotate(189deg) brightness(88%) contrast(89%);
}
.title-box h2{
	font-size: 1.2rem;
	margin-bottom: 0;
    font-family: 'Poppins-Regular';
	text-transform: uppercase;
}

.tabsprofile{
	border-radius: 10px;
	border: 1px solid #61cbf4;
}
.tabsprofile ul.nav-pills{
	border-bottom: 1px solid #61cbf4;
	background: #61cbf4;
	overflow: hidden;
	border-radius: 10px;
}
.tabsprofile ul.nav-pills li{
	width: 100%;
	margin: auto;
}
.tabsprofile ul.nav-pills li a{
	display: block;
	text-align: center;
	width: 100%;
	padding: 8px;
	border-radius: 10px;
	color: #FFF;
}
.tabsprofile ul.nav-pills li a:hover,
.tabsprofile ul.nav-pills li a.active{
	background: #538cd5;
}
.tabsprofile ul.nav-pills li:last-child a{border-right: none; }

.formprofile-box{
	padding: 2rem 1rem;
}

.formprofile-box h3{
	font-size: 1.2rem;
	margin-bottom: .5rem;
    font-family: 'Poppins-Regular';
}
.boxform {margin-bottom: 1rem;}
.boxform span{
	color: #FF0000;
	margin-left: 5px;
}
.boxform p{
	margin: 0;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    height: calc(1rem* 1.3* 1);
}

.boxform .inputset{
	border-radius: 8px;
	position: relative;
	border: 1px solid #d0d0d0;
	
	display: flex;
}
.boxform .texttitle-form{
	text-align: right;
	padding-right: 15px;
}
.boxform .texttitle-form.textleft{
	text-align: left;
	padding-right: 0;
	margin-bottom: .3rem;
}
.boxform .row{align-items: center;}
.boxform .imgicon{
	padding: 8px;
	text-align: center;
	border-radius: 8px;
	border-right: 1px solid #d0d0d0;
}
.boxform .imgicon.iconright{
	border-left: 1px solid #d0d0d0;
	border-right: none;
}
.imgicon img{
	width: 20px;
	filter: invert(77%) sepia(18%) saturate(0%) hue-rotate(145deg) brightness(103%) contrast(97%);
}
.form-input{
	width: 100%;
	border-radius: 8px;
	border: none;
	color: #538cd5;
	padding: 8px 15px;
}
.form-input:focus{outline: none;box-shadow: none;}
.form-input::placeholder{color: #d0d0d0;}

.display-none{
	display: none;
}

/* The container */
.taxwrap {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size: .9rem;
}

/* Hide the browser's default radio button */
.taxwrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.taxwrap .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #FFF;
	border-radius: 50%;
	border: 1px solid #000;
}

/* On mouse-over, add a grey background color */
.taxwrap:hover input ~ .checkmark {
	background-color: #87cefa;
}

/* When the radio button is checked, add a blue background */
.taxwrap input:checked ~ .checkmark {
	background-color: #538cd5;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.taxwrap .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.taxwrap input:checked ~ .checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.taxwrap .checkmark:after {
	top: 6px;
	left: 6px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: white;
}

.tablehistory{
	overflow-y: hidden;
	overflow-x: auto;
}
.cart-redius{
	border-radius: 10px;
	border: 1px solid #61cbf4;
	padding: 1rem;
}
.tablehistory table{
	width: 100%;
	min-width: 992px;
}
.cart-redius .tablehistory table th:nth-of-type(1),
.cart-redius .tablehistory table th:nth-of-type(2){width: 15%;}
.cart-redius .tablehistory table td{font-size: .9rem;}

.cart-redius .tablehistory table td a{font-size: .9rem;} 

.cart-redius .tablehistory table th{border-top: none;}
.tablehistory table th{
    font-family: 'Poppins-Regular';
	font-size: 1rem;
	border-top: 1px solid #61cbf4;
}
.tablehistory a:hover{color: #61cbf4;}
.tablehistory p{margin: 0;}
.tablehistory table th,
.tablehistory table td{
	padding: 8px 2px;
	vertical-align: top;
	text-align: center;
	border-bottom: 1px solid #61cbf4;
}
.tablehistory table th:first-child,
.tablehistory table td:first-child{text-align: left;}


.tablehistory img {
    aspect-ratio: 3 / 2;
    width: auto;
    max-width: 100%;
    object-fit: scale-down;
}

.content-cartpage{padding: 10% 0;}
.content-cartpage .title-box{text-align: left;}

.number-input {
    border: none;
    display: inline-flex;
    overflow: hidden;
    color: #000;
}
.number-input .minus-bt {
    color: #000;
    border-right: none;
}
.number-input .plus-bt {
    color: #000;
    border-left:none;
}
.number-input button {
    outline: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0;
    position: relative;
}
.number-input input[type=number] {
    max-width: 40px;
    padding: 0;
    border: none;
    border-width: 0 2px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    color: #000;
    background: none;
}
/*.addquantity.number-input{
	border: 1px solid #d4d4d4;
}*/
.addquantity.number-input input[type=number] {
	max-width: 55px;
	border: 1px solid #d4d4d4;
	border-radius: 27px;
	border-color: #61cbf4;
}
.quantity[type="number"]::-webkit-inner-spin-button,
.quantity[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.quantity[type="number"]:focus{
    outline: none;
    border: none;
    box-shadow: none;
}

.project-box{
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.5s;
}
.project-box h1 {
    font-size: 1rem;
    display: flex;
    width: 100%;
    position: absolute;
    justify-content: left;
    text-align: left;
    z-index: 0;
    left: 0;
    bottom: -5rem;
    color: #2e2e2e;
    z-index: 1;
    transition: all 0.5s;
    margin-bottom: 0;
    padding: 0.5rem 0.75rem;
    background: rgb(255 255 255 / 88%);
} 
.project-box h1 {
	/*bottom: 0;*/
}
.project-box img{
    width: 100%;
    height: 272px;
    object-fit: cover;
    transition: all 0.5s;
}
.project-box:hover img{transform: scale(1.05);}
.project-box:hover{box-shadow: 0 0 10px rgba(0,0,0,0.3);}	


.main-cate {
	list-style:none ;
	text-align:center !important;
}
.main-cate li{
    display: inline-block;
    cursor: pointer;
    font-weight: 300;
	color:#464646;
    text-transform: uppercase;
	padding: 0px 15px;
    /*outline: 1px solid #464646;*/
    margin: 0 1%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.main-cate li.active,
.main-cate li:hover{
    color: #FFF;
    background: #28b9eb;
   /*outline: 1px solid #f5873b;*/
}


.box-main-cate{
	border-bottom: 1px solid #e5e5e5;
	margin-bottom:10px;
}
.box-main-cate-img{
	position: relative;
    overflow: hidden;
    padding-bottom: 75%;
}
.box-main-cate-img img{
	height: auto;
     height: 100%; 
    /*width: 100%;*/
     width: auto; 
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.box-sub{
	font-size:18px;
}
.right{
	/*text-align:right;    */
	float: right;
}
.box-sub2 {
    display: none;
}
.box-sub2.active {
	display:inline-block;
}
.box-sub-cate2 a.active,
.box-sub-cate a.active,
.box-main-cate a.active{
	color:#F60;
}

.cart-redius {margin-bottom: 2rem;}
.cart-redius  h1{
	font-size: 1.3rem;
	margin-bottom: .5rem;
    font-family: 'Poppins-Regular';
}
.cart-redius h2{
	font-size: 1.1rem;
	margin-bottom: 0;
    font-family: 'Poppins-Regular';
}
.cart-redius h2 span{
	font-size: 1rem;
    font-family: 'Poppins-Light';
}
.cart-redius ul{
	list-style: none;
	padding: 0 0 .5rem;
	margin: .5rem 0;
	border-bottom: 1px solid #61cbf4;
}
.cart-redius ul.price-total{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	border-bottom: none;
	margin:1rem 0 0;
	padding: 0;
    font-family: 'Poppins-Regular';
}
.cart-redius ul.text-total li{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.cart-redius ul.text-total li.mt-3 span{text-decoration: underline;}


.addtocart.editpro a{
	background: #61cbf4;
	border-color: #61cbf4;
}
.addtocart.editpro a:hover{
	background: #FFF;
	color: #61cbf4;
}
.buttonset .addtocart a{
	width: 100%;
	margin: auto;
}
.linecolor{
	width: 100%;
	height: 1px;
	background: #61cbf4;
	margin: .5rem auto 1.5rem;
}
.formshipping .texttitle-form p{margin-bottom: .5rem;}
.formshipping .inputset{margin-bottom: .5rem;}
.buttonset{margin-top: 2rem;}

.successbox{
	text-align: center;
}
.successbox img{
	width: auto;
	margin: auto;
	max-width: 100%;
}
.successbox img.linescan{margin: 1rem auto;}
.successbox p{margin-bottom: .5rem;}
.successbox h1{
	font-size: 1.5rem;
	margin: .3rem auto;
	color: #0132a0;
    font-family: 'Poppins-Medium';
}
.successbox h3{
	font-size: 1rem;
    font-family: 'Poppins-Regular';
	margin: 0;
}


.bannerproduct{
	text-align: center;
	padding: 10% 0;
	background: url("../products/images/bg-bannerproducts.png") center center no-repeat;
	background-size: cover !important;
}
.bannerproduct .title-box{
	margin: 0;
}
.bannerproduct .title-box h1{
	font-size: 2.3rem;
	color: #FFF;
}
.bannerproduct .title-box p{
	color: #00ffff;
}
.bannerproduct img{max-width: 100%;}
/*footer--//////////////////////////////////////////////////////////////////////////*/
.policy-box{
    position: fixed;
    bottom: 2%;
    right: 5%;
    width: 300px;
    text-align: left;
    padding: 1rem ;
    color: #000;
    z-index: 5;
    display: block;
    font-size: 18px;	
	background:#FFF;
	box-shadow: 0 0 15px rgba(0,0,0,0.10);
}
.policy-box ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
.policy-box ul li{padding: 0 10px;}
.policy-box p{
    margin-bottom: 0;
    font-size: 20px !important; 
    font-family: 'Poppins-Medium';
}
.policy-box a{color: #000;text-decoration: underline;}
.policy-box a:hover{text-decoration: none;}
.policy-box .btn-policy{
    width: 150px;
    padding: 5px;
    transition: all 0.5s;
    cursor: pointer;
    text-align: center;
    color: #FFF ;
    border-radius: 0;
    margin: .5rem auto;
    border: 1px solid #87cefa;
	background-color: #87cefa;
	display: flex;
    align-items: center;
    justify-content: center;
}
.btn-policy:hover{
	transform: scale(.98);
	background: #FFF;
	color: #87cefa;
	box-shadow: 0 0 15px rgba(0,0,0,.3);
}

.footer {
	color: #000;
	padding:10% 0 20%;
	background:#F5f5f5;
}
.footer ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer a{
	text-decoration: none;
	color: #000;
}
.footer .ic-color{color: #87cefa;margin-right: 5px;}
.footer ul li{padding-bottom: 5px;}
.footer .ic-size{font-size: 18px;margin-right: 10px;}
.footer p{margin-bottom: 1rem;}
.footer h1{
    font-size:20px;
    margin-bottom: 10px;
	text-transform: uppercase;
	font-family: 'Poppins-Regular';
}
.address-footer img, .contact-footer img{filter: brightness(0) invert(1);}
.contact-footer{margin: 1rem 0;}
.footer a:hover{color: #87cefa;}
.copyright-box {
    text-align: center;
    padding: 3% 0 0;
    margin-top: 5%;
    border-top: 1px solid #87cefa;
}
.copyright-box a{
	text-decoration: none;
}
.social-footer{
	text-align: center;
	margin: 1rem auto;
}
.social-footer a{
	display: inline-block;
	margin: 0 ;
}
.social-footer img{
	width: 45px;
	transition: all 0.5s;
	filter: invert(76%) sepia(12%) saturate(1301%) hue-rotate(164deg) brightness(100%) contrast(96%);
}
.social-footer img:hover{
	transform: scale(.95);
	filter: none;
}
.logo-footer img{max-width: 100%;}

/*///////////////////////////////////////////////////////////////////////////pagelist///////////////////////////////////////////////////////////////////////////*/
.pagelist{
	text-align: center;
	padding:1rem 0;
	border-radius:0px;
   /* margin:0 5px 20px 5px;*/
	margin: auto;
   }
   .pagelist li{
	   display:inline-block;
	   font-size:1rem;
	   cursor:pointer;
	   /*padding: 0.3rem 0rem;*/
	   margin: 0.2rem;
	   border:2px solid #777;
	   border-radius: 5px;
   }
   .pagelist li.disabled a,
   .pagelist li.disabled a:hover{
		color:#0e0e0e;
		transition: all 0.4s;
   }
   .pagelist li.disabled a,
   .pagelist li.disabled a:hover{
	   color:#d4d4d4;
   }
   .pagelist li a{
	   color:#777;
	   display:block;
	   padding:0 0.5rem;
	   font-weight:bold;
   }
   .pagelist li a i.fa{
	font-size:1rem;
	vertical-align: middle;
   }
   
   .pagelist>li:first-child>a, .pagelist>li:first-child>span , .pagelist>li:last-child>a, .pagelist>li:last-child>span {
	border-radius:0px;
   }
   .pagelist li.active{
	   background: #87cefa;
	   transition: all 0.4s;
	   border: 2px solid #87cefa;
   }
   .pagelist li a:hover{
	   color: #87cefa ;
	   transition: all 0.4s;
   }
   .pagelist li:hover{
	   border:2px solid #87cefa;
   }
   /*.pagelist li svg { vertical-align: middle; }*/
   .pagelist li svg {    height: 0.8rem; }
   .pagelist li.active a {
	   color: #ffffff;
   }

   .h1text {
	   font-size: 1.3rem;
}

span.incart {
	width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #FFF;
    background: #87cefa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    position: absolute;
    right: 0.7rem;
    top: 0.3rem;
    z-index: 1;
    font-size: 0.7rem;
	font-family: 'Poppins-Regular';
}

.loadpdf-btn a{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.loadpdf-btn img{
	width: 30px;
	margin-left: 5px;
	transition: all 0.5s;
	filter: brightness(0) invert(1);
}
.loadpdf-btn:hover img{transform: translateX(-10px);}
.loadpdf-btn {
    padding: 8px 10px;
    background: #538cd5!important;
    color: #FFF;
	border-radius: 10px;
    text-align: center;
    width: 200px;
    margin: 1rem 0;
	margin-left: auto;

	/* display: block;
    margin-left: auto; */
}
#onload .modal-dialog{ 
  max-width: 100%; /* or a custom value like 80% or 80vw */
  width: 45%; /* Optional: ensures it doesn't get too small on small screens */
}
#onload .modal-header {
    position: absolute;
    border: none !important;
    right: 0;
    z-index: 5;
}

#onload .modal-body img{
   max-width: 100%;
}
#onload .modal-body  {
   padding: 5px !important;
}
 
/*///////////////////////////////////////////////////////////////////////////media///////////////////////////////////////////////////////////////////////////*/
@media (max-width: 920px ) {
	body{max-width: 100% !important;}
	.navbar-collapse{
        position: fixed;
        width: 80%;
		padding: 10% 0;
		background: url("../images/bg-landingpage2.png") bottom center no-repeat #FFF;
		background-size: 100% !important; 
        height: 100% !important;
        max-height: none !important;
        top: 0%;
        display: block;
        left: -100%;
        margin: 0 !important;
        z-index: 55;
        overflow-y: scroll;
        box-shadow: 5px 0px 5px 0px rgba(0, 0, 0, 0.1);
	}
	.navbar-collapse.in{
		left: 0 !important;
	}
	.navbar-collapse.show{
		display:block;
		left: 0 !important;
	}
	.all-container{
		width: 100%;
	}
	.all-container.-collapse{
		/*margin-left: 250px;*/
	}
	.navbar-expand-lg, .navbar-collapse, .navbar-collapse.collapsing, .all-container.all-container.all-container {
		transition: all 0.5s !important;
	}
	.navbar-expand-lg.-collapse {
		/*margin-left: 250px;*/
		width:100%;
	}
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 568px) {}

.navbar-nav li.profilepage .profile-login ul img{
	width: 25px;
	margin-right: 10px;
	filter: brightness(0) invert(1);
}
.profile-login ul{list-style: none;padding: 0;margin: 0;}

.navbar-nav li.profilepage .dropdown-menu{
	min-width: 13rem;
	overflow: hidden;
	transform: none;
	left: auto;
	right: 0;
	padding: 0;
}
.profilepage .dropdown-menu ul li a{
	padding:10px 15px;
	text-align: left;
	color: #FFF;
	justify-content: flex-start;
}
.profilepage .dropdown-menu ul li a:hover{
	color: #87cefa;
	background: #FFF;
}
.profilepage .dropdown-menu ul li a:hover img{
	filter: invert(67%) sepia(35%) saturate(455%) hue-rotate(163deg) brightness(107%) contrast(96%);
}


