.ps_usage {
	display: flex;
	margin-left: 260px;
	flex-wrap: wrap;
	width:100%;
}
.ps_usage_item {
	width: 31%;
    position: relative;
    background: #fff;
    margin: 0 2.3% 17px 0;
}
.ps_usage_item > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}
.ps_usage_item_image {
	width: 100%;
	height: 230px;
	position:relative;
	overflow:hidden;
	margin-bottom: 10px;
}
.ps_usage_item_image div{
	position:absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	transition:1s;
}
.ps_usage_item:hover .ps_usage_item_image div{
	transform:scale(1.1);
}
.ps_usage_item_title {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 5px;
	padding: 0 10px;
}
.ps_usage_item_text {
	font-size: 14px;
	padding: 0 10px 10px;
}

.only_mobile .ps_usage {
	display: flex;
	justify-content: center;
	flex-wrap:wrap;
	margin-left:0;
}
.only_mobile .ps_usage_item {
	width: 90vw;
	height:100vh;
	position: relative;
	background: #fff;
}
.only_mobile .ps_usage_item_image {
	width: 100%;
	height: 80vh;
	position:relative;
	overflow:hidden;
	margin-bottom: 10px;
}
.only_mobile .ps_usage_item_image div{
	position:absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	transition:0s;
}
.only_mobile .ps_usage_item:hover .ps_usage_item_image div{
	transform:scale(1);
}
.only_mobile .ps_usage_item_title {
	font-size: 20px;
	margin-bottom: 5px;
	padding: 0;
}
.only_mobile .ps_usage_item_text {
	font-size: 16px;
	padding: 0 0 10px;
}
.only_mobile{
	display:none
}
@media (min-width: 767px) and (max-width: 1023px){
.ps_usage {
	margin-left:15px;
}
}
@media screen and (max-width:767px){
	.only_mobile{
		display:block;
	}
	.only_desktop{
		display:none !important
	}
}