/*
  Simple Grid
  Learn More - http://dallasbass.com/simple-grid-a-lightweight-responsive-css-grid/
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - dallasbass.com
*/
*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

[class*='cell-'] {
    float: left;
}
img{
	max-width:100%;	
}
.grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.grid-no-overflow-hiden{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.grid:after {
    content: "";
    display: table;
    clear: both;
}
.grid-pad {
    padding-top: 0px;
    padding-left: 10px; /* grid-space to left */
    padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}
.push-right {
    float: right;
}
.padding-top-0
{
    padding-top:0
}
.padding-top-5
{
    padding-top:5px
}
.padding-top-10
{
    padding-top:10px
}
.padding-top-20
{
    padding-top:20px
}
.padding-0
{
    padding:0
}
.padding-right-0{
    padding-right: 0px;
}
.padding-right-10{
    padding-right: 10px;
}
.padding-left-0{
    padding-left: 0px;
}
.padding-left-10{
    padding-left: 10px;
}

.pc-break{
    display: block;
}
.pad-break{
    display: none;
}
.tab-break{
    display: none;
}
.mobile-break{
    display: none;	
}
.hide-on-pc {
    display: none;
}
.flex-container {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
    width:100%;
    justify-content:space-between /* space-around;*/
}
.flex-container-round {
    justify-content:space-around;
}
.flex-space-between {
    justify-content:space-between;
}
.flex-end{
	justify-content:flex-end;
}
.flex-start{
	justify-content:flex-start;
}
.border-flex{
    border:solid 1px #e4e4e4;	
    border-right:none;
    border-bottom:none;
}
.flex-nowrap{
	flex-wrap: nowrap;
}
.cell-1-5{
    width:19%;
    float:left;
}
.cell-5-6{
    width:83%;
}

.cell-1-6{
    width:16%;
    float:left;
}
.cell-2-5{
    width:39%;
}

.cell-3-5{
    width:60%;
}
.cell-4-5{
    width:80%;	
}
.cell-1-3{
    float:left;
    width:31%;
}
.cell-2-3{
    float:left;
    width:66.66%;
}
.cell-1-4{
    float:left;
    width:23%;
}
.cell-2-4{
    float:left;
    width:50%;
}
.cell-3-4{
    float:left;
    width:74%;
}
.cell-1-2{
    width:48%;
    float:left;
}
.cell-1-2-no-pad{
	width:50%;	
}
.cell-pro-1-3{
    width: 32%;
    
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.cell-pro-line{
    width: 100%;
    border-bottom: solid 1px #CCC; 
}
.cell-1-6{
	width:15.66%;
}

/*
.cell-pro-1-3:nth-child(3n){
    padding-right: 20px;
}
.cell-pro-1-3:nth-child(3n+1){
    padding-right: 0px;
    padding-left: 20px;
}
*/
.cell-home-1-3{
    float:left;
    width:32%;
}
.cell-home-2-3{
    float:left;
    width:65%;
}
.cell-home-1-4{
    float:left;
    width:22%;
}
.cell-home-1-5{
    float:left;
    width:15%;
}
.cell-1-1{
	width:100%;	
}
.cell-1-10{
    width:10%;
}
.cell-2-10{
    width:19%;
}
.cell-3-10{
    width:28.5%;
}
.cell-4-10{
    width:38%;
}
.cell-5-10{
    width:47.5%;
}
.cell-6-10{
    width:57%;
}
.cell-7-10{
    width:68%;
}
.cell-8-10{
    width:78%;
}
.cell-9-10{
    width:88%;
}
.cell-1-12{
    width:8.33%;
}
.cell-2-12{
    width:16.66%;
}
.cell-3-12{
    width:25%;
}
.cell-4-12{
    width:33%;
}
.cell-5-12{
    width:41%;
}
.cell-6-12{
    width:50%;
}
.cell-7-12{
    width:56%;
}
.cell-8-12{
    width:66%;
}
.cell-9-12{
    width:74%;
}
.cell-10-12{
    width:83%;
}
.cell-11-12{
    width:91%;
}
.cell-news-1-3{
    width: 32%;
}
.cell-news-2-3{
    width: 65%;
}
.padding-left20{
    padding-left:20px;		
}
.margin-bottom-30{
    margin-bottom:30px;	
}
.cell-btn-cart{
    width:60%;
    margin-right:10px;
}
.cell-btn-contact{
    width:35%;
}
.home-padding-30{
    padding: 0px 30px;
}    
.home-padding-40{
    padding: 0px 40px;
}    
.head-cell-1-2{
	width:calc(50% - 85px);
}
.logo-circle{
	width:170px;
	height:170px;
	position:relative;
}
.logo-circle .lg{
	-webkit-border-radius:50%;
	border-radius:50%;
	background:#FFF;	
	position:absolute;
	width:170px;
	height:170px;
	z-index:9;
	box-shadow:2px 2px 3px #ccc;
	overflow:hidden;
	top:10px;
}
.hotline-mobile-top{
	display:none;
	line-height:40px;
	color:#FFF;	
}
.hotline-mobile-top a{
	color:#FFF;	
}
.box-serivce-home{
	width:calc(20% - 1px);
	position:relative;
}
.left-page{
	width:74%;	
}
.right-page{
	width:24%;
}

@media handheld, only screen and (max-width: 1280px) {
	.arrow-right-home{
		right:0px;
	}
	.arrow-left-home{
		
		left:0px;
	}
	 .grid {
        
 
        min-width: 0;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 10px; 
        padding-right: 10px;
        margin: 0 auto;
    }
}
@media handheld, only screen and (max-width: 1115px) {
	
	
    .menu-mobile-fix{
        display:block;	
    }
    .mobile-col-1-2{
        width:33.33%;	
    }
    
    .box-support-right .item-phone{
        font-size: 12px;
    }
    .box-support-right .item-email{
        font-size: 12px;
    }    
}
@media handheld, only screen and (max-width: 967px) {
    
    .grid {
        
        max-width: 900px;
        min-width: 0;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 10px; 
        padding-right: 10px;
        margin: 0 auto;
    }
    
    .fil-item{
        width:100%;	
    }
    .box-filter .box-content-fillter{
        height: auto;
    }
    .pad-cell-1-1{
        float:left;
        width:100%;
    }       
    .pad-cell-1-2{
        float:left;
        width:48%;
    }
    .pad-cell-1-3{
        float:left;
        width:30%;
    }
    .pad-cell-1-4{
        float:left;
        width:22%;
    }
    .hide-on-pc{
        display: block; 
    } 
    
    .hide-on-pad {
        display: none;
    }
    
   
  	.header{
		display:none;	
	}
	.menubar
	{
		display:none
	}
	.header-mobile{
		display:block;	
	}
	.b-search-mobile{
		display:block;	
	}
    .box-serivce-home{
		width:calc(33.33% - 1px);	
		margin-bottom:45px;
	}
	.pro-detail-right
	{
		margin-top:15px;
	}
/*end pad s*/
    
}
@media handheld, only screen and (max-width: 700px) {
    
    .grid {
        
        max-width: 600px;
        min-width: 0;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 10px; 
        padding-right: 10px;
        margin: 0 auto;
    }
    .hide-on-pc{
        display: block; 
    }
    .hide-on-pad {
        display: block; 
    }
    .hide-on-tab {
        display: none;
    }
    .tab-mobile{
        display: block;
    }
    .pc-paddingright-15{
        padding-right: 0px;
    }
    .pc-break{
        display: none;
    }
    .pad-break {
        display: none;
    }
    .tab-break{
        display: block;
    }
    .mobile-break{
        display:none;	
    }    
    .tab-cell-pro-1-2{
        float: left;
        width: 50%;
    }
    .tab-cell-1-1{
        float:left;
        width:100%;
    }    
    .tab-cell-1-2{
        float:left;
        width:48%;
    }
    .tab-cell-1-3{
        float:left;
        width:30%;
    }
    .tab-cell-1-4{
        float:left;
        width:22%;
    }    
    
    .tab-cell-1-5{
        float:left;
        width:18%;
    }        
    .tab-cell-7-12{
        float:left;
        width:55%;
    }        
    .tab-cell-5-12{
        float:left;
        width:42%;
    }        
    .tab-col-1-4 {
        width: 25%;
    }
    .tab-col-3-4 {
        width: 75%;
    }
    .tab-col-1-1 {
        width: 100%;
    }
    .tab-col-2-3, .tab-col-8-12 {
        width: 66.66%;
    }
    .tab-col-1-2, .tab-col-6-12 {
        width: 50%;
    }
    .tab-col-1-3, .tab-col-4-12{
        width:33.33%;	
    }
	
    .tab-col-1-12{
        width:8.33%;	
    }
    
    .tab-col-2-12{
        width:16.66%;	
    }
    
    .tab-col-3-12{
        width:25%;	
    }
    
    .tab-col-7-12{
        width:58.3%;	
    }	
    .tablet-padding-0{
        padding: 0px;
    }
    .tablet-right-0{
        padding-right: 0px;
    }    
    .tablet-left-0{
        padding-left:0px;
    }
    .tablet-right-10{
        padding-right: 10px;
    }    
    .tablet-left-10{
        padding-left:10px;
    }    
	.tablet-padding-10{
        padding: 10px;
    }
    .cathome-title{
        font-size: 20px;
        line-height: 38px;
    }
    .info-home-title{
        font-size: 20px;
        line-height: 30px;
    }
    .title-cat-home{
        margin: 0 auto;
        float: none;
        width: fit-content;
        font-size: 20px;
        line-height: 34px;
		font-size:24px;
    }
    
    .line-title{
        width: 100%;
        line-height: 25px;
    }
    
    .line-frm{
        width: 100%;
    }
    .frm{
        padding: 20px;
    }
    .hotline-mobile-top{
		display:block;	
	}
	.title-slide{
		font-size:20px;	
	}
	.slide-description{
		font-size:14px;
		padding:10px;
	}
	.box-serivce-home{
		width:calc(50% - 1px);
		margin-bottom:45px;	
	}
	.box-info-home{
		background-image:none;	
	}  
	.item-trust-pro
	{
		margin-bottom:10px;
	}
	.item-line:nth-child(2n+1) .col-1
	{
		width:100%;
	}
	.item-line:nth-child(2n+1) .col-2 {
		width:100%;
	}
	.item-line .col-1
	{
		width:100%;
	}
	.item-line .col-2
	{
		width:100%;
	}
/* end tab s  */
}
@media handheld, only screen and (max-width: 579px) {
    .grid {
        
        max-width: 420px;
        min-width: 0;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 10px; 
        padding-right: 10px;
        margin: 0 auto;
    }
    .bg-page{
        max-width: 420px !important;
    }
    
   
    [class*='mobile-col-'] {
        float: left;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 10px;
        padding-left: 0px;
        padding-right: 10px; 
        padding-bottom: 0px;
    }
    .hide-on-pc{
        display: block; 
    }
    .hide-on-pad {
        display: block; 
    }
    .hide-on-tab {
        display: block; 
    }
    .hide-on-mobile {
        display: none !important;
    }    
    .pc-break{
        display: none;
    }
    .pad-break {
        display: none;
    }
    .tab-break{
        display:none;	
    }
    .mobile-break{
        display:block;	
    }
    .mobile-cell-1-1{
        float:left;
        width:100%;
    }        
    .mobile-cell-1-2{
        float:left;
        width:48%;
    }
    .mobile-cell-1-3{
        float:left;
        width:32%;
    }
    .mobile-cell-2-3{
        float:left;
        width:62%;
    }
    .mobile-col-1-1 {
        width: 100%;
        /*padding-right:10px;*/
        padding-left: 10px;
    }
    .mobile-col-2-3, .mobile-col-8-12 {
        width: 66.66%;
    }
    .mobile-col-1-2, .mobile-col-6-12 {
        width: 50%;
    }
    .mobile-col-1-2:last-of-type{
        padding-right:0px;
        padding-left:10px;
    }
    .mobile-col-1-3, .mobile-col-4-12{
        width:33.33%;	
    } 
	
	.tablet-padding-0{
        padding: 0px;
    }
    .tablet-right-0{
        padding-right: 0px;
    }    
    .tablet-left-0{
        padding-left:0px;
    }
    
	.tablet-padding-10{
        padding: 10px;
    }
    .tablet-right-10{
        padding-right: 10px;
    }    
    .tablet-left-10{
        padding-left:10px;
    }    
    
    .mobile-right-10{
        padding-right: 10px;
    }    
    .mobile-left-10{
        padding-left:10px;
    } 
    .mobile-padding-10{
        padding: 10px;
    }    
	
	.mobile-padding-0{
        padding: 0px;
    }    
    .slide-text-box{
        width:100%;
        padding:10px;
    }
    .video-home .cell-home-1-4{
        display: none;
    }    
    .video-home .cell-home-1-4:first-child{
        display: block;
    }
    
    .title-home-mobile{
        display: block;
        width: 100%;
        border-bottom: solid 1px #DDD;
        padding: 10px 0px;
    }
    .video-home h5:first-of-type{
        display: none;
    }    
    .news-home .cell-home-1-4{
        display: none;
    }    
    .news-home .cell-home-1-4:first-child{
        display: block;
    }    
    .news-home h5:first-of-type{
        display: none;
    }   
	
	.menu-mobile{
        float: right;
        margin-top: 10px;
    }
	.title-page{
		font-size:21px;
	}
	
	.paging a{
		padding: 6px 5px;
		margin-right: 3px;
	}
	.hotline-mobile-top{
		display:block;	
	}
	.title-slide{
		font-size:20px;	
	}
	.slide-description{
		font-size:14px;
		padding:10px;	
	}
	.box-serivce-home{
		width:calc(50% - 1px);	
		margin-bottom:45px;
	}
	.mobile-text-line-3 {
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}  
	.box-info-home{
		background-image:none;	
	}  
	.cell-poeple-info
	{
		width:100%;
	}
	.cell-poeple-info:nth-child(2n+1)
	{
		margin-bottom:40px;
	}
	.cell-poeple-info:nth-child(2n)
	{
		margin-top:0;
		margin-bottom:40px;
	}
	.cell-poeple-info:nth-child(2n)::after
	{
		display:none;
	}
	.cell-poeple-info .year
	{
		display:none
	}
	
	.cell-poeple-info:nth-child(2n+1)::after
	{
		display:none;
	}
	.flex-poeple::after
	{
		display:none;
	}
	.bg-footer::before
	{
		left:100px;
	}
	.linksmo a i.fa
	{
		width:20px;
	}
}
