/****************************/
/******** sensor style ********/
/****************************/

.sensor_type {
	position: relative;
	border: 1px solid #dedede;
	text-align: center;
	padding: 30px 15px;
	transition: all .3s ease;
}
.sensor_type:hover {
	box-shadow: 0 10px 20px rgb(0 0 0 / 18%);
	transition: all .3s ease;
}
.sensor_type > span {
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 2rem;
}
.sensor_type img {
	margin-bottom: 30px;
	width: 30%;
}
.sensor_type h3 {
	font-size: 14px;
	font-weight: 700;
}
.sensor_type:hover .sensor_desc {
	opacity: 1;
	transition: all .25s ease;
	overflow: hidden;
}
.sensor_desc {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.8);
	color: #fff;
	padding: 30px;
	text-align: left;
	opacity: 0;
	transition: all .25s ease;
}
.sensor_desc h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 15px;
}
.sensor_desc p {
	font-size: 13px;
	line-height: 1.8;
	word-break: break-word;
	text-align: left;
}
.sensor_more {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	font-weight: 500;
	height: 100%;
}