* {
	box-sizing: border-box;
}

*:last-child {
	margin-bottom: 0;
}

body {
	margin: 0;
	font-family: "DM Sans", sans-serif;
	font-optical-sizing: auto;
	font-size: 16px;
	color: black;
	overflow-x: hidden;
}

a {
	color: black;
}

.container {
	margin: 0 auto;
	width: 1660px;
	padding: 0 30px;
	max-width: 100%;
}

.small_container {
	width: 1388px;
	max-width: 100%;
	padding: 0 30px;
	margin: auto;
}

.button,
a.button[href] {
	background-color: var(--orange);
	color: white;
	text-decoration: none;
	padding: 14px 24px;
	line-height: 21px;
	border-radius: 8px;
	display: inline-block;
	display: flex;
	align-items: center;
	gap: 7px;
	transition: background-color 0.3s ease; 
	justify-content: center;
	font-weight: 600;
}

.button:hover {
	background-color: var(--hover-orange);
}

.button.secondary,
a.button.secondary[href] {
	background: white;
	color: #000000;
}

.button.secondary.creme:hover {
	background-color: var(--hover-creme);
}

.button.secondary.white:hover {
	background-color: var(--hover-creme);
}

.button.primary:after {
	content: '';
	background-image: url(../img/arrow-right-white-cta.svg);
	width: 14px;
	height: 12px;
	display: block;
}

.button.secondary:before {
	content: '';
	background-image: url(../img/tel-black.svg);
	width: 11px;
	height: 12px;
	display: block;
	flex: 0 0 11px;
}

.button.brown_text {
	color: var(--brown);
}

.button.no_icon:before,
.button.no_icon:after {
	display: none;
}

.button.inline_flex {
	display: inline-flex !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
}

h2 {
	color: var(--brown);
	/* Remove font-size: 48px + line-height DRY */
	font-size: 48px;
	line-height: 1.2;
}

p {
	margin-top: 0;
	margin-bottom: 25px;
}

img {
	max-width: 100%;
	height: auto;
}

p {
	font-size: 16px;
	line-height: 26px;
}

figure {
	margin: 0;
}

table {
	width: 100%;
	border-collapse: collapse;
}

tr:nth-child(even) td {
	background-color: var(--creme);
}

td {
	padding: 13px;
}

td:first-child {
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

td:last-child {
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

iframe {
	max-width: 100%;
}

article > *:last-child {
	margin-bottom: 0;
}

h1 {
	font-size: 44px;
	line-height: 1.25;
	color: var(--brown);
}

.thank_you_page header,
.thank_you_page footer,
.thank_you_page .mobile_sticky_buttons,
.thank_you_page #wpadminbar {
	display: none;
}

@media (max-width: 991px) {
	.container {
		padding: 0 16px;
	}

	html, body {
		max-width: 100vw;
		overflow-x: hidden;
	}
}

@media (max-width: 767px) {
	p {
		font-size: 14px;
		line-height: 24px;
	}

	.button {
		padding-left: 16px;
		padding-right: 16px;
	}

	h2 {
		font-size: 24px;
		line-height: 34px;
	}
}
