@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
	--primary-dark: #106647;
	--primary: #328d70;
	--primary2: #62d192;
	--black: #212121;
}

html,
body {
	margin: 0;
	font-family: "DM Sans", sans-serif;
	font-size: 18px;
	color: white;
}

h1 {
	font-size: 3rem;
	font-weight: 800;
	line-height: 3rem;
	padding-bottom: 1rem;
}

.sec1 {
	background-color: var(--primary);
}
.sec1 img {
	width: 100%;
}
.sec1 p {
	font-size: 2.4rem;
	max-width: 40rem;
	line-height: 120%;
	text-align: center;
	padding: 2.5rem 0 4rem 0;
}
@media screen and (max-width: 480px) {
	.sec1 p {
		font-size: 1.8rem;
	}
}

.sec-videos {
	padding: 6rem 0;
}
.sec-videos .subtitle {
	color: var(--primary-dark);
	letter-spacing: 4px;
	font-size: 0.9rem;
	font-weight: 600;
}
.sec-videos h1 {
	color: var(--black);
}
.sec-videos .column {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.sec-videos .text {
	color: var(--primary-dark);
	max-width: 30rem;
}
.sec-videos .btn {
	display: inline-block;
	margin-top: 1rem;
	background-color: var(--primary-dark);
	color: white;
	padding: 0.8rem 2rem;
	border-radius: 2rem;
	font-weight: 700;
}
.sec-videos .btn:hover {
	opacity: 0.5;
}
.sec-videos .vid {
	display: flex;
	justify-content: center;
	padding: 2rem 3rem;
}
.sec-videos .vid img {
	width: "100%";
	object-fit: cover;
	box-shadow: 15px 15px 0px var(--primary-dark);
	transition: all 200ms ease;
}
.sec-videos .vid img:hover {
	transform: scale(1.1);
}
@media screen and (max-width: 768px) {
	.reverse {
		display: flex;
		flex-direction: column-reverse;
		margin-right: 0;
		margin-left: 0;
	}
}

.sec-mission {
	padding: 6rem 0;
	background: linear-gradient(
			rgba(50, 141, 112, 0.85),
			rgba(50, 141, 112, 0.85)
		),
		url("img/mission.jpg") center/cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.sec-mission p {
	max-width: 50rem;
	font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
	.sec-mission p {
		font-size: 1.8rem;
	}
}

.sec2 {
	background: url("img/bg1.jpg") center/cover;
	padding: 5rem 0;
}
.sec2 h1 {
	max-width: 30rem;
}
.sec2 p {
	max-width: 30rem;
	font-size: 1.2rem;
}
.sec2 a,
.sec6 a,
.sec8 a {
	display: inline-block;
	background-color: white;
	padding: 1rem 2rem;
	color: var(--primary);
	font-weight: 700;
	font-size: 1.2rem;
}
.sec2 a:hover,
.sec6 a:hover,
.sec8 a:hover {
	opacity: 0.8;
	cursor: pointer;
}

.my-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: white;
}
.my-card img {
	margin: 0;
	display: block;
}
.my-card p {
	font-weight: 700;
	color: var(--black) !important;
	font-size: 1.2rem;
	line-height: 1.6rem;
	padding-top: 2rem;
	padding-right: 2rem;
}
.my-card:hover p {
	color: var(--primary) !important;
}
.my-card:hover img {
	opacity: 0.8;
}

.sec5 {
	background: white;
}
.carousel {
	width: 100%;
	padding: 6rem 0;
	padding-left: 10rem;
	padding-right: 10rem;
}
.carousel h1 {
	color: var(--black);
	padding-bottom: 3rem;
}
.carousel .subtitle {
	color: var(--primary-dark);
	letter-spacing: 4px;
	font-size: 0.9rem;
	font-weight: 600;
}

.prev-button {
	background-color: var(--primary-dark);
	width: 5rem;
	height: 5rem;
}

.splide__arrow {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	z-index: 10;
}
.splide__arrow--prev {
	left: -6rem;
	width: 3rem;
	height: 3rem;
	background: url("img/prev.svg") center / cover;
	border-radius: 0;
	opacity: 1;
}
.splide__arrow--next {
	right: -6rem; /* Adjust this value as needed */
	width: 3rem;
	height: 3rem;
	background: url("img/next.svg") center / cover;
	border-radius: 0;
	opacity: 1;
}
.splide__track {
	position: relative;
}
@media screen and (max-width: 480px) {
	.carousel {
		padding-left: 3rem;
		padding-right: 3rem;
	}
	.splide__arrow--prev {
		width: 3rem;
		height: 3rem;
		left: -3rem;
	}
	.splide__arrow--next {
		width: 3rem;
		height: 3rem;
		right: -3rem;
	}
}

.sec6 {
	display: flex;
	background-color: var(--primary);
	min-height: 30rem;
}
.sec6 > div {
	flex: 1;
}
.sec6 .bg {
	background: url("img/mentors.jpg") center/cover;
	opacity: 0.9;
}
.sec6 .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4rem;
}
.sec6 .text-subtitle {
	padding-top: 0.5rem;
	color: white;
	font-size: 1.5rem;
	line-height: 130%;
	max-width: 30rem;
	padding-bottom: 4rem;
}
@media screen and (max-width: 480px) {
	.sec6 {
		flex-direction: column;
	}
	.sec6 .bg {
		flex: none !important;
		width: "100%";
		height: 10rem;
	}
	.sec6 .text {
		padding: 2rem;
		padding-bottom: 4rem;
	}
}
.sec7 img {
	width: 100%;
}
.sec11 {
	background-color: var(--primary);
	padding: 3rem 0;
}
.sec11 p {
	font-size: 1.5rem;
	font-weight: 600;
	max-width: 60rem;
	line-height: 120%;
	text-align: center;
	padding-bottom: 2.5rem;
}
.sec11 a {
	background-color: var(--primary2);
	padding: 1rem 2rem;
	color: var(--primary-dark);
	font-weight: 700;
	font-size: 1.2rem;
	display: block;
	letter-spacing: -0.5px;
}
.sec11 a:hover {
	background-color: white;
	color: black;
	cursor: pointer;
}

