* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;

	--max-width: 1550px;

	font-family: Helvetica, Arial, sans-serif;
	position: relative;
}

header {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	margin-bottom: 24px;
}

header a {
	margin-top: 10px;
	display: inline-block;
}

header a img {
	height: 130px;
}

.intro {
	width: calc(100% - 24px);
	display: flex;
	flex-wrap: wrap;
	max-width: var(--max-width);
	margin: 0 auto;

	--intro-sections-width: 100%;
	margin-bottom: 20px;
}

.intro__desc,
.intro__info {
	width: var(--intro-sections-width);
}

.intro__desc {
	background-color: #cda88e;
	display: flex;
	align-items: center;
	justify-content: center;
}

.intro__desc p {
	font-size: 38px;
	/* width: calc(100% - 24px); */
	width: 80%;
	line-height: 1.15;
}


@media (min-width: 800px) {
	.intro {
		--intro-sections-width: 50%;
	}

	.intro__desc p {
		max-width: 450px;
	}
}

.intro__info {
	width: var(--intro-sections-width);
	/* background-color: #c7c7c7; */
	padding: 24px;

	padding-bottom: 64px;

	background-color: #8EB3CD;
}

.intro__info p {
	font-size: 16px;
	line-height: 1.3;
}

@media (min-width: 800px) {
	.intro__info {
		padding-bottom: 24px;
	}

	.intro__info p {
		font-size: 18px;
  		line-height: 1.5;
	}
}

.cta {
	border: 4px solid black;
	width: 100%;
	max-width: 400px;
	height: 40px;
	font-weight: 600;
	background-color: white;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	color: black;
	text-decoration: none;
	line-height: 1;

	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
}

@media (min-width: 800px) {
	.cta {
		position: relative;
		left: auto;
		bottom: auto;
		transform: none;
	}
}
