@charset "utf-8";
/* CSS Document */


body {
	background-image: url("images/bg.png");
	margin: 0px;
	padding: 0px;
	font-family: calibri;

}

a {
	text-decoration: none;
}

.services {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}

.services img {
	width: 75%;
}



.s-heading {
	text-align: center;
}

.s-heading h1 {
	color: #FFFFFF;
	font-size: 3rem;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0px;
}

.s-heading p {
	color: #FFFFFF;
	font-size: 1rem;
	margin: 5px;
	text-align: center;
}

.s-box-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.s-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	width: 300px;
	padding: 20px 25px;
	height: 400px;
	box-sizing: border-box;
	margin: 30px;
	position: relative;
	box-shadow: 2px 2px 30px rgba(0, 165, 79, 0.50);
}

.s-box img {
	height: 100%;
}

.s-box h1 {
	color: #ffffff;
	letter-spacing: 1px;
	font-size: 1.5rem;
	margin-bottom: 8px;

}

.s-box p {
	color: #ffffff;
	text-align: center;
}

.s-btn {
	width: 140px;
	height: 40px;
	border-radius: 20px;

	border: 1px solid rgba(0, 165, 79, 0.50);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	margin-top: 10px;

}

.s-box:hover {
	box-shadow: 2px 2px 30px rgba(0, 165, 79, 0.50);
	transition: all ease 0.3s;
}

.s-btn:hover {
	background-color: #00a54f;
	border: 1px solid #00a54f;
	color: #FFFFFF;
	transition: all ease 0.3s;
}

.s-box:hover .bar {
	display: block;
}

@keyframes bar {
	0% {
		width: 0px;
	}

	100% {
		width: 100px;
	}
}

@media(max-width:1050px) {
	.s-box-container {
		flex-wrap: wrap;

	}

	.services {
		height: auto;
	}

	.s-heading {
		margin: 15px;
	}

	.s-box {
		flex-grow: 1;
	}

}