* {
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
html {
  scroll-behavior: smooth;
}

/*------------HOME PAGE------------*/
.bgHome {
	width: 100%;
	height: 70vh;
	background-image: url("../images/bg1-home.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.bgHome .content {
	width: 60%;
	min-height: 120px; 
	margin-left: 20%;
	padding: 10px;
	border-radius: 10px;
	background-color: rgba(255,255,255,0.7);
	position: relative;
	top: 25%;
}
.content h1 {
	color: #000000;
	text-align: center;
	padding: 20px;
	line-height: 48px;
	font-family: 'Tangerine', cursive;
	font-weight: bold;
	font-size: 46px;
}
@media screen and (max-width: 800px) {
	.bgHome .content {
		width: 100%; 
		margin-left: 0%;
		top: 35%;
	}
}

.dietVsMedicine {
	width: 90%;
	height: 90vh;
	margin-left: 5%;
	display: flex;
	flex-wrap: wrap;
}
.dietVsMedicineLeft {
	width: 48%;
	padding: 2%;
	float: left;
}
.dietVsMedicineLeft img {
	width: 100%;
	border-radius: 6px;
	transition: 1s;
}
.dietVsMedicineLeft img:hover {
	transform: scale(1.1);
}
.dietVsMedicineRight {
	width: 48%;
	padding: 2%;
	float: right;
	display: flex;
	align-items: center;
}
.dietVsMedicineRight h1 {
	text-align: center;
	line-height: 42px;
}
@media screen and (max-width: 1024px) {
	.dietVsMedicineLeft, .dietVsMedicineRight {
		width: 100%;
	}
	.dietVsMedicineRight h1 {
		margin-left: 160px;
	}
}
@media screen and (max-width: 800px) {
	.dietVsMedicineRight h1 {
		margin-left: 50px;
	}
}
@media screen and (max-width: 600px) {
	.dietVsMedicineRight h1 {
		margin-left: 0px;
	}
}

.containerParent {
	width: 100%;
	height: 100vh;
	padding: 10px 0;
	background-color: #000;
	color: #ffffff;
	background-image: url(../images/bg2-home2.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
.containerChildOne {
	width: 90%;
	margin-left: 5%;
	min-height: 40vh;
	padding: 20px;
	background-color: rgba(255,255,255,0.8);
	border-radius: 20px;
	position: absolute;
	top: 150px;
	transition: 0.5s;
}
.containerChildOne:hover {
	transform: scale(1.08);
}
.containerChildOne p {
	font-size: 19px;
	text-align: center;
	padding: 40px 0;
	color: #000000;
	line-height: 32px;
}
.containerChildTwo {
	width: 90%;
	margin-left: 5%;
	min-height: 20vh;
	padding: 2px 0 5px 0;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	position: absolute;
	bottom: 170px;
}
.subChildOne {
	width: 40%;
	height: 18vh;
	float: left;
	margin-right: 5%;
	background-color: #66e0ff;
	border-radius: 40px 0 40px 40px;
	padding: 25px;
	transition: 0.5s;
}
.subChildTwo {
	width: 40%;
	height: 18vh;
	float: right;
	margin-left: 5%;
	background-color: #ffbb99;
	border-radius: 0  40px 40px 40px ;
	padding: 25px;
	transition: 0.5s;
}
.subChildOne:hover, .subChildTwo:hover {
	transform: scale(1.2);
}
.subChildOne p, .subChildTwo p {
	text-align: center;
	font-size: 19px;
}

@media screen and (max-width: 1024px) {
	.containerChildOne {
		width: 90%;
		margin-left: 5%;
		min-height: 40vh;
		padding: 80px 40px;
		background-color: rgba(255,255,255,0.8);
		border-radius: 20px;
		position: absolute;
		top: 150px;
	}
}
@media screen and (max-width: 600px) {
	.containerChildOne {
		width: 100%;
		margin-left: 0%;
		padding: 5px;
		border-radius: 0px;
		top: 40px;
	}
	.containerChildTwo {
		width: 90%;
		margin-left: 5%;
		bottom: 40px;
	}
	.subChildOne {
		width: 100%;
		margin-right: 0%;
		border-radius: 7px;
	}
	.subChildTwo {
		width: 100%;
		margin-left: 0%;
		border-radius: 7px;
	}
}
@media screen and (max-width: 350px) {
	.containerChildOne {
		width: 100%;
		margin-left: 0%;
		padding: 0 5px;
		border-radius: 0px;
		top: 0px;
	}
	.containerChildTwo {
		width: 100%;
		margin-left: 0%;
		bottom: 10px;
	}
	.subChildOne {
		height: 13vh;
		padding: 0 5px;
	}
	.subChildTwo {
		height: 13vh;
		padding: 0 5px;
	}
}
