* {
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}
/*-------------PRODUCT---------------*/
.services {
	width: 100%;
	text-align: center;
	line-height: 28px;
	font-size: 1.2rem;
	padding: 10px 5px;
}
.services h1, .services h3 {
	font-weight: bold;
	padding: 10px 10px;
}
/*-----------------ANIMATION - PRODUCT FARMROBOT------------------*/
ul {
	list-style:none;	
}
.boxes{
	width:380px;
	height:445px;
	background-color:#fff;
	border-radius: 10px;
	box-shadow: 2px 10px 12px rgba(0,0,0,0.5);
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	margin: 20px 4px;
	position: relative;
	top: 0;
	left: 0px;
}
.boxes p {
	padding: 15px;
	text-align: justify;
	line-height: 22px;
	font-size: 1.13rem;
}
.robotpics{
	max-height: 100%;
	max-width: 100%;
	border-radius: 6px;
}
.boxes:hover {
	background-color: #fff;
	transform-style: preserve-3d;
	transform: scale(0.95);
	transition: all ease 0.3s;
}
@media screen and (max-width:400px){ /*--responsive for small mobile--*/
	.boxes{
		width:350px;
	}
}
@media screen and (max-width:320px){
	.boxes{
		width:315px;
	}
}
