.dietKits {
	width: 100%;
	min-height: 100vh;
	padding: 50px 0 10px 0;
	background-color: lightyellow;
}
.dietKits h1 {
	text-align: center;
	font-weight: bold;
}

/*--------------INTRO - DIET KITS------------*/
.dietKitsIntro {
	width: 90%;
	min-height: 80vh;
	margin-left: 5%;
	padding: 30px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.circle1, .circle2, .circle3 {
	width: 30%;
	height: 350px;
	padding: 30px;
	display: flex;
	float: left;
	flex-wrap: wrap;
	align-items: center;
	border-radius: 50%;
	box-shadow: 8px 8px 5px 0px rgba(0,0,0,0.7);
	transition: 0.5s;
}
.circle1:hover, .circle2:hover, .circle3:hover {
	transform: scale(1.1);
}
.circle1 {
	background: #80ff80;
	margin-right: 20px;
} 
.circle2 {
	background: #80ffff;
} 
.circle3 {
	background: #c6ff1a;
	margin-left: 20px;
}
.circle1 p, .circle2 p, .circle3 p {
	text-align: center;
	line-height: 32px;
	font-size: 16px;
}
.circle1 p::first-letter, .circle2 p::first-letter, .circle3 p::first-letter {
	font-family: 'Tangerine', cursive;
	font-weight: bold;
	font-size: 46px;
}
@media screen and (max-width: 1024px) {	/*---IPADPRO & IPAD---*/ 
	.dietKitsIntro {
		min-height: 35vh;
	}
}
@media screen and (max-width: 600px) { /*---MOBILE SCREENS---*/ 
	.circle1, .circle2, .circle3 {
		width: 100%;
		height: 330px;
		margin-right: 0px;
		margin-left: 0px;
	}
}

/*--------------ANIMATION BOXES - DIET KITS------------*/
.dietKitsHead h2 {
	width: 92%;
	margin-left: 4%;
	text-align: center;
	font-weight: bold;
	padding: 20px;
	background-color: #ffbb99;
}
.dietKitsBoxes {
	width: 100%;
	margin: 1% auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.box {
	position: relative;
	width: 45%;
	height: auto;
	background: #fff;
	margin: 10px;
	display: inline-block;
}
.dietKitsBoxes .box .img-box {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.box h3 {
	text-align: center;
	color: #000;
	font-weight: bold;
	padding: 5px;
}
.dietKitsBoxes .box .img-box img {
	max-width: 100%;
	transition: transform 2s;
}
.dietKitsBoxes .box:hover .img-box img {
	transform: scale(1.1);
}
.img-box i {
	width: 50px;
	height: 50px;
	font-size: 30px;
	color: #111111;
	background: rgba(255,255,255,0.6);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 40%;
	left: 44%;
}
.box .details {
	position: absolute;
	top: 40px; left: 10px; bottom: 10px; right: 10px;
	overflow: hidden;
	background: rgba(0, 0, 0, .6);
	transform: scaleY(0);
	transition: transform .5s;
	border-radius: 10px;
}
.box:hover .details {
	transform: scaleY(1);
}
.box:hover .img-box i {
	display: none;
}
.details .content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: justify;
	padding: 6px;
}
.content p {
	margin: 10px 0 0;
	padding: 0;
	color: #fff;
	line-height: 26px;
	font-size: 16px;
}
@media screen and (max-width: 786px) {
	.dietKitsBoxes .box {
		width: 364px;
		height: auto;
	}
	.content p {
		line-height: 23px;
		font-size: 12px;
	}
}

/*--------------BUTTONS - GET HELP NOW------------*/
.dietKitsButton {
	width: 150px;
	height: 30px;
	border-radius: 8px;
	padding: 5px 10px;
	background-color: #66e0ff;
	position: relative;
	left: 38%;
	bottom: 0%;
	text-align: center;
}
.dietKitsButton:hover {
	background-color: #ffbb99;
}
.dietKitsButton a {
	text-decoration: none;
	font-size: 16px;
}
@media screen and (max-width: 1024px) {
	.dietKitsButton {
		left: 33%;
	}
}
@media screen and (max-width: 800px) {
	.dietKitsButton {
		left: 28%;
	}
}
@media screen and (max-width: 600px) {
	.dietKitsButton {
		width: 120px;
		height: 20px;
		padding: 1px 5px;
		left: 29%;
	}
	.dietKitsButton a {
		font-size: 12px;
		font-weight: bold;
	}
}