* {
	font-family: 'Helvetica Neue', sans-serif;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.button {
	display: flex;
}

/** generic **/

.top-m-50 {
	margin-top: 50px;
}
.bottom-m-50 {
	margin-bottom: 50px;
}

.grey-text {
	color: rgba(0, 0, 0, 0.8);
}

/** end **/

body {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
}

#logo,
#footer-logo {
	display: flex;
	width: 180px;
	height: 120px;
	background-image: url('../images/logo-transparent.png');
	background-repeat: no-repeat;
	background-size: contain;
}

header {
	position: relative;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	background-color: #f5f5f7;
	align-items: center;
	padding: 10px 50px;
	nav {
		position: absolute;
		display: none;
		top: 140px;
		left: 0;
		right: 0;
		background-color: #fff;
		ul {
			margin: 0;
			padding: 55px;
		}
		ul > li {
			list-style-type: none;
			margin: 10px 0;
			a {
				color: #000;
				font-weight: 600;
				font-size: 24px;
			}
		}
		box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
	}
	nav.active {
		display: flex;
	}
	#hamburger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		cursor: pointer;
		width: 40px;
		height: 20px;
		span {
			display: flex;
			width: 100%;
			height: 3px;
			background-color: #000;
		}
	}
}

main {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	gap: 150px;
	#cto {
		display: flex;
		flex-direction: column;
		height: 100vh;
		width: 100%;
		align-items: center;
		justify-content: center;
		background-image: url('../images/man-on-phone.jpg');
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		#cto-text {
			display: flex;
			flex-direction: column;
			padding: 20px 40px;
			border-radius: 5px;
			background-color: rgba(0, 0, 0, 0.2);
			color: white;
			max-width: 1000px;
			gap: 20px;
			.title {
				display: inline-flex;
				font-size: 68px;
				font-weight: bold;
				text-align: center;
				justify-content: center;
				text-transform: uppercase;
			}
			.sub-title {
				display: inline-flex;
				font-size: 20px;
				text-align: center;
				justify-content: center;
			}
		}
		.better-on {
			display: inline-flex;
			color: white;
			font-size: 20px;
			font-weight: 500;
			text-align: center;
			justify-content: center;
			margin: 20px 0;
			padding: 10px 20px;
			background-color: rgba(0, 0, 0, 0.2);
		}
		#cto-buttons-container {
			display: flex;
			justify-content: space-between;
			width: 400px;
			.download {
				width: 180px;
				height: 50px;
				background-repeat: no-repeat;
				background-size: contain;
			}
		}
	}
	.section {
		display: flex;
		padding: 50px 100px;
		overflow: hidden;
		background-color: #f5f5f7;
		z-index: 1;
		gap: 50px;
		.text {
			display: flex;
			flex: 3;
			flex-direction: column;
			color: rgba(0, 0, 0, 0.8);
			gap: 20px;
			.title {
				font-weight: bold;
				font-size: 48px;
			}
			.sub-title {
				font-size: 24px;
			}
		}
		.image {
			flex: 3;
			background-repeat: no-repeat;
			background-size: cover;
			border-radius: 40px;
			min-height: 400px;
		}
		.sub-section {
			display: flex;
			width: 100%;
			gap: 40px;
			.sect {
				display: flex;
				flex: 1;
				flex-direction: column;
				background-color: #fff;
				border-radius: 40px;
				min-height: 200px;
				padding: 40px;
				justify-content: space-between;
				.header {
					display: flex;
					align-items: center;
					.icon {
						display: flex;
						width: 55px;
						height: 55px;
					}
				}
				.text {
					display: flex;
					flex-direction: column;
					color: rgba(0, 0, 0, 0.7);
					padding: 20px 0;
					.title {
						display: flex;
						font-weight: bold;
						font-size: 28px;
						min-height: 60px;
						align-items: flex-end;
					}
					.desc {
						font-size: 18px;
					}
				}
			}
			#book {
				.icon {
					background-image: url('../images/icon-1.svg');
					background-repeat: no-repeat;
					background-size: cover;
				}
			}
			#visit {
				.icon {
					background-image: url('../images/icon-2.svg');
					background-repeat: no-repeat;
					background-size: cover;
				}
			}
			#report {
				.icon {
					background-image: url('../images/icon-3.svg');
					background-repeat: no-repeat;
					background-size: cover;
				}
			}
			#upload {
				.icon {
					background-image: url('../images/icon-4.svg');
					background-repeat: no-repeat;
					background-size: cover;
				}
			}
			#fill {
				.icon {
					background-image: url('../images/icon-5.svg');
					background-repeat: no-repeat;
					background-size: cover;
				}
			}
			#get-price {
				.icon {
					background-image: url('../images/icon-6.svg');
					background-repeat: no-repeat;
					background-size: cover;
				}
			}
		}
	}
	#functionality,
	#sell-with-ease {
		flex-direction: column;
	}
	#sell-with-ease {
		margin-bottom: 100px;
	}
	#no-crowds {
		.image {
			background-image: url('../images/chair.jpg');
		}
	}
	#find-with-ease {
		flex-direction: row-reverse;
		.image {
			background-image: url('../images/find.jpg');
		}
		.text {
			display: flex;
			flex-direction: column;
			justify-content: center;
		}
	}
	.section.terms-and-conditions,
	.section.privacy-policy {
		flex-direction: column;
		.title {
			font-size: 48px;
		}
	}
}

