.timeline-container {
	display: grid;
	grid-template-areas: "... timeline ...";
	grid-template-columns: 1fr 70vw 1fr;
	justify-content: center;
	height: 100vh;
	width: 100%;
}

.timeline {
	grid-area: timeline;
	display: grid;
	grid-template-columns: repeat(5, 2fr);
	justify-content: center;
	align-items: center;
	width: 100%;
}

.timeline-icon {
	width: 6rem;
	height: 150px;
	padding: 1rem;
}

.timeline-icon>img {
	width: 100%;
}

.timeline-connector {
	width: 100%;
	height: 3px;
	background-color: var(--color-title);
}

.timeline-desc h3 {
	margin: 2rem 0;
	height: 100%;
}

.timeline>li {
	width: 100%;
	height: 100%;
}

.empathize-banner {
	background-image: linear-gradient(0deg, transparent, var(--color-bg-alt)), url('../img/empathy.webp');
	height: 100vh;
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}

.empathize-header {
	width: 50vw;
	background: rgba(0, 0, 0, 0.7);
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border-radius: 10px;
	padding: 3rem;
}

.title {
	font-family: var(--headfont);
	font-variation-settings: "wdth" 140, "wght" 300;
	line-height: normal;
	font-weight: bold;
	color: var(--color-title);
}

.desc {
	font-family: var(--textfont);

}

.research-content {
	display: grid;
	grid-template-areas: "... heading ..."
		"... content ...";
	grid-template-columns: 1fr 60vw 1fr;
	margin: 4rem 0;
}

.empathize-title {
	grid-area: heading;
	/* margin: 4rem 0; */
	text-align: center;
}

.pie-container {
	display: grid;
	grid-area: content;
	grid-template-areas: "heading ..."
		"text pie";
	grid-template-columns: 50%;
	/* gap: 2rem; */
	column-gap: 2rem;
	justify-content: center;
	/* align-items: center; */
}

.pie-container>h3 {
	font-weight: bold;
	letter-spacing: 0.1em;
}


.highlight {
	background: linear-gradient(100deg,
			rgba(233, 63, 51, 0) 0.9%,
			rgba(233, 63, 51, 1) 2.4%,
			rgba(233, 63, 51, 0.5) 5.8%,
			rgba(233, 63, 51, 0.1) 93%,
			rgba(233, 63, 51, 0.7) 96%,
			rgba(233, 63, 51, 0) 98%),
		linear-gradient(180deg,
			rgba(233, 63, 51, 0) 0%,
			rgba(233, 63, 51, 0.3) 7.9%,
			rgba(233, 63, 51, 0) 15%);
	border-radius: 0.125em;
	box-decoration-break: clone;
	padding: 0.125em 0.25em;
}

.desc p {
	margin-bottom: 2rem;
	text-align: start;
}

.btn {
	background-color: #fff;
	color: var(--color-title);
	width: max-content;
	/* height: 100%; */
	border-radius: 5px;
	font-weight: bold;
	text-align: center;
	padding: 0.8rem;
	font-family: var(--headfont);

	margin-left: auto;

}

.readmore {
	grid-area: pie;
	margin-top: 2rem;
}

.btn:hover {
	background-color: var(--color-title);
	color: #fff;
}

.research-content-text {
	grid-area: content;
	font-weight: bold;
	text-align: center;
}

.interview-questions {
	grid-area: content;
}

.interview-questions span {
	margin-right: 8px;
	font-weight: bold;
}

.iframe-sheet {
	margin: 4rem 0;
}

.insights {
	display: grid;
	grid-area: content;
	grid-template-areas:
		"heading heading"
		"text ...";
	grid-template-columns: 40% 40%;
	column-gap: 15%;
	justify-content: center;
	/* align-items: center; */
	grid-area: content;
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
	background-color: rgba(233, 63, 51, 0.75);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 1);
	padding: 1rem;
}

.insights-heading {
	grid-area: heading;
	font-weight: bold;
}

.insights>li {
	margin: 1rem 0;
}

.insights>li>h4 {

	font-weight: bold;
}

.insights>li>p {
	color: #ccc;
}

.popup-btn-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.btn-container {
	display: grid;
	grid-template-areas:
		"... heading ..."
		"... content ...";
	grid-template-columns: 1fr 60vw 1fr;
	padding: 1rem 0;
}

.btn-readmore {
	display: grid;
	grid-area: content;
	grid-template-areas:
		"heading ..."
		"text pie";
	grid-template-columns: 40% 40%;
	column-gap: 20%;
	justify-content: center;
	align-items: center;
}

.research-table {
	grid-area: content;
	border-radius: 12px;
}

.table-title {
	background-color: rgba(233, 63, 51, 0.75);
	color: #fff;
	border: 2px solid #fff;
}

