#f .content {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	width: calc(100% - 36px);
	font-size: 13px;
	color: #111;
}
#f .content a {
	color: #111;
	text-decoration: none;
	font-size: 13px;
}
#f .content a:hover {
	text-decoration: underline;
}

#f .copyright {
	flex-grow: 5;
}
#f .copyright img {
	display: block;
	margin: 15px 0 10px 0;
	width: auto;
	height: 29px;
}
#f .privacymark img {
	display: block;
	margin: 0 30px 0 auto;
	width: 90px;
	height: 90px;
}
#f .privacypolicy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px 0;
	width: 12.5em;
}

#f .privacypolicy a {
	position: relative;
	display: block;
	padding: 0 0 0 10px;
	background-color: transparent;
	color: #111;
}
#f .privacypolicy a::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 1px;
	display: inline-block;
	width: 5px;
	height: 7px;
	background: #111;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	margin-right: 4px;
}

@media screen and (max-width: 1023px) {
	#f .content {
			display: block;
			width: 100%;
			text-align: center;
	}
	#f .copyright img {
			margin-left: auto;
			margin-right: auto;
	}
	#f .privacymark img {
			margin-top: 10px;
			margin-left: auto;
			margin-right: auto;
	}
	#f .privacypolicy {
			margin-top: 10px;
			width: 100%;
			text-align: left;
	}
}