.products_container{
max-width:1200px;
margin:auto;
margin-bottom:50px;
display:grid;
grid-template-columns: repeat(3, 1fr);
grid-gap:25px;
}
.product{
border:1px solid #eee;
background-color:#f8f8f8;
transition:1.8s;
}
.product:hover{
-webkit-box-shadow: 0px 0px 13px -3px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 0px 13px -3px rgba(0,0,0,0.2);
box-shadow: 0px 0px 13px -3px rgba(0,0,0,0.2);
}
.product_img{
position:relative;
overflow:hidden;
-webkit-box-shadow: 0px 28px 37px -40px rgba(0,0,0,0.64);
-moz-box-shadow: 0px 28px 37px -40px rgba(0,0,0,0.64);
box-shadow: 0px 28px 37px -40px rgba(0,0,0,0.64);
}
.product_img img {
display:block;
width:100%;
height:300px;
object-fit:cover;
overflow:hidden;
transition: 1.8s;
}
.product:hover img {
-webkit-transform:scale(1.5);
-moz-transform:scale(1.5);
transform:scale(1.5);
}
.product_info{
padding:20px 0;
}
.product_info p{
margin-bottom:15px;
text-align:center;
}
.msb{
display:block;
width:180px;
color: var(--mcolor);
transition: 0.8s;
position: relative;
padding:17px 20px;
text-align:center;
background-color:transparent;
text-transform:uppercase;
font-size:13px;
letter-spacing:1px;
outline:none;
cursor:pointer;
border:1px solid var(--mcolor);
z-index: 0;
transition:0.5s ease-in;
}
.msb::before{
width:0;
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: auto;
background-color:var(--mcolor);
transition:0.5s ease-in;
z-index:-1;
}
.msb:hover{
color:#fff;
}
.msb:hover::before {
width:100%;
}
.novelty{
position:absolute;
top:5px;
right:0;
padding:5px 10px;
font-size:14px;
background-color:rgba(183, 226, 2, 0.8);
color:#fff;
text-align:center;
z-index:5;
}
.nexists{
position:absolute;
bottom:5px;
right:0;
padding:5px 10px;
font-size:14px;
background-color:rgba(226, 44, 2, 0.8);
color:#fff;
text-align:center;
z-index:5;
}
.p_info{
max-width:1300px;
margin:30px auto;
display:grid;
grid-template-columns: 50% auto;
grid-gap:50px;
}
.pdescr{
line-height:1.5;
font-size:15px;
}
.pdescr h1{
font-size:28px;
text-transform:uppercase;
padding:0;
margin:0;
margin-bottom:20px;
color:var(--color);
font-weight:normal;
}
.pimage img{
width:100%;
height:100%;
}
.arrc{
width:120px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
grid-gap:20px;
padding:15px;
}
.arrc img{
width:35px;
height:35px;
cursor:pointer;
}
.i_title{
text-align:center;
margin:25px 0;
font-size:19px;
background-color:var(--scolor);
color:#fff;
padding:5px
}
/* Breadcrumbs */
.breadcrumbs {
max-width:1300px;
margin:auto;
margin-top:15px;
text-align:right;
}
.breadcrumbs ul {
list-style: none;
display: inline-table;
padding:0;
}
.breadcrumbs ul li a{
color: var(--mcolor);
display:block;
margin-right:10px;
line-height:1.5;
}
.breadcrumbs ul li a:after{
content:"";
display: inline-block;
margin-left:10px;
width: 0;
height: 0;
border-style: solid;
border-width: 5px 0 5px 10px;
border-color: transparent transparent transparent var(--scolor);
}
.breadcrumbs ul li:last-child>a:after{
content:"";
border :transparent;
}
.breadcrumbs ul li  {
display: block;
float: left;
height: 25px;
text-align: center;
padding: 5p;
position: relative;
margin: 0 4px 4px 0; 
font-size: 15px;
text-decoration: none;
letter-spacing:1px;
}
.breadcrumbs ul li img {
width:19px;
height:19px;
}
/* Drop down */
.pc {
position:relative;
text-align:center;
width:300px;
margin:auto;
margin-top:30px;
margin-bottom:30px;
}
.dropbtn{
text-transform:uppercase;
font-size:16px;
padding:15px;
text-align:center;
width:300px;
margin:auto;
background-color: var(--mcolor);
cursor:pointer;
color:#fff;
}
.dropbtn img{
width:17px;
margin-left:10px;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: var(--mcolor);
width: 300px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
top:50px;
animation-name: ms-menu-moveup;	
animation-duration: .6s;
}
.pc .dropdown-content a {
color: #fff;
padding: 15px 5px;
text-decoration: none;
display: block;
text-align:center;
}
.dropdown-content a:hover {
color: var(--scolor);
background-color:#fff;
}
.csearch{
position:relative;
max-width:500px;
margin:30px auto;
}
.csearch form{
width:100%;
}
.csearch p{
position:absolute;
display:none;
width:calc(100% - 2px);
margin:0;
z-index:8;
max-height:300px;
overflow-y: auto;
overflow-x: hidden;
background-color:rgba(255,255,255,0.98);
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
border:1px solid #ddd;
top:41px;
}
.csearch p span{
display:block;
padding:5px 15px;
color:red;
font-size:14px;
}
.csearch a{
color: var(--mcolor);
font-size:12px;
}
.csearch div{
display:flex;
align-items:center;   
padding:5px 10px; 
border-bottom:1px solid #ddd;
}
.csearch div:last-child{
border-bottom:none;	
}
.csearch div:hover{
background-color:var(--mcolor);
}
.csearch div:hover a{
color:#fff!important;
}
.csearch div img{
height:65px;
margin-right:20px;
}
.csearch div a em{
color:var(--scolor);    
}
.lq{
width: 100%;
padding:15px;
font-size:18px;
border:1px solid #ddd;
background-color:#fff;
box-sizing:border-box;
outline:none;
}
.lq:focus{
background-color: #f1f1f1;
border:1px solid var(--scolor);
}
/* .clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix { display: inline-block; }
.clearfix { display: block; zoom: 1; } */
@media screen and (max-width: 1300px) {
	.p_info, .breadcrumbs{
	width:95%;
	}
}
@media screen and (max-width: 1100px) {
    .products_container{
    width:95%;
    }
}
@media screen and (max-width: 800px) {
    .products_container{
    grid-template-columns: 1fr 1fr;
    }
	.p_info{
	grid-template-columns: 100%;
	margin-top:0;
	}
}
@media screen and (max-width: 700px) {
	.pimage{
	width:100%;
	float:none;
	margin-right:0;
	}
	.pdescr{
	width:100%;
	float:none;
	}
	.pdescr h1{
	text-align:center;
	}
}
@media screen and (max-width: 500px) {
    .products_container{
    grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 450px) {
	.pdescr {
	font-size: 13px;
	}
	.pdescr h1 {
	font-size: 21px;
	}
}