.table-desc-head {
	background-color: rgba(233, 63, 51, 0.75);
	color: #fff;
	border: 2px solid #fff
}

.research-table td {
	background-color: transparent;
	color: #fff;
}

tbody img {
	width: 50px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

tbody td {
	border: 2px solid #fff;
}

#define {
	background-image: linear-gradient(0deg, transparent, var(--color-bg-alt)), url('../img/define.webp');
	height: 100vh;
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	grid-area: content;
	/* text-align: center; */
}

.define-grid {
	grid-area: content;
	display: flex;
}

.define-heading {
	grid-area: heading;
	text-align: center;
	margin: 3rem 0;
	color: var(--color-title);
	font-weight: bold;
}

.define-card {
	padding: 1rem;
	width: 50%;
}

.define-card h2 {
	font-weight: bold;
}

.define-card p {
	margin: 1rem 0;

}

.define-card-start span {
	font-weight: bold;
	color: black;
}

.define-card-end {
	border-radius: 12px;
	border: 2px solid rgba(233, 63, 51, 1);
}

.define-card span {
	font-weight: bold;
	color: var(--color-title);
}

.user-persona-container {
	grid-area: content;
	display: flex;
	justify-content: center;
}

.goals-container {
	display: flex;
	flex-direction: column;
	width: 50%;
}

.bio ul {
	margin: 2rem 0;
	color: #ccc;
}

.goals {
	border: 2px solid var(--color-title);
	border-radius: 12px;
	padding: 1rem;
}

.user-points {
	padding: 1rem;
	background-color: var(--color-title);
}

.empathy-map {
	background: url('../img/user-persona.webp');
	grid-area: content;
}

.empathy-card-container {
	display: flex;
	justify-content: center;
	position: relative;
}

.empathy-card {
	width: 50%;
}

.profile-photo {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-60%, -40%);
	z-index: 1;
}

.profile-photo img {
	width: 200px;
	border: 2px solid #fff;
	border-radius: 50%;
}

.empathy-container {
	backdrop-filter: blur(5px) saturate(0%);
	-webkit-backdrop-filter: blur(16px) saturate(0%);
	background-color: rgba(0, 0, 0, 0.6);
}

.ujm-wrapper {
	display: grid;
	grid-template-areas: "... heading ..."
		"... content floating";
	grid-template-columns: 1fr 90vw 1fr;
	margin: 4rem 0;
}

.ujm-container {
	grid-area: content;
	padding: 2rem;
}

.ujm-table {
	backdrop-filter: blur(5px) saturate(0%);
	-webkit-backdrop-filter: blur(16px) saturate(0%);
	background-color: rgba(233, 63, 51, 0.75);
	padding: 15px;
}

.ujm-table th {
	padding: 1rem 0;
}

.ujm-table td {
	padding: 1rem 0 1rem 2rem;
	vertical-align: top;
}

.ujm-table li {
	padding: 5px;
	list-style-type: disc;
}

.ujm-table tbody th {
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
}

.user-scenario-wrapper {
	grid-area: content;
}

.user-scenario-wrapper h2 {
	text-align: center;
	margin: 3rem 0;
	color: var(--color-title);
	font-weight: bold;
}

.us-title {
	text-align: center;
	/* margin: 3rem 0; */
	color: #fff;
	font-weight: bold;
}

.us-sub-tittle {
	margin: 4rem 0;
}

.sub-title-span {
	font-weight: bold;
	font-size: 1.8rem;
	margin-top: 2rem;
}

.storyboarding {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.storyboarding h2 {
	text-align: center;
}

.storyboarding video {
	height: 100vh;
}

.five-whys {
	grid-area: content;
}

.five-whys span {
	font-weight: bold;
}

.question,
.ans {
	padding: 0 2rem;
}

.question {

	font-weight: bold;
	font-style: oblique;
}

.ans {
	margin-bottom: 2rem;
}

.validated-problem {
	border-left: 5px solid var(--color-title);
	color: #000;
	display: block;
	padding: 1rem;
	margin-top: 3rem;
	background-color: rgba(255, 255, 255, 0.75);
	border-radius: 12px;
	font-style: oblique;

}

.validated-problem span {
	display: block;
	color: #000;
	font-weight: bold;
	font-family: var(--headfont);
	letter-spacing: 3px;
}

#ideate {
	background-image: linear-gradient(0deg, transparent, var(--color-bg-alt)), url('../img/ideate.webp');
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	grid-area: content;
	text-align: center;
}

.hmw-wrapper {
	grid-area: content;
}

.crazy-eight-wrapper {
	grid-area: content;
}

.crazy-eight-container {
	display: flex;
	margin-bottom: 3rem;
	justify-content: center;
}

.crazy-eight-card {
	width: 500px;
	margin: 1rem;
}

.card-sorting-container {
	grid-area: content;
	display: flex;
	justify-content: center;
	flex: 1 1 0px;
}

