:root {
	--mtc-container: 1200px;
	--mtc-gutter: 20px;
}

#mtc-home {
	overflow-x: hidden;
}

#mtc-home section {
	position: relative;
}

#mtc-home .mtc-hero__inner,
#mtc-home .mtc-counters__inner,
#mtc-home .mtc-intro__inner,
#mtc-home .mtc-founders__inner,
#mtc-home .mtc-focus__inner,
#mtc-home .mtc-video__inner,
#mtc-home .mtc-news__inner,
#mtc-home .mtc-conversation__inner {
	max-width: var(--mtc-container);
	margin: 0 auto;
	padding-left: var(--mtc-gutter);
	padding-right: var(--mtc-gutter);
}

/* Hero */
.mtc-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 380px;
	overflow: hidden;
	background-color: var(--sm-color-millbrook);
}

.mtc-hero__media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mtc-hero__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
}

.mtc-hero__video {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.mtc-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
}

.mtc-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 60px var(--mtc-gutter);
	width: 100%;
}

.mtc-hero__logo {
	display: block;
	margin: 0 auto;
	max-width: 320px;
	height: auto;
}

.mtc-hero__subtext {
	margin: 18px 0 0;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1.2em;
}

@media screen and (min-width: 40em) {
	.mtc-hero {
		min-height: 520px;
	}
	.mtc-hero__logo {
		max-width: 460px;
	}
	.mtc-hero__subtext {
		font-size: 26px;
	}
}

@media screen and (min-width: 71.25em) {
	.mtc-hero {
		min-height: 620px;
	}
	.mtc-hero__video {
		display: block;
	}
	.mtc-hero__logo {
		max-width: 560px;
	}
	.mtc-hero__subtext {
		font-size: 30px;
	}
}

/* Counters */
.mtc-counters {
	background-color: var(--sm-color-forest);
	color: #fff;
	padding: 26px 0;
}

.mtc-counters__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 12px;
	text-align: center;
}

.mtc-counters__number {
	display: block;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.1em;
}

.mtc-counters__label {
	display: block;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.3em;
}

@media screen and (min-width: 40em) {
	.mtc-counters {
		padding: 34px 0;
	}
	.mtc-counters__inner {
		grid-template-columns: repeat(4, 1fr);
	}
	.mtc-counters__number {
		font-size: 40px;
	}
	.mtc-counters__label {
		font-size: 17px;
	}
}

/* Intro */
.mtc-intro {
	background-color: var(--sm-color-ecru-white);
	padding: 50px 0;
}

.mtc-intro__heading {
	margin: 0 0 12px;
	color: var(--sm-color-desert);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2em;
}

.mtc-intro__meta {
	margin: 0 0 4px;
	color: var(--sm-color-millbrook);
	font-size: 17px;
	line-height: 1.4em;
}

.mtc-intro__content {
	margin-top: 26px;
	max-width: 760px;
	font-size: 16px;
	line-height: 1.65em;
}

.mtc-intro__content p {
	margin-bottom: 1.2em;
}

@media screen and (min-width: 40em) {
	.mtc-intro {
		padding: 70px 0;
	}
	.mtc-intro__heading {
		font-size: 32px;
	}
	.mtc-intro__meta {
		font-size: 19px;
	}
}

/* Highlight cards */
.mtc-highlights {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 36px;
	max-width: 760px;
}

.mtc-highlights__card {
	display: block;
	background-color: var(--sm-color-millbrook);
	color: var(--sm-color-ecru-white);
	padding: 24px;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

a.mtc-highlights__card:hover {
	background-color: #6b5734;
	color: var(--sm-color-ecru-white);
}

.mtc-highlights__head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.mtc-highlights__icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border: 2px solid var(--sm-color-mustard);
}

.mtc-highlights__icon img {
	max-width: 32px;
	height: auto;
}

.mtc-highlights__meta {
	display: block;
}

.mtc-highlights__date {
	display: block;
	color: var(--sm-color-mustard);
	font-size: 13px;
	line-height: 1.3em;
	margin-bottom: 4px;
}

.mtc-highlights__title {
	display: block;
	color: #fff;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.2em;
}

.mtc-highlights__text {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.55em;
}

