:root {
	--primary-h3-family: 'Archivo';
	--primary-h3-max-size: 22px;
	--primary-h3-min-size: 18px;
	--primary-b2-max-size: 24px;
	--primary-b2-min-size: 18px;
	--primary-b3-max-size: 18px;
	--primary-b3-min-size: 14px;
	--boost-size: 42px;
	--boost-size-mobile: 38px;
	--dark-pink: #FF61C9;
	--middle-pink: #FCA2FC;
	--light-pink: #FEDEEB;
	--yellow: #F0FD71;
	--orange: #FA9F6C;
	--gray: #F4F1ED;
	--bg-gray: #FAF9F5;
	--white: #FFFFFF;
	--black: #000000;
}

*, *::before, *::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	font: inherit; /* Get rid of all font sizes and heights */
}

html {
	color-scheme: dark light; /* Default dark */
	hanging-punctuation: first last; /* Not supported in Chrome */
}

body {
	min-height: 100vh;
	color: black;
}

/* Media responsive */
img, picture, svg, video {
	display: block;
	max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
	text-wrap: balance;
}

p {
	max-width: 75ch;
	text-wrap: pretty; /* Prevents orphans on lines */
}

@media (prefers-reduced-motion: no-preference) {
	:has(:target) {
		scroll-behavior: smooth;
		scroll-padding-top: 3rem;
	}
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
	background-color: transparent;
}

.h1 {
	--primary-h1-family: 'Archivo Black';
	--primary-h1-max-size: 72px;
	--primary-h1-min-size: 32px;
	font-family: var(--primary-h1-family);
	font-size: clamp(var(--primary-h1-min-size), -1.125rem + 10vw, var(--primary-h1-max-size));
	font-weight: bold;
	font-style: normal;
}

.h2 {
	--primary-h2-family: 'Archivo';
	--primary-h2-max-size: 42px;
	--primary-h2-min-size: 24px;
	font-family: var(--primary-h2-family);
	font-size: clamp(var(--primary-h2-min-size), 0.6964rem + 2.5714vw,  var(--primary-h2-max-size));
	font-weight: bold;
	font-variation-settings: "wdth" 125;
}

.h3 {
	font-family: var(--primary-h3-family);
	font-size: clamp(var(--primary-h3-min-size), 0.8125rem + 1vw, var(--primary-h3-max-size));
	font-weight: bold;
	font-variation-settings: "wdth" 125;
}

.h4 {
	--primary-h4-family: 'Fahkwang';
	--primary-h4-max-size: 28px;
	--primary-h4-min-size: 24px;
	font-style: italic;
	font-family: var(--primary-h4-family);
	font-weight: 200;
	font-size: clamp(var(--primary-h4-min-size), 1.1875rem + 1vw, var(--primary-h4-max-size));
}

.h4--large {
	--primary-h4-max-size: 42px;
	--primary-h4-min-size: 24px;
	font-size: clamp(var(--primary-h4-min-size), 0.6964rem + 2.5714vw, var(--primary-h4-max-size));
}

.b1 {
	--primary-b1-family: 'Public Sans';
	--primary-b1-max-size: 24px;
	--primary-b1-min-size: 18px;
	font-family: var(--primary-b1-family);
	font-size: clamp(var(--primary-b1-min-size), 0.6563rem + 1.5vw, var(--primary-b1-max-size));
	font-style: normal;
}

.b3 {
	--primary-b3-family: 'Public Sans';
	--primary-b3-max-size: 18px;
	--primary-b3-min-size: 14px;
	font-family: var(--primary-b3-family);
	font-size: clamp(var(--primary-b3-min-size), 0.6563rem + 1.5vw, var(--primary-b3-max-size));
	font-style: normal;
}

.about-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}

.italic {
	font-style: italic;
}

.hero {
	width: 100%;
	height: min-content;
	display: grid;
	color: white;
	grid-template-areas: "stack";
	background-image: url("../webp/444481703_959467902854287_3629235831896108037_n.webp");
	background-size: cover;
	background-repeat: no-repeat;
	align-items: center;
	overflow: hidden;
}

