*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}


body {
	font-size: 1rem;
	font-weight: 400;
	font-style: normal;
	font-family: "Barlow Condensed", serif;
}

i {
	font-weight: italic;
}

b,
strong {
	font-weight: 700;
}

section {
	width: 100%;
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

@media only screen and (min-width: 800px) {

	section {
		min-height: 100vh;
		flex-direction: row;
		align-items: stretch;
	}
}

.column {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media only screen and (min-width: 800px) {

	.column {
		width: 50%;
		min-height: 100%;
	}
}

.brand {
	padding: 4rem 2rem;
	align-items: center;
	background-color: #3c3c3b;
}

.brand img {
	width: 90%;
	max-width: 300px;
}

@media only screen and (min-width: 800px) {

	.brand img {
		max-width: 500px;
	}
}

.text {
	padding: 4rem 2rem;
	align-items: center;
}

@media only screen and (min-width: 800px) {

	.text {
		align-items: flex-start;
	}
}

.inner {
	gap: 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.block p {
	margin: 0;
}

.block p.heading {
	color: #000;
	font-size: 1.5rem;
}

.block p.heading span {
	color: #f07d00;
}

.block ul {
	margin: 0;
	padding: 0;
	color: #3c3c3b;
	font-size: 1.5rem;
	list-style-type: none;
	list-style-position: outside;
}

.block.row {
	gap: 1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

@media only screen and (min-width: 400px) {

	.block.row {
		gap: 2.5rem;
		flex-direction: row;
		align-items: center;
	}
}

.row .buttons {
	gap: 0.75rem;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
}

.row .buttons a {
	color: #fff;
	font-weight: 700;
	font-size: 1.2rem;
	text-align: center;
	border-radius: 4px;
	text-decoration: none;
	padding: 0.75rem 1.25rem;
	background-color: #f07d00;
}

.row .buttons a:hover,
.row .buttons a:focus {
	outline: 0;
	background-color: #9e5201;
}

.row .buttons a:focus-visible {
	outline-offset: 2px;
	outline: 2px solid #9e5201;
}

.row p {
	color: #3c3c3b;
	font-size: 1.5rem;
}