.mtc-highlights__link {
	display: inline-block;
	color: var(--sm-color-mustard);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.mtc-highlights__link .fa {
	margin-left: 6px;
}

@media screen and (min-width: 40em) {
	.mtc-highlights {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* From the founders */
.mtc-founders {
	background-color: var(--sm-color-blue-bayoux);
	color: #fff;
	padding: 46px 0;
}

.mtc-founders__heading {
	margin: 0 0 34px;
	color: var(--sm-color-mustard);
	font-size: 26px;
	font-weight: 700;
	text-align: center;
	line-height: 1.2em;
}

.mtc-founders__row {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 26px;
	max-width: 820px;
}

.mtc-founders__row:last-child {
	margin-bottom: 0;
}

.mtc-founders__row.is-right {
	flex-direction: row-reverse;
	margin-left: auto;
}

.mtc-founders__photo {
	flex: 0 0 auto;
	width: 68px;
}

.mtc-founders__photo img {
	display: block;
	width: 100%;
	height: auto;
}

.mtc-founders__quote {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 13px;
	line-height: 1.6em;
	color: #fff;
}

.mtc-founders__quote p {
	margin: 0 0 8px;
	color: #fff;
	font-size: 13px;
	line-height: 1.6em;
}

.mtc-founders__row.is-right .mtc-founders__quote {
	text-align: right;
}

.mtc-founders__attribution {
	display: block;
	color: var(--sm-color-mustard);
	font-size: 13px;
	font-weight: 700;
	font-style: normal;
}

@media screen and (min-width: 40em) {
	.mtc-founders {
		padding: 60px 0;
	}
	.mtc-founders__heading {
		font-size: 32px;
	}
	.mtc-founders__photo {
		width: 84px;
	}
	.mtc-founders__quote,
	.mtc-founders__quote p {
		font-size: 14px;
	}
}

/* Choose your focus */
.mtc-focus {
	background-color: var(--sm-color-ecru-white);
	padding: 50px 0;
	text-align: center;
}

.mtc-focus__heading {
	margin: 0;
	color: var(--sm-color-millbrook);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3em;
}

.mtc-focus__subheading {
	margin: 0 0 34px;
	color: var(--sm-color-millbrook);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3em;
}

.mtc-focus__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	text-align: left;
}

.mtc-focus__image img {
	display: block;
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.mtc-focus__title {
	margin: 14px 0 8px;
	color: var(--sm-color-desert);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.2em;
}

.mtc-focus__text {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.55em;
}

.mtc-focus__button {
	display: block;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	font-weight: 700;
}

@media screen and (min-width: 40em) {
	.mtc-focus {
		padding: 70px 0;
	}
	.mtc-focus__heading,
	.mtc-focus__subheading {
		font-size: 32px;
	}
	.mtc-focus__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 71.25em) {
	.mtc-focus__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}
	.mtc-focus__image img {
		height: 150px;
	}
}

/* Video sections */
.mtc-video {
	background-color: var(--sm-color-ecru-white);
	padding: 30px 0;
}

.mtc-video:last-of-type {
	padding-bottom: 60px;
}

.mtc-video__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
}

.mtc-video__heading {
	margin: 0 0 14px;
	color: var(--sm-color-picton-blue);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25em;
}

.mtc-video__content {
	font-size: 15px;
	line-height: 1.6em;
}

.mtc-video__content p {
	margin-bottom: 1.1em;
}

.mtc-video__button {
	display: inline-block;
	background-color: var(--sm-color-blue-bayoux);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	font-weight: 700;
	margin-top: 10px;
}

.mtc-video__button:hover {
	background-color: #62788c;
}

.mtc-video__media img {
	display: block;
	width: 100%;
	height: auto;
}

.mtc-video__trigger {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	line-height: 0;
}

.mtc-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border: 4px solid #fff;
	border-radius: 50%;
	transition: all .3s ease-in-out;
}

.mtc-video__play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 12px 0 12px 20px;
	border-color: transparent transparent transparent #fff;
}

.mtc-video__trigger:hover .mtc-video__play {
	transform: translate(-50%, -50%) scale(1.08);
}

@media screen and (min-width: 71.25em) {
	.mtc-video__inner {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.mtc-video__heading {
		font-size: 26px;
	}
	.mtc-video--text-first .mtc-video__text {
		order: 1;
	}
	.mtc-video--text-first .mtc-video__media {
		order: 2;
	}
}

/* Forest business news */
.mtc-news {
	background-color: var(--sm-color-mustard);
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	padding: 46px 0;
	color: var(--sm-color-millbrook);
}

.mtc-news__heading {
	margin: 0 0 10px;
	color: var(--sm-color-millbrook);
	font-size: 40px;
	font-weight: 900;
	line-height: .95em;
	text-transform: uppercase;
	max-width: 8em;
}

.mtc-news__intro {
	margin: 0 0 34px;
	font-size: 14px;
	line-height: 1.5em;
	max-width: 420px;
}

.mtc-news__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	max-width: 820px;
}

.mtc-news__date {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.mtc-news__title {
	margin: 0 0 10px;
	color: var(--sm-color-millbrook);
	font-size: 26px;
	font-weight: 900;
	line-height: 1.05em;
	text-transform: uppercase;
}

.mtc-news__content {
	font-size: 14px;
	line-height: 1.55em;
}

.mtc-news__content p {
	margin-bottom: .8em;
}

.mtc-news__content a {
	color: var(--sm-color-millbrook);
	text-decoration: underline;
}

.mtc-news__link {
	display: inline-block;
	color: var(--sm-color-millbrook);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.mtc-news__link:hover {
	color: var(--sm-color-desert);
}

@media screen and (min-width: 40em) {
	.mtc-news {
		padding: 70px 0;
	}
	.mtc-news__heading {
		font-size: 84px;
	}
	.mtc-news__title {
		font-size: 30px;
	}
}

@media screen and (min-width: 71.25em) {
	.mtc-news__heading {
		font-size: 108px;
	}
}

/* Join the conversation */
.mtc-conversation {
	background-color: #fff;
	padding: 50px 0;
	text-align: center;
}

.mtc-conversation__heading {
	margin: 0 0 30px;
	color: var(--sm-color-millbrook);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2em;
}

.mtc-conversation__embed {
	text-align: left;
}

@media screen and (min-width: 40em) {
	.mtc-conversation {
		padding: 70px 0;
	}
	.mtc-conversation__heading {
		font-size: 32px;
	}
}

/* Video modal */
.mtc-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.mtc-modal[hidden] {
	display: none;
}

.mtc-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .85);
	cursor: pointer;
}

.mtc-modal__inner {
	position: relative;
	width: 100%;
	max-width: 1000px;
}

.mtc-modal__video {
	display: block;
	width: 100%;
	max-height: 80vh;
	background-color: #000;
}

.mtc-modal__close {
	position: absolute;
	top: -44px;
	right: 0;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	background: none;
	color: #fff;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
}

body.mtc-modal-open {
	overflow: hidden;
}

/* Legacy sections */
#mtc-home .mtc-legacy {
	background-color: #fff;
}