*,
*:before,
*:after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	--lightGrey: #fcfcfc;
	--pink: black;
	--pink-hover: #d2417e;
	--darkPurple: #4f3961;
	--darkGrey: #585858;
	--darkerGrey: #6d6d6d;
	--yellow: #ffe75e;
	--white: #fff;
	--familyRoboto: "Roboto", sans-serif;
	--familyRobotoSlab: "Roboto Slab", sans-serif;
	--bold: bold;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
body {
	margin: 0;
	background-color: var(--lightGrey);
	font-family: var(--familyRoboto);
	line-height: 1.6;
	height: unset;
}
ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
a {
	color: var(--white);
	text-decoration: none;
	outline-color: var(--yellow);
}
a:hover {
	color: var(--pink-hover);
}
/* Header */
.header {
	padding: 1rem 4rem;
	background-color: var(--lightGrey);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	z-index: 10;
}
.nav-toggle {
	display: block;
	width: 24px;
	height: 24px;
	cursor: pointer;
	position: relative;
	border: none;
	background-color: transparent;
}
.hamburger {
	top: 10px;
	left: 0;
	display: block;
}
.hamburger,
.hamburger::before,
.hamburger::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 2px;
	border-radius: 3px;
	background-color: var(--darkPurple);
}
.hamburger::before {
	top: -10px;
	left: 0;
}
.hamburger::after {
	left: 0;
	bottom: -12px;
}
[aria-expanded="true"] .hamburger,
[aria-expanded="true"] .hamburger::before,
[aria-expanded="true"] .hamburger::after {
	transition: all 0.3s ease-in-out;
}
[aria-expanded="true"] .hamburger::before {
	opacity: 0;
	transform: rotate(0deg) scale(0.2);
}
[aria-expanded="false"] .hamburger::before {
	opacity: 1;
	transform: rotate(0deg) scale(1);
}
[aria-expanded="true"] .hamburger {
	transform: rotate(-45deg);
}
[aria-expanded="true"] .hamburger::after {
	transform: rotate(90deg) translateX(-12px);
}
[aria-expanded="false"] .hamburger,
[aria-expanded="false"] .hamburger::before,
[aria-expanded="false"] .hamburger::after {
	transition: all 0.3s ease-in-out;
}
.nav {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	top: -80px;
	left: -1rem;
	width: 50vw;
	height: 420px;
	transition: all 0.3s ease-in-out;
	transition-property: opacity, visibility, transform, background-color,
		box-shadow;
	background-color: #f4eeff;
	transform: translateX(-200%);
}
.btn.btn-outline-primary.current,
.btn.btn-primary {
	background-color: var(--pink);
	border-color: var(--pink);
	color: var(--white);
}
.btn.btn-outline-primary.current:hover,
.btn.btn-primary:hover {
	border-color: var(--pink) !important;
	background-color: var(--pink-hover) !important;
	color: var(--white) !important;
}
.btn.btn-outline-primary {
	color: var(--pink);
	border-color: var(--pink);
}
.btn.btn-outline-primary:hover {
	color: var(--pink);
	border-color: var(--pink);
	background-color: #b52b6533 !important;
}