.sec8 {
	display: flex;
	background-color: var(--primary2);
	min-height: 30rem;
}
.sec8 > div {
	flex: 1;
}
.sec8 .bg {
	background: url("img/transform_lives.jpg") center/cover;
}
.sec8 .text {
	padding: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sec8 .text-inner {
}
.sec8 .text-title {
	color: white;
	font-weight: 700;
	font-size: 2rem;
	padding-bottom: 1rem;
}
.sec8 .text-subtitle {
	color: white;
	font-size: 1.8rem;
	max-width: 24rem;
	padding-bottom: 3rem;
	line-height: 120%;
}
@media screen and (max-width: 480px) {
	.sec8 {
		flex-direction: column-reverse;
	}
	.sec8 .bg {
		flex: none !important;
		width: "100%";
		height: 15rem;
	}
	.sec8 .text {
		padding: 2rem;
		padding-bottom: 4rem;
	}
}

.sec9 {
	background-color: var(--primary);
}
.sec9 .container > div {
	flex: 1;
}
.sec9 .links p {
	font-size: 1.2rem;
	font-weight: 700;
	color: white;
}
.sec9 .links a {
	display: inline-block;
	margin-top: 0.5rem;
	background-color: var(--primary2);
	padding: 0.4rem 1rem;
	color: var(--primary-dark);
	font-weight: 700;
	font-size: 1rem;
}
.sec9 .links a:hover {
	opacity: 0.8;
	cursor: pointer;
}
.sec9 .contact {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.sec9 .contact img {
	width: 18.5rem;
}
.sec9 .socials {
	padding-top: 1.5rem;
	display: flex;
	flex-direction: row;
	gap: 0.9rem;
}
.sec9 .socials a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3.5rem;
	height: 3.5rem;
	background-color: var(--primary2);
}
.sec9 .socials a img {
	width: 2rem;
	height: 2rem;
}
.sec9 .contact > a {
	padding-top: 1.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
}
.sec9 .contact a:hover {
	opacity: 0.5;
}
@media screen and (max-width: 480px) {
	.sec9 .container {
		flex-direction: column;
	}
	.sec9 .contact {
		padding-top: 2rem;
		align-items: center;
	}
}

.sec10 {
	background: var(--primary-dark);
	color: white !important;
	font-size: 0.8rem;
}
.sec10 a {
	color: white !important;
}
.sec10 .container {
	display: flex;
	justify-content: space-between;
}
.sec10 .container > div {
	display: flex;
	gap: 1rem;
}
@media screen and (max-width: 480px) {
	.sec10 .container {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
	}
	.sec10 .container > div {
		display: flex;
		justify-content: center;
	}
}

.reels {
	width: 100%;
	padding: 6rem 2rem !important;
}
.reel-cont {
	display: block;
}
.reel-cont p {
	font-weight: 700;
	color: var(--black) !important;
	font-size: 1.5rem;
	line-height: 1.7rem;
	padding-top: 1.4rem;
	letter-spacing: -0.5px;
	padding-bottom: 1rem;
}
.reel-cont:hover {
	opacity: 0.8;
}
.reel-cont:hover p {
	color: var(--primary-dark) !important;
}
