* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Georgia;
	font-size: 18px;
	color: #424242;
	text-align: justify;
	line-height: 26px;
}

h1 {
	font-size: 36px;
	margin: 0 0 20px 0;
	line-height: 52px;
	text-align: center;
	color: #9d1350;
	font-weight: normal;
}

h2, h3 {
	font-size: 28px;
	margin: 0 0 20px 0;
	line-height: 52px;
	text-align: center;
	color: #9d1350;
	font-weight: normal;
}

h4 {
	font-weight: normal;
	font-size: 20px;
	margin: 8px 0 8px 0;
	color: #9d1350;
	text-align: center;
}

h5 {
	font-weight: bold;
	font-size: 16px;
	margin: 0 0 4px 0;
	color: #9d1350;
}

h6 {
	font-weight: bold;
	font-size: 16px;
	text-align: left;
	margin: 0px 0 4px 0;
	line-height: 20px;
}

a {
	text-decoration: none;
	color: #9d1350;
	cursor: pointer;
}

p {
	margin: 0;
	text-align: inherit;
	line-height: 1.5em;
	font-size: 18px;
	padding: 0 0 10px 0;
}

.purple-font {
	color: #9d1350;
}

.white-font {
	color: #ffffff;
}

.grey-back {
	background-color: #eeeeee;
}

.center {
	display: inline-block;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.center-text {
	text-align: center;
	line-height: inherit;
	font-size: inherit;
}

.quote {
	color: #9d1350;
	font-style: italic;
	text-align: center;
	font-size: inherit;
}

.button-link {
	font-size: 20px;
	line-height: 40px;
	border: 2px solid #9d1350;
	color: #9d1350;
	display: inline-block;
	padding: 0 20px;
	text-align: center;
	border-radius: 4px;
	transition-duration: 0.15s;
	transition-timing-function: ease-in-out;
}

.button-link:hover, .button-link.active {
	color: #ffffff;
	background-color: #9d1350;
}

section {
	position: relative;
	overflow: hidden;
}

footer {
	background-color: #f0eae1;
	overflow: hidden;
	margin: 50px 0 0 0;
}

footer a {
	color: #9d1350;
}

section .content, footer .content {
	width: 1080px;
	padding: 10px;
	margin: 0 auto;
	transition-duration: 0.5s;
	transition-timing-function: ease-in-out;
}

section .spaced, footer .content.spaced {
	margin: 50px auto;
}

.spacer {
	height: 50px;
	display: block;
	width: 100%;
}

.container {
	overflow: hidden;
	padding: 10px 0 0 10px;
}

.container .row {
	overflow: hidden;
	width: 100%;
}

.container [class*="col-"] {
	display: inline-block;
	float: left;
	padding: 0 10px 10px 0;
	margin: 0;
	min-height: 1px;
}

.col-1 {
	width: 8.33%;
}

.col-2 {
	width: 16.66%;
}

.col-3 {
	width: 25%;
}

.col-4 {
	width: 33.33%;
}

.col-5 {
	width: 41.66%;
}

.col-6 {
	width: 50%;
}

.col-7 {
	width: 58.33%;
}

.col-8 {
	width: 66.66%;
}

.col-9 {
	width: 75%;
}

.col-10 {
	width: 83.33%;
}

.col-11 {
	width: 91.66%;
}

.col-12 {
	width: 100%;
}


#col-4-no-wrap {
	width: 33.33%;
	display: inline-block;
}

.container img {
	width: 100%;
	display: block;
	float: left;
	margin: 0 0 10px 0;
}

.container img.small-img {
	width: 75%;
	margin: 0 auto;
	float: none;
}

.big-tile {
	width: 100%;
	display: block;
	position: relative;
	overflow: hidden;
	height: auto;
	padding: 0;
	background-color: #ffffff;
}

.big-tile .label {
	z-index: 1;
	position: absolute;
	top: 160px;
	width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	font-size: 30px;
	padding: 0 10px;
	color: #424242;
	font-family: Georgia;
	text-align: center;
	text-shadow: 1px 1px #ffffff;
}

.big-tile .description {
	z-index: 1;
	position: absolute;
	top: 200px;
	bottom: 10px;
	width: 100%;
	padding: 0 10px;
	text-align: justify;
	font-size: 12px;
	color: #424242;
	overflow: hidden;
}

.big-tile img {
	z-index: 0;
	width: 100%;
	margin: 0;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.4s;
	transition-timing-function: ease-in-out;
}

.big-tile img.blurred {
	filter: opacity(60%) blur(2px);
}

.big-tile:hover img.blur {
	filter: opacity(60%) blur(2px);
}

.noscroll {
	height: 100vh;
	overflow: hidden;
}

@media (max-width: 1079px) {
	section .content {
		width: 768px;
	}

	footer .content {
		width: 768px;
	}
}

@media (max-width: 767px) {
	section .content {
		width: 100%;
	}

	.center .button-link {
		margin: 10px 0 0 0;
		display: block;
	}

	.big-tile {
		height: 420px;
	}

	footer .content {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.container [class*="col-"] {
		width: 100%;
		display: block;
	}

	.mobile-disappear {
		display: none !important;
	}

	h1, h2, h3, h4 {
		font-size: 24px;
		line-height: 36px;
		text-align: center;
		color: #992f57;
		font-weight: normal;
	}

	.big-tile {
		height: 540px;
	}
}