.app-store {
	background-image: url('../images/download-on-app-store.svg');
}
.play-store {
	background-image: url('../images/download-on-play-store.svg');
}
footer {
	display: flex;
	position: relative;
	z-index: 10;
	padding: 50px 100px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	background-color: #f5f5f7;
	gap: 20px;
	#footer-logo {
		display: flex;
	}
	#footer-bottom {
		display: flex;
		align-items: center;
		border-bottom: solid 1px rgba(0, 0, 0, 0.3);
		width: 100%;
		#footer-links {
			display: flex;
			flex-direction: column;
			flex: 2;
			text-decoration: none;
			#footer-contact {
				display: inline-flex;
				margin: 20px 0;
				a {
					color: rgba(0, 0, 0, 0.6);
					text-decoration: none;
				}
			}
			ul {
				display: flex;
				margin: 0;
				padding: 0;
				gap: 20px;
			}
			ul > li {
				list-style-type: none;
				a {
					color: #000;
				}
			}
		}
		#third-party {
			display: flex;
			flex-direction: column;
			align-items: center;
			text-align: center;
			flex: 1;
			#disclaimer-buttons-container {
				display: flex;
				justify-content: space-between;
				padding: 10px;
				.download {
					width: 100px;
					height: 30px;
					background-repeat: no-repeat;
					background-size: contain;
				}
			}
			#disclaimer-text {
				font-size: 12px;
			}
			#socials {
				display: flex;
				justify-content: space-between;
				padding: 10px;
				a {
					display: flex;
					width: 30px;
					height: 30px;
					margin: 5px;
					background-repeat: no-repeat;
					background-size: contain;
				}
				#facebook {
					background-image: url('../images/facebook.png');
				}
				#linkedin {
					background-image: url('../images/linkedin.png');
				}
				#x {
					background-image: url('../images/x.png');
				}
				#instagram {
					background-image: url('../images/instagram.png');
				}
				#youtube {
					background-image: url('../images/youtube.png');
				}
			}
		}
	}
	#copy {
		display: flex;
		width: 100%;
		text-align: center;
		align-items: center;
		justify-content: center;
	}
}

/** sclate */
@media screen and (max-width: 1000px) {
	header {
		padding: 20px;
	}
	main {
		#cto {
			#cto-text {
				.title {
					font-size: 48px;
				}
				.sub-title {
					font-size: 20px;
				}
			}
		}
		.section {
			padding: 30px 50px;
			gap: 30px;
			.text {
				.title {
					font-weight: bold;
					font-size: 40px;
				}
				.sub-title {
					font-size: 20px;
				}
			}
			.sub-section {
				flex-direction: column;
			}
		}
		#no-crowds,
		#find-with-ease {
			flex-direction: column;
		}
		#functionality {
		}
	}
	footer {
		padding: 30px 50px;
		#footer-bottom {
			flex-direction: column;
			gap: 30px;
		}
	}
}
