@font-face {
  font-family: 'Impact';
  src: url('../fonts/Impact.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}

body {
	background: #194E9B;
	color: #7f8db0;
}


.box {
	display: flex;
	width: 950px;
	margin: 140px auto;
}

.single-box {
	width: 300px;
	background: #fff;
	margin-right: 20px;
	padding: 25px;
	text-align: center;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	position: relative;
}
.single-box:hover {
  transform: scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 8px 15px;
}


.single-box:last-child {
	margin-right: 0;
}

.single-box .img img {
	width: 200px;
	margin-bottom: 10px;
}

.single-box .price {
	font-weight: 600;
	font-size: 45px;
}

.img {
	position: absolute;
	top: -25%;
	left: 50;
}

.single-box h3 {
    font-family: 'Impact', sans-serif;
	color: #078838;
	margin-top: 25%;
	margin-bottom: 15px;
}

.single-box p {
    font-family: 'Avenir Next', sans-serif;
	line-height: 1.5;
	font:bold;
	color:black;
	margin-bottom: 50px;
}

.single-box a {
        font-family: 'Avenir', sans-serif;
	 
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #078838;
  color: #F6A723;
  text-decoration: none;
  border-radius: 50px;
  padding: 10px 20px;
 
}

@media(max-width:991px) {
	.box {
		width: 100%;
	}
}

@media (max-width:767px) {
	.box {
		width: 100%;
		flex-direction: column;
	}

	.single-box {
		margin-right: 0;
		width: 100%;
		margin-bottom: 110px;
		position: relative;
	}
}
