/* Privacy Policy Page Styles */

/* Hero */

.hero_wrapper {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

.hero_wrapper .hero_desktop {
	display: block;
	width: 100%;
}

.hero_wrapper .hero_mobile {
	display: none;
}

.hero_logo_link {
	position: absolute;
	top: 38px;
	left: 85px;
	z-index: 100;
}

.hero_logo {
	display: block;
	width: 30vw;
	max-width: 300px;
	height: auto;
}

@media (max-width: 1160px) {
	.hero_logo {
		width: 23vw;
		max-width: 300px;
		height: auto;
	}
}


@media (max-width: 740px) {
	.hero_wrapper .hero_desktop {
		display: none;
	}
	.hero_wrapper .hero_mobile {
		display: block;
		width: 100%;
	}
	.hero_logo_link {
		top: 20px;
		left: 20px;
	}
	.hero_logo {
		width: 40vw;
		max-width: 300px;
		height: auto;
	}
}


/* Content */

.privacy_content_wrapper {
	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding: 60px 80px 80px;
	box-sizing: border-box;
	background-color: #f9fbe9;
}

.privacy_content_wrapper h1 {
	font-family: "Roboto Slab", serif;
	font-size: 48px;
	color: #4C200A;
	margin-bottom: 8px;
	line-height: 1.1;
}

.privacy_content_wrapper .effective_date {
	font-family: "Gabarito", sans-serif;
	font-size: 16px;
	color: #000000;
	margin-bottom: 40px;
	opacity: 0.7;
}

.privacy_content_wrapper .intro {
	font-family: "Gabarito", sans-serif;
	font-size: 20px;
	color: #000000;
	margin-bottom: 48px;
	line-height: 1.6;
}

.privacy_section {
	margin-bottom: 40px;
}

.privacy_section h2 {
	font-family: "Roboto Slab", serif;
	font-size: 28px;
	color: #4C200A;
	margin-bottom: 12px;
	line-height: 1.2;
}

.privacy_section p,
.privacy_section address {
	font-family: "Gabarito", sans-serif;
	font-size: 20px;
	color: #000000;
	line-height: 1.65;
	font-style: normal;
	margin-bottom: 10px;
	max-width: 700px;
}

.privacy_section ul {
	list-style: none;
	padding: 0;
	margin: 8px 0 10px 0;
	max-width: 700px;
}

.privacy_section ul li {
	font-family: "Gabarito", sans-serif;
	font-size: 20px;
	color: #000000;
	line-height: 1.65;
	padding-left: 20px;
	position: relative;
	margin-bottom: 4px;
}

.privacy_section ul li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #4C200A;
	opacity: 0.6;
}

.privacy_section a {
	color: #4C200A;
	text-decoration: none;
}

.privacy_section a:hover {
	text-decoration: underline;
}

@media (max-width: 740px) {
	.privacy_content_wrapper {
		padding: 40px 24px 60px;
	}

	.privacy_content_wrapper h1 {
		font-size: 39px;
	}

	.privacy_content_wrapper .effective_date {
		font-size: 19px;
	}

	.privacy_content_wrapper .intro {
		font-size: 19px;
		margin-bottom: 36px;
	}

	.privacy_section h2 {
		font-size: 23px;
	}

	.privacy_section p,
	.privacy_section address,
	.privacy_section ul li {
		font-size: 18px;
	}
}