.sorting-card {
	margin: 0 20px;
	flex: 1 1 0px;
}

.sorting-card ul {
	list-style-type: disc;
	margin-top: 1rem;
}

.task-flow-wrapper {
	grid-area: content;
	text-align: center;
}

.task-flow-heading {
	grid-area: heading;
	text-align: center;
	color: var(--color-title);
	font-weight: bold;
}

.taskflow-item {
	flex: 1 1 0;
	width: 0;
	margin: 2rem 1rem;
	padding: 2rem 0;
	border: 2px solid var(--color-title);
	border-radius: 12px;
}

.taskflow-text {
	padding: 2rem;
	text-align: start;
}

.user-flow {
    height: 110vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-flow img {
    height: 100%;
}

#prototype {
		background-image: linear-gradient(0deg, transparent, var(--color-bg-alt)), url('../img/design-banner.webp');
		height: 100vh;
		background-position: top;
		background-repeat: no-repeat;
		background-size: cover;
		display: flex;
		justify-content: center;
		align-items: center;
		grid-area: content;
		text-align: center;	
}

/* .prototype {
		min-height: 100vh;
		display: grid;
		place-items: center;
		margin: 5rem 0;
	  } */
	  .prototype {
		display: flex;
		width: 100vw;
		height: 100vh;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 5rem 0;
	  }

.prototype-heading {
	color: var(--color-title);
}

.prototype-container {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 500px;
  gap: 10px;
}
.prototype-container > div {
  flex: 0 0 120px;
  border-radius: 0.5rem;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  box-shadow: 1px 5px 15px var(--color-title);
  position: relative;
  overflow: hidden;
}
.card1 {
  background: url("../img/sketch/Screen1.webp") no-repeat 50%/cover;
}
.card2 {
  background: url("../img/sketch/Screen2.webp") no-repeat 50%/cover;
}
.card3 {
  background: url("../img/sketch/Screen3.webp") no-repeat 50%/cover;
}
.card4 {
  background: url("../img/sketch/Screen4.webp") no-repeat 50%/cover;
}
.card5 {
  background: url("../img/sketch/Screen5.webp") no-repeat 50%/cover;
}
.card6 {
  background: url("../img/sketch/Screen6.webp") no-repeat 50%/cover;
}
.card7 {
  background: url("../img/sketch/Screen7.webp") no-repeat 50%/cover;
}
.card8 {
  background: url("../img/sketch/Screen8.webp") no-repeat 50%/cover;
}
.card9 {
  background: url("../img/sketch/Screen9.webp") no-repeat 50%/cover;
}

.prototype-container > div:hover {
	flex: 0 0 250px;
	box-shadow: 1px 3px 15px var(--color-title);
	transform: translatey(-30px);
  }

.figma-proto {
	height: 100vh;
}

.figma{
	display: flex;
	justify-content: center;
	align-items: center;
}

.figma iframe{
margin: 0 2rem;
/* width: 100%; */
}

.proto-text {
	display: flex;
	text-align: center;
	justify-content: center;
	margin: 3rem 0;
}

.test {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 6rem 0;
	flex-direction: column;
}

.maze {
	height: 80vh;
	width: 80vw;
	margin: 2rem;
}

#test {
	background-image: linear-gradient(0deg, transparent, var(--color-bg-alt)), url('../img/testing.webp');
		height: 100vh;
		background-position: top;
		background-repeat: no-repeat;
		background-size: cover;
		display: flex;
		justify-content: center;
		align-items: center;
		grid-area: content;
		text-align: center;	
}

.project-logo{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5rem 0;
	flex-direction: column;
}

.final-design {
	display: flex;
	justify-content:center ;
	align-items: start;
	width: 100vw;
}

.style-guide {
	width: 40%;
	padding: 2rem;
}

.mentor {
	color: var(--color-title);
}

#conclusion {
		background-image: linear-gradient(0deg, transparent, var(--color-bg-alt)), url('../img/conclusion.webp');
			height: 100vh;
			background-position: top;
			background-repeat: no-repeat;
			background-size: cover;
			display: flex;
			justify-content: center;
			align-items: center;
			grid-area: content;
			text-align: center;	
	}

	#goodbye {
		background-image: linear-gradient(0deg, transparent, var(--color-bg-alt)), url('../img/goodbye.webp');
			height: 100vh;
			background-position: top;
			background-repeat: no-repeat;
			background-size: cover;
			display: flex;
			justify-content: center;
			align-items: center;
			grid-area: content;
			text-align: center;	
	}

	.ending {
		color: var(--color-title);
		font-weight: bold;
	}

.the-end {
	font-size: 20vw;
	font-family: var(--headfont);
	color: var(--color-title);
	background: -webkit-linear-gradient(var(--color-title), #000);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
