body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

main {
	flex: 1 0 auto;
}

.lander {
	position: relative;
	height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 25px;
	color: white
}

.lander::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: url('/assets/images/top.png');
	background-size: cover;
	background-position: center 50%;
	filter: grayscale(0.6) brightness(0.5);
	z-index: -1;
}

.motto{
	font-weight:bold;
}

main {
	padding: 2rem;
}

p {
	line-height: 140%;
	font-size: 1rem;
	padding: 1rem;
	text-align: justify;
}

.footerlink {
	font-size: 2rem;
	margin-left: 1rem;
}

.navIconBox {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.list {
	margin-left: 1rem;
}

.list-item {
	font-size: 1rem;
	padding: 0.5rem;
}

.list-item::before {
	content: '';
	margin-right: 0.5rem;
}

.centerIcon {
	display: flex;
	align-items: center;
	flex-direction: column;
}


#book,
#bookStudent {
	background-color: #0055FF;
}

#app,
#appStudent {
	background-color: #BF00FF;
}

#part1,
#chapter1,
#chapter2,
#chapter3,
#presentations,
#e-book,
#interactive,
#presentationStudent {
	background-color: #FECB01;
}

#part2,
#chapter4,
#chapter5,
#chapter6,
#e-bookStudent {
	background-color: #FF7B00;
}

#part3,
#chapter7,
#chapter8,
#chapter9,
#chapter10,
#chapter11,
#practialStudent {
	background-color: #FF3C00;
}

.our-team {
	padding: 30px 0 40px;
	margin-bottom: 30px;
	background-color: whitesmoke;
	border: 1px solid lightgray;
	border-radius: 5px;
	text-align: center;
	overflow: hidden;
	position: relative;
	transition: box-shadow .5s ease;
}

.our-team .picture {
	display: inline-block;
	height: 130px;
	width: 130px;
	margin-bottom: 50px;
	z-index: 1;
	position: relative;
}

.our-team .picture::before {
	content: "";
	width: 100%;
	height: 0;
	border-radius: 50%;
	background-color: #1369ce;
	position: absolute;
	bottom: 135%;
	right: 0;
	left: 0;
	opacity: 0.9;
	transform: scale(3);
	transition: all 0.3s linear 0s;
}

.our-team:hover .picture::before {
	height: 100%;
}

.our-team .picture::after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #1369ce;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.our-team .picture img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	transform: scale(1);
	transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
	box-shadow: 0 0 0 14px #f7f5ec;
	transform: scale(0.7);
}

.our-team .title {
	display: block;
	font-size: 15px;
	color: #4e5052;
	text-transform: capitalize;
}

.our-team .social {
	width: 100%;
	padding: 0;
	margin: 0;
	background-color: #1369ce;
	position: absolute;
	bottom: -100px;
	left: 0;
	transition: all 0.5s ease 0s;
}

.our-team:hover {
	box-shadow: rgba(0, 0, 0, .5) 2px 2px 2px;
	transition: box-shadow .3s ease;
}

.our-team:hover .social {
	bottom: 0;
}

.our-team .social li {
	display: inline-block;
}

.our-team .social li a {
	display: block;
	padding: 10px;
	font-size: 17px;
	color: white;
	transition: all 0.3s ease 0s;
	text-decoration: none;
}

.our-team .social li a:hover {
	color: #1369ce;
	background-color: #f7f5ec;
}

/***Extra form css***/
.submitButton {
	color:white;
	padding: 1rem;

	border: none;
	font: inherit;
	cursor: pointer;
	outline: inherit;
	border-radius: 0.5rem;
}

.submitButton:hover {
	box-shadow: 2px 2px 5px #888888;
}

/***Specific css for Homepage***/
.centeredConsumeAwareLogo {
	display: flex;
	align-items: center;
}

.ConsumeAwareTitle {
	font-size: 6rem;
}

.ConsumeAwareSubtext {
	font-size: 2rem;
}

.navigation {
	display: flex;
	justify-content: center;
}

.navigation button:first-of-type {
	margin-right: 10px;
}

.boldText {
	font-weight: bold !important;
}


.structure .list {
	margin-left: 0rem;
}

.structure .list-item {
	font-size: 1rem;
	padding: 0.5rem;
}

.structure .list-item::before {
	content: '- ';
	margin-right: 0rem;
}