.logo-container {
	display: flex;
	align-items: center;
	color: var(--pink);
}
.logo {
	display: block;
	width: 100px;
	padding: 1rem 0;
	z-index: 2;
}
.logo-container strong {
	font-size: 1.2rem;
	line-height: 1;
}
.logo-container small {
	font-size: 0.8rem;
	line-height: 1;
	font-weight: bold;
	color: #e184ab;
}
.nav-list {
	margin-top: 150px;
}
.nav.is-open {
	width: 70vw;
	height: 420px;
	top: -80px;
	margin-left: 0;
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	background-color: #f4eeff;
	box-shadow: 0 6px 20px rgba(96, 109, 175, 0.2);
}
.nav.is-open .nav-link {
	margin-top: 1rem;
	margin-left: 1rem;
	font-size: 1.1rem;
}
.nav-link {
	display: inline-block;
	padding: 0.5rem 1.2rem;
	margin-left: 1rem;
	color: var(--darkGrey);
	font-size: 1.1rem;
}
.nav-link-cta,
.nav-link:hover {
	color: var(--pink-hover);
}
@media (min-width: 46em) {
	.nav-toggle {
		display: none;
		pointer-events: none;
	}
	.nav-list {
		margin-top: 0;
		display: flex;
	}
	.nav {
		width: auto;
		height: auto;
		position: static;
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		background-color: initial;
	}
}
/* Intro */
.intro {
	margin-top: 2rem;
	padding: 0 1em;
}
.intro-title {
	margin: 0;
	font-family: var(--familyRobotoSlab);
	font-size: 2.4rem;
	font-weight: normal;
	line-height: 1.3;
	color: var(--darkPurple);
}
.intro-subtitle {
	margin: 1.2rem 0;
	font-size: 0.9rem;
	color: var(--darkGrey);
}
.button {
	display: inline-block;
	padding: 0.7em 1.2em;
	font-size: 1rem;
	background-color: var(--pink);
	color: var(--white);
	border-radius: 3px;
}
.button:hover {
	background-color: var(--pink-hover);
}
.intro-illustration {
	max-width: 100%;
	margin: 2rem;
	width: 640px;
}
@media (min-width: 32em) {
	.intro {
		margin: 5rem auto 0;
		display: grid;
		grid-template-columns: 1fr 1.2fr;
		grid-gap: 20px;
		grid-template-areas:
			". img"
			"title img"
			"subtitle img";
	}
	.intro-title {
		grid-area: title;
		margin: 0;
	}
	.intro-subtitle {
		grid-area: subtitle;
		margin: 0;
	}
	.intro .button {
		grid-area: button;
		justify-self: start;
		align-self: start;
	}
	.intro-illustration {
		grid-area: img;
		align-self: center;
	}
}
@media (min-width: 60em) {
	.intro {
		width: 80%;
	}
	.intro-title {
		font-size: 4rem;
		margin: 0;
	}
	.intro-subtitle {
		font-size: 1.2rem;
	}
	.button {
		font-size: 1.1rem;
	}
}
/* Features */
.features {
	padding: 0 1em;
	margin-top: 8rem;
	text-align: center;
}
.features-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.features-list li {
	padding: 1rem;
	flex: 1;
	width: 100%;
	max-width: 400px;
	min-width: 300px;
}
.features-list li .bi {
	font-size: 3rem;
	color: var(--pink);
}
.features-list li strong {
	color: var(--pink);
}
.features-list .icn {
	width: 80px;
	height: 80px;
	margin: 0 auto 1rem;
	border: 1px dashed var(--pink);
	background-color: rgba(181, 43, 101, 0.05);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.features p {
	font-size: 0.9rem;
}
.section-title {
	color: var(--darkPurple);
	font-weight: var(--bold);
	font-size: 1.85rem;
	line-height: 1.1;
}
@media (min-width: 60em) {
	.section-title {
		font-size: 2.25rem;
	}
}
.mission .ft-img {
	width: 100%;
}
/* Grow */
.grow {
	padding: 0 1em;
	position: relative;
	margin-top: 2.5rem;
}
.grow p {
	font-size: 0.9rem;
}
.blob {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
@media (min-width: 32em) {
	.grow {
		margin-top: 5rem;
		display: grid;
		grid-template-columns: minmax(200px, 550px) 40%;
		grid-template-areas:
			". img"
			"title img"
			"p img"
			". img";
	}
	.grow-title {
		grid-area: title;
	}
	.grow p {
		grid-area: p;
		margin: 0;
	}
	.grow > img:first-of-type {
		grid-area: img;
	}
	.blob {
		top: -50px;
	}
}
@media (min-width: 60em) {
	.grow {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	.grow p {
		font-size: 1.1rem;
	}
}
/* Feedback */
.get-feedback {
	padding: 0 1em;
}
.get-feedback p {
	font-size: 0.9rem;
}
@media (min-width: 32em) {
	.get-feedback {
		display: grid;
		grid-gap: 24px;
		grid-template-columns: 50% minmax(200px, 550px);
		grid-template-areas:
			"img ."
			"img title"
			"img p"
			"img .";
	}
	.get-feedback-title {
		grid-area: title;
		margin-bottom: 0;
	}
	.get-feedback img {
		grid-area: img;
	}
	.get-feedback p {
		grid-area: p;
		margin: 0;
	}
}
@media (min-width: 60em) {
	.get-feedback {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	.get-feedback p {
		font-size: 1.1rem;
	}
}
/* Learning */
.learning {
	padding: 0 1em;
}
.learning p {
	font-size: 0.9rem;
}
@media (min-width: 32em) {
	.learning {
		display: grid;
		grid-template-columns: minmax(200px, 450px) 50%;
		grid-template-areas:
			". img"
			"title img"
			"p img"
			". img";
	}
	.learning-title {
		grid-area: title;
	}
	.learning p {
		grid-area: p;
		margin: 0;
	}
	.learning img {
		grid-area: img;
	}
}
@media (min-width: 60em) {
	.learning {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	.learning p {
		font-size: 1.1rem;
	}
}
.get-started strong {
	font-size: 2.2rem;
}
.get-started p {
	margin: 0;
	margin-top: 5px;
	font-size: 0.9rem;
}
@media (min-width: 45em) {
	.get-started {
		margin-top: 100px;
	}
	.get-started ul {
		display: flex;
		justify-content: space-around;
	}
	.get-started li {
		width: 320px;
		height: 320px;
		background-size: initial;
	}
}
@media (min-width: 60em) {
	.get-started {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	.get-started p {
		font-size: 1.1rem;
	}
}
/* Start learning */
.start-learning {
	position: relative;
	margin-top: 5rem;
	margin-bottom: 5rem;
	text-align: center;
}
.start-learning .button {
	margin: 2rem 0;
}
.video-learning {
	width: 80vw;
	margin: 0 auto;
	max-width: 800px;
	position: relative;
	background-color: rgba(255, 255, 255, 0.3);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	font-size: 0;
	border-radius: 3px;
}
.video-learning:fullscreen {
	max-width: none;
	width: 100%;
}
.video-learning:-webkit-full-screen {
	max-width: none;
	width: 100%;
}
.video {
	width: 100%;
	object-fit: cover;
	cursor: pointer;
}
.video-button {
	max-width: 50px;
	padding: 0.5rem;
	background: none;
	border: 0;
	line-height: 1;
	color: var(--white);
	text-align: center;
	cursor: pointer;
}
.video-button:hover {
	background-color: var(--pink);
}
.video-slider {
	width: 10px;
	height: 30px;
}
.video-controls {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}
.video-learning .progress {
	height: 10px;
}
.video-controls > * {
	flex: 1;
}
.progress {
	display: flex;
	flex-basis: 100%;
	height: 5px;
	background-color: rgba(0, 0, 0, 0.5);
	cursor: ew-resize;
}
.progress-fill {
	width: 0%;
	background-color: var(--pink);
	flex: 0;
	flex-basis: 0%;
}
.blob-learning {
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0;
	z-index: -1;
	height: 500px;
}
@media (min-width: 32em) {
	.blob-learning {
		top: -100px;
		height: 800px;
	}
}
@media (min-width: 60em) {
	.footer-container {
		max-width: 80%;
		margin: auto;
	}
}
.arrow-1,
.arrow-2 {
	/* margin-top: 20px; */
	height: 90px;
	background-image: url(../../images/ls.svg);
	background-repeat: no-repeat;
	background-position: center;
}

@media (min-width: 32em) {
	.arrow-1,
	.arrow-2 {
		height: 184px;
		background-repeat: no-repeat;
		background-position: center;
	}
	.arrow-1 {
		/* margin-top: 70px; */
		background-image: url(../../images/l2l.svg);
	}
	.arrow-2 {
		background-image: url(../../images/l1l.svg);
	}
}
@media (min-width: 60em) {
	.arrow-1,
	.arrow-2 {
		height: 283px;
	}
	.arrow-1 {
		/* margin-top: 110px; */
		background-image: url(../../images/l1.svg);
	}
	.arrow-2 {
		background-image: url(../../images/l2.svg);
	}
}
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}
.footer {
	margin-top: 4rem;
	padding: 1rem;
	background-color: #fff5f5;
}
.footer .fab {
	font-size: 1.2rem;
	margin: 0.5rem;
}
.footer-social-l {
	color: var(--pink);
}
.footer-social-l:hover {
	color: var(--pink-hover);
}
@media (max-width: 767px) {
	.footer {
		padding: 1rem;
	}
}
#tempNav a {
	border-bottom: 1px solid transparent;
}
#tempNav a:hover {
	color: var(--pink);
	border-bottom-color: var(--pink);
}
#tempNav a.active {
	color: var(--darkPurple);
	border-bottom-color: var(--darkPurple);
}
#contactUs {
	--muted-color: #8198ae;
	--primary-color: var(--pink);
}
#homegallery {
	position: relative;
	min-height: 600px;
	margin: 0 auto;
}
#homegallery .gallery-item {
	width: 240px;
}
#homegallery .gallery-item img {
	width: 100%;
	margin-bottom: 10px;
}
.gallery-preview {
	max-height: calc(100vh - 195px);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.gallery-preview img {
	width: 100%;
	max-height: calc(100vh - 195px);
	object-fit: contain;
}
.audio-thumb {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--pink);
	color: #fff;
	width: 100%;
	height: 135px;
}
.audio-thumb .fas {
	font-size: 2.5rem;
	margin-bottom: 8px;
}
.audio-thumb span {
	font-weight: bold;
	display: inline-block;
	width: 200px;
	text-align: center;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.gallery-item-video::before {
	position: absolute;
	content: "\f04b";
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 10px);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.1);
	color: #fff;
	font-size: 2rem;
	z-index: 11;
}
.gallery-item-video:hover::before {
	color: var(--pink);
}
