/*privacy*/
.privacy-container{
	width: 100%;
	min-height: max(400px, 40vh); 
	background: linear-gradient(rgba(33, 45, 69, 0.81), rgba(33, 45, 69, 0.81)
		),
	url("../image/index/privacy_policy.webp");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.privacy-content{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60%;
}
.privacy-content h1{
	font-weight: 600;
	font-size: 3rem;
	color:var(--white);
	text-align: center;
}
.privacy-canister{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: justify;
  	text-justify: inter-word;
}
.privacy-canister p{
	font-weight:500;
	font-size: 1rem;
	padding: 3rem 0;
	color: var(--text-dark);
	line-height: 1.5rem;
}
.privacy-canister p strong{
	color: var(--icon-color);
	font-size: 1rem;
}
@media(max-width: 768px){
	.privacy-container{
		min-height: max(300px, 30vh); 
	}
	.privacy-content h1{
		font-weight: 600;
		font-size: 2rem;
	}
	.privacy-canister p{
		padding: 2rem 1rem;
		font-size: .8rem;
	}
}
@media(min-width: 768px) and (max-width: 1024px){
	.privacy-container{
		min-height: max(300px, 30vh); 
	}
	.privacy-content h1{
		font-weight: 600;
		font-size: 2rem;
	}
	.privacy-canister p{
		padding: 2rem 1rem;
		font-size: .8rem;
	}
}
@media(min-width: 1024px) and (max-width: 1224px){
	.privacy-canister p{
		padding: 2rem 1rem;
		font-size: 1rem;
	}
}