@charset "utf-8";
/* CSS Document */

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
}

body {
	position: relative;
	font-size: 18px;
	color: #fff;
	line-height: 1.6;
	background-color: #000;

	font-family: 'Cormorant Garamond',
		-apple-system,
		BlinkMacSystemFont,
		segoe ui,
		pingfang sc,
		hiragino sans gb,
		microsoft yahei,
		helvetica neue,
		Helvetica,
		Arial,
		sans-serif,
		apple color emoji,
		segoe ui emoji,
		segoe ui symbol;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: 'tnum';
	font-variant: tabular-nums;
}

.anchorMarker {
	position: absolute;
	top: 0;
}

.wideContainer {
	position: relative;
	max-width: 1440px;
	margin: auto 50px;
}

.container {
	max-width: 1240px;
	margin: auto;
	position: relative;
	padding-left: 20px;
	padding-right: 20px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.container .row {
	margin-right: -20px;
	margin-left: -20px;
}

.row:before,
.row:after {
	content: " ";
	display: table;
	clear: both;
}

#footer {
	color: #fff;
		font-size: 24px;
	padding: 20px 50px;
	background-color: #000;
	text-align: center;
}

@media (max-width: 641px) {
	.wideContainer {
		margin: auto 20px;
	}

	#footer {
		padding: 20px 20px;
	}

}