header {
	min-height: 100vh;
	max-height: 750px;
}

.hero {
	position: relative;
	height: calc(100vh - 170px - 7vh);
	background: url("./../assets/images/homeHeroBg.png"), #0c3631;
	padding: var(--deviceWidthPaddingSize);
	padding-top: 15vh;
	padding-bottom: 20px;
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	justify-content: space-between;
	flex-direction: column;
	gap: 20px;
	overflow: hidden;
}

.hero .heroTextContainer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 80%;
}

.hero .heroTextContainer h2,
.hero .heroTextContainer p {
	align-self: stretch;
	color: #e9bc78;
	font-family: "Gill Sans", sans-serif;
	font-style: normal;
	line-height: normal;
	text-align: center;
}

.hero .heroTextContainer h2 {
	/* font-size: var(--xXXLargeSize); */
	font-size: var(--xXXLargeSize);
	font-weight: bold;
}

.hero .heroTextContainer p {
	font-size: 1.9rem;
	opacity: 0.9;
	text-align: right;
	padding-right: 10px;
	font-style: italic;
	font-weight: 300;
	line-height: normal;
}

.hero .CTAHeroBtn {
	display: flex;
	padding: 15px 30px;
	align-items: center;
	border-radius: 30px;
	background: linear-gradient(to top, #0c3631 5%, #0b4a3c 95%);
	color: rgba(235, 197, 141, 0.822);
	font-family: "Gill Sans", sans-serif;
	font-size: var(--xLargeSize);
	font-style: normal;
	font-weight: bold;
	cursor: pointer;
	filter: drop-shadow(0px 0px 10px #0c3631);
	transition: transform 0.5s ease;
}

.hero .CTAHeroBtn:hover {
	background: #0b4a3c;
	transform: scale(110%);
}

.hero .heroInteract {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	z-index: 1;
}

.hero .carouselIndicatorContainer {
	display: flex;
	padding: 10px 0px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
}

.hero .carouselIndicatorContainer .carouselIndicator {
	width: 10px;
	height: 10px;
	stroke-width: 1px;
	stroke: var(--white50);
	fill: var(--white50);
	cursor: pointer;
	transition: all 0.1s ease-in-out;
}

.hero .carouselIndicatorContainer .carouselIndicator.selectedIndicator,
.hero .carouselIndicatorContainer .carouselIndicator:hover {
	width: 12px;
	height: 12px;
	fill: var(--white75);
	stroke-width: 1px;
	stroke: var(--white30);
}

.hero .heroImagesContainer {
	position: absolute;
	display: flex;
	align-self: stretch;
	flex-direction: row;
	overflow: hidden !important;
	bottom: 0px;
	left: 0px;
	z-index: 0;
}

.hero .heroImagesContainer .heroImgContainer {
	display: flex;
	justify-content: center;
	align-items: end;
	width: 100vw;
	transition: transform 1s ease;
}

.hero .heroImagesContainer .heroImgContainer .heroImg {
	width: 50vw;
	max-height: 45vh;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: top;
	   object-position: top;
}

/* .hero .heroImg {
  box-shadow: -10px 10px 20px 0px rgba(103, 52, 44, 0.25);
} */

.aboutUsSection {
	display: flex;
	padding: 0px var(--deviceWidthPaddingSize);
	align-items: center;
	gap: 50px;
	align-self: stretch;
	justify-content: center;
	background: var(--white);
}

.aboutUsSection .aboutUsImg {
	width: 30%;
	min-width: 300px;
	height: 45%;
	-o-object-fit: contain;
	   object-fit: contain;
	border-radius: 10px;
	box-shadow: 0px 0px 25px 0px var(--black25);
}

.aboutUsSection .aboutUsTextContainer {
	display: flex;
	padding: 10px;
	max-width: 750px;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
	flex: 1 0 0;
}

.aboutUsSection .aboutUsTextContainer .aboutUsTextContent {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	align-self: stretch;
}

.aboutUsSection .aboutUsTextContainer .aboutUsTextContent h2 {
	align-self: stretch;
	color: var(--brandGreen);
	font-family: "Literata";
	font-size: var(--xXLargeSize);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.aboutUsSection .aboutUsTextContainer .aboutUsTextContent p {
	align-self: stretch;
	color: var(--brandGreen);
	text-align: justify;
	font-family: "Lato";
	font-size: var(--largeSize);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.aboutUsSection .aboutUsTextContainer .readMoreAboutBtn {
	display: flex;
	padding: 15px 30px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	border: 2px solid var(--brandGreen);
	background: transparent;
	color: var(--brandGreen);
	font-family: "Lato";
	font-size: var(--mediumSize);
	font-style: normal;
	font-weight: 400;
	cursor: pointer;
}

.testimonialSection {
	display: flex;
	padding: 0px var(--deviceWidthPaddingSize);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
}

.testimonialSection h2 {
	align-self: stretch;
	color: var(--brandGreen);
	text-align: center;
	font-family: "Literata";
	font-size: var(--xXLargeSize);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.testimonialSection .carouselIndicatorContainer {
	display: flex;
	padding: 10px 0px;
	justify-content: center;
	align-items: center;
	gap: 20px;
	align-self: stretch;
}

.testimonialSection .carouselIndicatorContainer .carouselIndicator {
	width: 20px;
	height: 20px;
	stroke-width: 1px;
	stroke: var(--brandGreen);
	cursor: pointer;
	transition: all 0.1s ease-in-out;
}

.testimonialSection
	.carouselIndicatorContainer
	.carouselIndicator.selectedIndicator,
.testimonialSection .carouselIndicatorContainer .carouselIndicator:hover {
	width: 25px;
	height: 25px;
	fill: var(--brandGreen);
	stroke-width: 1px;
	stroke: var(--brandGreen);
}

.testimonialSection .testimonialContentContainer {
	display: flex;
	padding: 10px 0px;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
}

.testimonialSection .testimonialRight,
.testimonialSection .testimonialLeft {
	width: 50px;
	height: 50px;
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}

.testimonialSection .testimonialRight:active,
.testimonialSection .testimonialLeft:active {
	transform: scale(1.5);
}

.testimonialSection .testimonialRow {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
	flex: 1 0 0;
	overflow-x: hidden;
	padding-left: 30px;
}

.testimonialSection .testimonialRow .testimonialContainer {
	display: flex;
	width: 100%;
	max-width: 350px;
	min-width: calc((100% / 3) - 90px);
	min-height: 250px;
	padding: 30px;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	border-radius: 8px;
	border: 1px solid var(--brandGreen);
	transition: transform 0.5s ease;
}

.testimonialContainer p.name {
	color: #002518;
	text-align: center;
	font-family: "Raleway";
	font-size: var(--largeSize);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.testimonialContainer p.role {
	align-self: stretch;
	color: #00251880;
	text-align: center;
	font-family: "Lato";
	font-size: var(--mediumSize);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.testimonialContainer p.testimony {
	align-self: stretch;
	color: #002518;
	text-align: center;
	font-family: "Lato";
	font-size: var(--mediumSize);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.achievementSection {
	display: flex;
	padding: 0px var(--deviceWidthPaddingSize);
	align-items: center;
	gap: 100px;
	align-self: stretch;
}

.achievementSection .achievementSectionContent {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	flex: 1 0 0;
}

.achievementSection .achievementSectionContent h2 {
	align-self: stretch;
	color: #002518;
	font-family: "Literata";
	font-size: var(--xXLargeSize);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.achievementSection .achievementSectionContent p {
	align-self: stretch;
	color: #002518;
	font-family: "Lato";
	font-size: var(--mediumSize);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.achievementSection .achievementSectionContent .achievementReadMoreBtn {
	padding: 15px 30px;
	border-radius: 8px;
	border: 2px solid var(--brandGreen);
	color: var(--brandGreen);
	background: transparent;
	font-family: "Lato";
	font-size: var(--mediumSize);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.achievementSection img {
	width: 50%;
	border-radius: 10px;
	border: 5px solid var(--brandGreen);
	box-shadow: 0px 0px 50px 0px rgba(103, 52, 44, 0.25);
}

/* Small laptop and large tablet */
@media (max-width: 1024px) {
	.hero .heroImagesContainer .heroImgContainer .heroImg {
		width: 70vw;
		max-height: 55vh;
	}

	.testimonialSection .testimonialRow .testimonialContainer {
		min-width: calc((100% / 2) - 90px);
		min-height: 200px;
	}

	.aboutUsSection {
		flex-direction: column;
	}

	.aboutUsSection .aboutUsTextContainer {
		align-items: center;
	}

	.aboutUsSection .aboutUsTextContainer .aboutUsTextContent {
		width: 75%;
		align-self: center;
	}

	.aboutUsSection .aboutUsTextContainer .aboutUsTextContent h2,
	.aboutUsSection .aboutUsTextContainer .aboutUsTextContent p {
		text-align: center;
	}

	.aboutUsSection .aboutUsTextContainer .readMoreAboutBtn {
		align-self: center;
	}

	.achievementSection {
		flex-direction: column;
	}
	.achievementSection .achievementSectionContent {
		align-items: center;
	}

	.achievementSection .achievementSectionContent {
		align-items: center;
	}

	.achievementSection .achievementSectionContent h2,
	.achievementSection .achievementSectionContent p {
		text-align: center;
	}

	.achievementSection .achievementSectionContent .achievementReadMoreBtn {
		align-self: center;
	}

	.achievementSection img {
		width: 100%;
	}
}

/* Tablet */
@media (max-width: 768px) {
	.hero .heroTextContainer h2 {
		font-size: var(--xXLargeSize);
	}

	.hero .heroTextContainer p {
		font-size: var(--largeSize);
	}

	.hero .heroImagesContainer .heroImgContainer .heroImg {
		width: 80vw;
		max-height: 60vh;
	}

	.testimonialSection .testimonialRight,
	.testimonialSection .testimonialLeft {
		width: 30px;
		height: 30px;
	}

	.testimonialSection .testimonialRow .testimonialContainer {
		min-width: calc((100% / 1) - 90px);
	}

	.hero .heroTextContainer {
		max-width: 100%;
	}

	.aboutUsSection .aboutUsTextContainer .aboutUsTextContent {
		width: 100%;
	}
}

/* Mobile  */
@media (max-width: 600px) {
	header {
		min-height: 50vh;
		max-height: 80vh;
	}
	.hero .heroImagesContainer .heroImgContainer .heroImg {
		width: 100vw;
		max-height: 65vh;
	}

	.aboutUsSection .aboutUsImg {
		width: 75%;
	}
}

@media (max-width: 400px) {
	header {
		min-height: 50vh;
		max-height: 70vh;
	}
}
