* {
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}
/*-------------SERVICES---------------*/
.services {
	width: 100%;
	text-align: center;
	line-height: 28px;
	font-size: 1.2rem;
	padding: 20px 5px;
}
.services h1 {
	font-weight: bold;
	padding: 20px 10px;
}
.services ul{
	list-style: none;
	display: inline-flex;
}
.services ul li {
	width: 280px;
	margin: 15px;
	padding: 10px;
}
.services ul li:hover {
	transition: 0.4s;
	transform: scale(1.02);
}
.services ul li img{
	width: 45%;
}
@media screen and (max-width:800px) {
	.services {
		width: 100%;
	}
	.services ul li {
		width: 47%;
		margin: 3px;
	}
	.services ul li img{
		width: 60%;
	}
}
@media screen and (max-width:600px) {
	.services ul{
		display: flex;
		flex-wrap: wrap;
	}
	.services ul li {
		width: 100%;
		margin: 3px;
	}
	.services ul li img{
		width: 50%;
	}
}

.services-2 {
	width: 90%;
	min-height: 60vh;
	margin-left: 5%;
	text-align: center;
	border-radius: 6px;
	padding: 20px 5px;
	background-color: #fff0e6;
}
.services-2 img {
	width: 45%;
	float: left;
}
.services-2 p {
	width: 55%;
	float: right;
	text-align: left;
	padding: 2px 10px;
	line-height: 26px;
	font-size: 17px;
}
.services-2 p i {
	color: #e65c00;
	font-size: 19px;
}

@media screen and (max-width: 1024px) {
	.services-2 {
		width: 98%;
		min-height: 28vh;
		margin-left: 1%;
	}
}
@media screen and (max-width: 800px) {
	.services-2 {
		min-height: 38vh;
	}
}
@media screen and (max-width: 600px) {
	.services-2 {
		min-height: 92vh;
	}
	.services-2 img {
		width: 100%;
	}
	.services-2 p {
		width: 100%;
	}
}
@media screen and (max-width: 400px) {
	.services-2 {
		min-height: 110vh;
	}
}
@media screen and (max-width: 320px) {
	.services-2 {
		min-height: 130vh;
	}
}

.knowMoreButton {
	width: 100%;
	height: auto;
}
.knowMoreButton a {
	text-decoration: none;
	background-color: #ff8533;
	color: #000;
	font-weight: bold;
	padding: 10px 30px;
	border-radius: 6px;
	position: relative;
	top: -7px;
}
.knowMoreButton a:hover {
	background-color: #e65c00;
}
@media screen and (max-width: 1024px) {
	.knowMoreButton a {
		left: 42.5%;
	}
}
@media screen and (max-width: 600px) {
	.knowMoreButton a {
		left: 30%;
	}
}