.about {
	margin: 100px;
	height: 60vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about h1 {
	color: #000;
	font-weight: 500;
	font-size: 9rem;
	display: inline-block;
}

.founder {
	margin: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.founder .left {
	width: 40%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.founder .left h2 {
	font-size: 40px;
	font-weight: 600;
}

.founder .left p {
	font-size: 14px;
	font-weight: 300;
	line-height: 16px;
	width: 80%;
}

.founder .right {
	width: 50%;
	text-align: center;
}

.founder .right img {
	width: 600px;
}

@media (max-width: 1440px) {
	.founder .right img {
		width: 500px;
	}
}

@media (max-width: 1024px) {
	.about {
		margin: 80px;
		height: 40vh;
	}

	.about h1 {
		font-size: 4rem;
	}

	.founder {
		margin: 50px;
		flex-direction: column;
		gap: 60px;
	}

	.founder .left {
		width: 100%;
	}

	.founder .left h2 {
		font-size: 30px;
	}

	.founder .left p {
		width: 100%;
	}

	.founder .right {
		width: unset;
	}

	.founder .right img {
		width: 100%;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.about {
		margin: 50px;
		height: 30vh;
	}

	.about h1 {
		font-size: 60px;
	}

	.founder {
		margin: 50px;
		flex-direction: column;
		gap: 60px;
	}

	.founder .left {
		width: 100%;
	}

	.founder .left h2 {
		font-size: 30px;
	}

	.founder .left p {
		width: 100%;
	}

	.founder .right {
		width: unset;
	}

	.founder .right img {
		width: 100%;
	}
}