.hero > * {
	grid-area: stack;
}

.hero__overlay {
	width: 100%;
	height: 100%;
	background-color: hsla(0 0% 0% / 0.45);
}

.hero__text {
	display: flex;
	flex-direction: column;
	padding: 5rem 2rem;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.hero__subtext {
	max-width: 750px;
}

.mission {
	padding: 2rem;
}

.mission__header {
	text-align: center;
	margin: 2em 0;
}

.mission__content {
	margin: 2rem 0;
	display: flex;
	gap: 2rem;
	flex-direction: column-reverse;
	align-items: center;
}

.mission__content-image {
	width: 300px;
	height: 300px;
}

.mission__text > * {
	margin-bottom: 1rem;
}

.mission__subcontent {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.mission__subcontent-image {
	height: 300px;
	width: 300px;
}

.mission__subtext h2 {
	margin-bottom: 1rem;
}

@media (min-width: 960px) {
	.mission__content {
		margin: 2em 0 0 0;
		display: flex;
		gap: 2rem;
		flex-direction: row;
		align-items: start;
	}

	.mission__text {
		flex: 1;
	}

	.mission__subcontent {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 2rem;
	}

	.mission__subtext {
		flex: 1;
	}
}

.reach {
	padding: 1rem;
	background-color: var(--light-pink);
}

.reach__title {
	padding-top: 1rem;
	text-align: center;
}

.reach__cards {
	margin: 2rem 0 0 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.reach__card {
	padding: 2rem;
	border-right: 1px solid var(--black);
	border-bottom: 1px solid var(--black);
	background-color: var(--light-pink);
	text-align: center;
}

.reach__card h4 {
	min-height: 2lh;
	margin-bottom: 1rem;
	font-weight: bold;
}

.reach__card:nth-child(3),
.reach__card:nth-child(4) {
	border-bottom: none;
}

.reach__card:nth-child(2),
.reach__card:nth-child(4) {
	border-right: none;
}

.reach__card-title {
	font-family: var(--)
}

@media (min-width: 1200px) {
	.reach {
		padding: 4rem;
	}

	.reach__cards {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
	.reach {
		margin-top: -20px;
	}

	.reach__card {
		border-bottom: none;
	}

	.reach__card:nth-child(2) {
		border-right: 1px solid var(--black);
	}
}

@media (min-width: 1200px) {
	.reach {
		margin-top: -4em;
	}
}

.reach-growth {
	padding: 4rem;
}

.reach-growth__title {
	margin-bottom: 2rem;
}

.reach-growth__text {
	margin-bottom: 2rem;
}

.reach-growth__image {
	width: 300px;
	height: 300px;
}

@media (min-width: 1200px) {
	.reach-growth {
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		gap: 6rem;
	}

	.reach-growth__content {
		max-width: 650px;
	}
}

.hub__button {
	font-family: var(--primary-h3-family);
	font-size: clamp(var(--primary-h3-min-size), 0.8125rem + 1vw, var(--primary-h3-max-size));
	font-weight: bold;
	font-variation-settings: "wdth" 125;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 50px;
	width: max-content;
	padding: 0.75rem 2rem;
	display: inline-block;
}

.hub__button--pink {
	color: var(--white);
	background-color: var(--dark-pink);
	border: 2px solid var(--black);
	transition: color 0.275s, background-color 0.275s;
}

.hub__button--pink:hover {
	background-color: var(--white);
	color: var(--black);
}

.values {
	padding: 4rem 2rem;
	background-color: var(--bg-gray);
}

.values__mission {
	text-align: center;
	margin: 0 auto 3rem auto;
	margin-bottom: 3rem;
	max-width: 750px;
}

.value__slides {
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
}

.value__slide {
	text-align: center;
}

.value__title {
	height: 2lh;
	margin-bottom: 1rem;
}

.trusted-by__logos {
	margin: 3rem 0;
}

.trusted-by__title {
	text-align: center;
	margin: auto;
	margin-bottom: 2rem;
	max-width: 960px;
}

.trusted-by__images {
	display: flex;
}

.swiper-community, .swiper-trusted {
	max-width: calc(100% - 2em);
	margin: auto;
	overflow: hidden;
	.swiper-wrapper {
		align-items: center;
	}
}

.marquee__item {
	width: 80%;
	height: auto;
}

.image__icon {
	width: 100px;
	height: 100px;
	margin: auto;
	overflow: hidden;
	margin-bottom: 1rem;
}

.image__rounded {
	width: 100px;
	height: 100px;
	margin: auto;
	border-radius: 100px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.image__rounded img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonials {
	background-image: url("../webp/webpage-backgrounds-about1.webp");
	background-position: center;
	text-align: center;
	height: min-content;
}

.testimonial {
	height: min-content;
	background-color: #fbf9f5;
	padding: 2rem;
	border: 1px solid black;
	border-radius: 50px;
}

.testimonial__msgs {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	justify-content: space-between;
	max-width: 1200px;
	padding: 5rem 1rem;
	margin: 0 auto;
}

.testimonial__author {
	margin: 2rem auto 0 auto;
	font-weight: bold;
}

@media (min-width: 767px) {
	.testimonial__msgs {
		flex-direction: row;
	}

	.testimonial:last-child {
		display: none;
	}
}

@media (min-width: 960px) {
	.testimonial:last-child {
		display: block;
	}
}

.dream {
	padding: 5rem 1rem;
	text-align: center;
}

.dream > * {
	margin-bottom: 4rem;
}

.big-idea {
	background-color: var(--light-pink);
	padding: 5rem 1rem 8rem 1rem;
}

.big-idea__content {
	max-width: 1200px;
	margin: auto;
}

.big-idea__title {
	max-width: 1200px;
	margin: auto;
	margin-bottom: 3rem;
}

.big-idea__text {
	margin-bottom: 1rem;
}

.big-idea__video {
	display: flex;
	justify-content: center;
}

.meet-ashley__header {
	display: flex;
	justify-content: space-around;
	max-width: 1200px;
	margin: auto;
	gap: 2rem;
	padding: 0 1rem;
	flex-direction: column;
	align-items: center;
	margin-top: -4rem;
}

.meet-ashley__title-wrapper {
	padding: 6rem 0 2rem 0;
}

.meet-ashley__title {
	margin-top: 1rem;
	font-size: clamp(var(--boost-size-mobile), 1.1875rem + 1vw, var(--boost-size));
}

.meet-ashley__body {
	display: grid;
	grid-template-columns: auto;
	place-items: center;
	padding: 1rem;
	gap: 2rem;
	max-width: 1200px;
	margin: auto;
}

.meet-ashley__image {
	width: 400px;
	height: 500px;
	flex-shrink: 0;
	order: -1;
	max-width: 100%;
}

.meet-ashley__quote {
	color: var(--dark-pink);
	padding-bottom: 2em;
}

.meet-ashley__quote-title {
	font-size: clamp(var(--boost-size-mobile), 1.125rem + 2vw, var(--boost-size));
	text-align: center;
	margin: 3rem 0;
}

.meet-ashley__body-text {
	margin-top: 1rem;
}

.meet-ashley__body-text > * {
	margin-bottom: 1rem;
}

@media (min-width: 767px) {
	.meet-ashley__header {
		flex-direction: row;
		align-items: start;
	}

	.meet-ashley__quote {
		grid-row: 1/3;
	}
}

@media (min-width: 1200px) {
	.meet-ashley__body {
		grid-template-columns: auto auto;
		grid-template-rows: auto auto;
	}

	.meet-ashley__quote-image {
		order: revert;
	}

	.big-idea__content {
		display: flex;
		gap: 2rem;
		align-items: center;
	}
}

.dream-team {
	background-color: var(--gray);
}

.dream-team__content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 5rem 1rem;
}

.dream-team__employees {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin: 2rem 0;
}

.dream-team__employee {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: end;
}

.dream-team__employee-image {
	margin-right: 7rem;
}

.dream-team__details {
	position: absolute;
	text-align: center;
	border: 2px solid var(--dark-pink);
	width: 10rem;
	padding: 1rem;
	background-color: rgba(243, 241, 236, 0.7);
}

.dream-team__employees--large {
	.dream-team__employee {
		max-width: calc((100% / 1) - 2em);
	}
}

.dream-team__employees.dream-team__employees--small {
	.dream-team__employee {
		max-width: calc((100% / 2) - 2em);
	}

	.dream-team__employee-image {
		margin-right: 4rem;
	}

	.dream-team__details {
		width: 5rem;
		padding: 0.125rem;
	}

	.h3 {
		font-size: 11px;
	}

	.b3 {
		font-size: 9px;
	}
}

@media(min-width: 767px) {
	.dream-team__employees--large {
		.dream-team__employee {
			max-width: calc((100% / 2) - 2em);
		}
	}
	.dream-team__employees.dream-team__employees--small {
		.dream-team__employee {
			max-width: calc((100% / 3) - 2em);
		}
	}
}

@media (min-width: 960px) {
	.dream-team__employees {
		margin: 2rem 0;
	}
	.dream-team__employees--large {
		.dream-team__employee {
			max-width: calc((100% / 3) - 2em);
		}
	}
	.dream-team__employees.dream-team__employees--small {
		.dream-team__employee {
			max-width: calc((100% / 4) - 2em);
		}
		.dream-team__employee-image {
			margin-right: 5rem;
		}

		.dream-team__details {
			width: 6rem;
			padding: 0.225rem;
		}

		.h3 {
			font-size: 14px;
		}

		.b3 {
			font-size: 12px;
		}
	}
}

@media (min-width: 1200px) {
	.dream-team__employees.dream-team__employees--small {
		margin: 2rem 0;

		.dream-team__employee-image {
			margin-right: 6rem;
		}

		.dream-team__details {
			width: 7rem;
			padding: 0.225rem;
		}

		.h3 {
			font-size: 16px;
		}

		.b3 {
			font-size: 14px;
		}

		.dream-team__employee:nth-last-child(2) {
			grid-column-start: 2;
		}
	}

	.dream-team__employees.dream-team__employees--large {
		margin: 2rem 0 6rem 0;
	}
}

.section__title {
	margin-bottom: 2rem;
	font-size: clamp(var(--boost-size-mobile), 1.1875rem + 1vw, var(--boost-size));
}

.podcast {
	display: none;
	background: url('../webp/podcast-bg.webp');
	grid-template-areas: "stack";
}

.podcast-wrapper {
	grid-area: stack;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 5rem;
	padding: 5rem 1rem;
}

.podcast__body > * {
	margin-bottom: 1rem;
}

.podcast__title {
	margin-bottom: 2rem;
}

@media (min-width: 767px) {
	.podcast-wrapper {
		flex-direction: row;
	}
}

.join {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 5rem 1rem;
}

.join__form > * {
	margin-bottom: 1rem;
}

.join__form label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.join__title {
	color: #FA9F6C;
}

.join__form input {
	padding: 0.5rem 1rem;
	border-radius: 5px;
	border: 1px solid #000;
	width: 100%;
}

._form-content > * {
	margin-top: 0.5em;
}

@media (min-width: 767px) {
	.join {
		flex-direction: row;
	}
}

.instagram-feed {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.instagram-feed a img {
	width: 100%;
	height: 100%;
	object-fit: center;
}

.social {
	background-color: #FEDEEB;
	padding: 0 1rem 5rem 1rem;
}

.social-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2em 0;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.social-wrapper__image {
	width: 300px;
	height: 300px;
	flex-shrink: 0;
}

.social-wrapper__image .about-image {
	object-position: center 70%;
}

.social__icons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-around;
}

.social__content > * {
	margin-bottom: 2rem;
}

@media (min-width: 767px) {
	.social-wrapper {
		flex-direction: row;
	}

	.instagram-feed {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

