* {
	box-sizing: border-box;
}

html {
	font-size: 100%;
}

body {
	background-color: #FFFFFF;
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;;
}

p {
	margin: 0 0 10px 0;
}

.h-text-bold {
	font-weight: 700;
}

.g-row {
	display: flow-root;
	margin: 0 auto;
	max-width: 1280px;
	padding: 0 20px;
	position: relative;
	width: 100%;
}

.button {
	appearance: none;
	background-color: #F19B4B;
	border: 0;
	border-radius: 5px;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	line-height: 1;
	margin: 0;
	padding: 10px 15px;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.25s ease-out, color 0.25s ease-out;
	width: 100%;
}

@media (min-width: 768px) {
	.button {
		width: auto;
	}
}

.button:focus,
.button:hover {
	background-color: #C06F24;
	color: #FFFFFF;
}

.g-page-header {
	align-items: center;
	border-bottom: 14px solid #F19B4B;
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	position: relative;
}

.g-page-header__background-image {
	display: block;
	max-height: 800px;
	min-height: 400px;
	object-fit: cover;
	width: 100%;
}

.g-page-header__container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
	position: absolute;
	z-index: 10;
}

@media (min-width: 1440px) {
	.g-page-header__container {
		height: 400px;
	}
}

.g-page-header__button {
	font-size: 24px;
}

.g-page-header__logo {
	align-self: center;
	display: block;
	margin-bottom: 20px;
}

.links {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	list-style-type: none;
	margin: 0 0 60px 0;
	padding: 0;
}

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

.content {
	color: #58595B;
	display: grid;
	gap: 30px 70px;
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.content {
		grid-template-columns: 247px 1fr;
	}
}

.content__details-heading {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 5px;
}

.footer {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 30px;
}
