@charset "utf-8";

#about {
	display: flex;
	min-height: 57.5vh;
	background: #f8f8f8;
}
.about__text {
	padding: 3rem 0;
	flex-grow: 1;
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.about__textWrapper {
	padding: 0 5rem;
	line-height: 1.5;
}
.about__title {
	color: var(--brand-blue);
	text-transform: uppercase;

	font-size: 2.25rem;
	font-weight: 900;
	margin-top: 0;
	margin-bottom: 1rem;
}
.about__flavor {
	font-size: 1rem;
	font-weight: 400;
}
.about__list {

	padding-inline-start: 20px;
}
.about__list li{
	margin-bottom: .5rem;
}
.about__list li::marker {
	color: var(--brand-fuchsia);
}

.about__splash {
	width: 50%;
	background-image: url(../assets/revistaPortada.jpg);
	background-position: center;
	background-size: cover;
}
#manifest {
	display: flex;
	flex-direction: row-reverse;
	min-height: calc(100vh - 85px);
	background: #fff;
}
.manifest__text {
	flex-grow: 1;
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.manifest__textWrapper {
	padding: 0 4rem;
	line-height: 1.5;
}
.manifest__title {
	text-transform: uppercase;
	color: var(--brand-blue);
	font-size: 2rem;
	font-weight: 900;
}
.manifest__flavor {
	color: var(--brand-blue);
	font-size: 1.25rem;
	font-weight: 500;
}
.manifest__splash {
	width: 50%;
	background-image: url(../assets/thumbGirl.jpg);
	background-position: center;
	background-size: cover;
}
#team {
	background: #fff;
}
.team__holder {
	max-width: 1280px;
	padding: 4rem 40px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--brand-blue);
}
.team__title {
	text-transform: uppercase;
	display: inline-block;
	color: #28d597;
	height: 2rem;
	font-size: 3rem;
	padding-bottom: 3rem;
	font-weight: 800;
}
.team__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	padding: 0 20px;
}
.team__member {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 1rem 2rem;
}
.team__memberThumbnail {
	max-width: 120px;
	border-radius: 100%;
}
.team__memberName {
	color: #595959;
	margin-top: .75rem;
	text-transform: capitalize;
	text-align: center;
	font-weight: 600;
}

#council {
	background: #f8f8f8;
}
.council__holder {
	max-width: 1280px;
	padding: 3rem 40px;
	margin: auto;
}
.council__title {
	text-transform: uppercase;
	height: 2rem;
	font-size: 3rem;
	margin-bottom: 0rem;
	text-align: center;
	font-weight: 800;
	color: var(--brand-fuchsia);;
}
.council__subtitle {
	font-size: 1.5rem;
	text-align: center;
	font-weight: 800;
	color: var(--brand-fuchsia);;
}
.council__text {
	text-align: center;
	padding-bottom: 3rem;
	line-height: 1.5;
	font-size: 1.2rem;
}
.council__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	padding: 0 20px;
}
.council__member {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-width: 200px;
	padding: .75rem 0;
}
.council__memberThumbnail {
	max-width: 120px;
	border-radius: 100%;
}
.council__memberName {
	color: #595959;
	margin-top: .75rem;
	text-transform: capitalize;
	text-align: center;
	font-weight: 600;
}
.council__memberAcclaim {
	text-align: center;
	font-size: .85rem;
}
#community {
	background: white;
}
.community__holder {
	max-width: 1280px;
	padding: 5rem 0;
	margin: auto;
}
.community__title {
	text-transform: uppercase;
	display: inline-block;
	height: 2rem;
	font-size: 2rem;
	padding-bottom: 2rem;
	font-weight: 800;
	color: var(--brand-blue);
}
.community__text {
	line-height: 1.5;
	font-size: 2rem;
	text-align: center;
	color: var(--brand-blue);
}
.community__number {
	font-weight: 900;
	font-size: 4rem;
	color: #28d597;
}
.community__members {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.community__members div {
	color: var(--brand-blue);
	margin: .5rem 1rem .5rem 0;
	font-size: 1.2rem;
	font-weight: 500;
	width: 30%;
}
#community__sumateHolder {
	width: fit-content;
	margin: auto;
	margin-top: 3rem;
}
#community__sumate {
	cursor: pointer;
	padding: 1rem 2rem;
	border-radius: 100px;
	font-size: 1rem;
	border: 2px solid var(--brand-pink);
	background: var(--brand-pink);
	color: white;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
#community__sumate:hover{
	border: 2px solid var(--brand-pink);
	background: transparent;
	color: var(--brand-pink);
}

@media only screen and (max-width: 800px) {
	#about {
		flex-direction: column;
	}
	.about__textWrapper {
		padding: 0 2.5rem;
	}
	.about__title {
		margin-top: 3rem;
		font-size: 1.75rem;
	}
	.about__text {
		width: 100%;
		padding-top: 0;
		padding-bottom: 3rem;
	}
	.about__splash {
		min-height: 75vh;
		width: 100%;
	}
	#council__titleHolder {
	}
	.council__text {
		max-width: 100%;
	}
	.council__members {
		display: flex;
		flex-wrap: wrap;
	}
	.council__members div {
		width: 100%;
	}
	#manifest {
		flex-direction: column-reverse;
	}
	.manifest__splash {
		min-height: 85vh;
	}
	.manifest__text {
		max-width: 100%;
	}
	.manifest__textWrapper {
		max-width: 100%;
		padding: 4rem 3rem;
	}
	.team__holder {
		padding: 2rem 1rem;
	}
	.team__grid {
		padding: 0;
	}
	.team__member {
		margin: 1rem 1rem;
	}
	.council__holder {
		padding: 4rem 1.5rem;
	}
	.council__grid {
		padding: 0;
	}
	.council__member {
		margin: 1rem 1rem;
		max-width: 40%;
		min-width: 0;
	}
	.community__text {
		max-width: 100%;
		line-height: 1.5;
		font-size: 1.2rem;
	}
	.community__members div {
		width: 100%;
	}
}
@media only screen and (max-width: 800px) {
	.council__title {
		margin: 0;
		height: fit-content;
	}
	.council__subtitle {
		margin: 0;
		margin-bottom: 2rem;
	}
}
