.fullpage {
	height: 90%;
	margin-bottom: 10rem;
}

.hero.fullpage {
	position: relative;
	background: gainsboro;
}

.hero.fullpage .img-holder {
	position: absolute;
	width: 100%;
	height: 100%;
	background: gray;
}

.hero.fullpage .scratch {
	left: 0;
	right: 0;
	bottom: -10px;
	height: 25px;
}

.fullpage .title {
	position: relative;
	margin: auto;
}

.fullpage .title .writing {
	height: 65px;
	margin-bottom: 1rem;
}

.intro-section {
	padding: 0 2rem 2rem;
}

.intro-content {
	position: relative;
	max-width: 520px;
	margin: 0 auto;
	padding-left: 5rem;
	text-align: left;
}

.intro-content .claim {
	position: absolute;
	top: 0;
	left: 0;

	width: 260px;

	transform: rotate(-90deg) translateX(-100%);
	transform-origin: top left;

	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	text-align: center;
	color: #2e2e2e;
}

.intro-content .txt {
	margin: 0;
	color: #5a5a5a;
	font-size: 21px;
	line-height: 1.8;
	letter-spacing: 0.08em;
}

.home-events {
	margin-bottom: 8rem;
}

.home-events-links {
	display: flex;
	justify-content: center;
	gap: 4rem;
	width: 74vw;
	margin: 5rem auto 0;
}

.home-events-card {
	position: relative;
	display: block;
	flex: 1;
	overflow: hidden;
	text-decoration: none;
}

.home-events-card img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .5s ease;
}

.home-events-card:hover img {
	transform: scale(1.05);
}

.home-events-card span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	background: #c7a26d;
	color: #fff;

	padding: .9rem 2.5rem;

	font-size: 1.2rem;
	font-weight: 300;
	letter-spacing: .08em;
	line-height: 1;

	white-space: nowrap;
	text-transform: uppercase;

	transition: background .3s ease;
}

.home-events-card:hover span {
	background: #b89561;
}

section.contact {
	max-width: 700px;
	margin: 10rem auto 5rem;
}

section.contact form {
	padding: 3rem;
	margin-bottom: 2rem;
	font-size: 15px;
}

@media only screen and (max-width: 1000px) {

	.home-events-links {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}

	.home-events-card img {
		max-width: 100%;
	}

	.home-events-card span {
		font-size: .8rem;
		padding: .8rem 1.8rem;
	}
}

@media only screen and (max-width: 550px) {

	.hero.fullpage {
		margin-top: 46px;
		height: 60%;
		margin-bottom: 2rem;
	}

	.fullpage .title .writing {
		height: 39px;
		margin-bottom: 0;
	}

	.home-events-links {
		width: 85vw;
		margin: 2rem auto 0;
	}

	.intro-section {
		padding: 4rem 32px;
	}

	.intro-content {
		max-width: none;
		padding-left: 0;
	}

	.intro-content .claim {
		position: static;
		width: auto;
		margin-bottom: 2rem;

		transform: none;
		text-align: left;
	}

	.intro-content .txt {
		font-size: 19px;
		letter-spacing: 0.04em;
	}

	section.contact {
		margin: 5rem auto;
	}

	section.contact form {
		margin: 0 16px;
		padding: 2rem 16px;
	}
}