:root {
	--font-size--default: 20px;
	--font-size--small: 14px;
	--font-size--h2: 40px;
	--font-size--h3: 26px;
	--font-size--h4: var(--font-size--default);
	
	--font-weight--light: 300;
	--font-weight--regular: 400;
	--font-weight--bold: 700;
	
	--color--black: rgb(40, 40, 40);
	--color--white: rgb(255, 255, 255);
	--color--green: rgb(142, 190, 49);
	--color--green-light: rgb(237, 239, 227);
	--color--green-shaded: rgb(198, 209, 184);
	--color--green-dark: rgb(92, 146, 138);
	
	--gap-x: 1rem;
}

html {
	font-family: 'Barlow', sans-serif;
	font-weight: var(--font-weight--regular);
	font-size: var(--font-size--default);
	line-height: 1.375;
	color: var(--color--black);
	background: var(--color--white);
}

html, body {
	padding: 0;
	margin: 0;
}

a {
	color: var(--color--green);
}

.a-button {
	font-family: 'Barlow', sans-serif;
	font-size: var(--font-size--default);
	line-height: 1.375;
	text-decoration: none;
	color: var(--color--white);
	display: inline-block;
	padding: .25em .75em;
	background: var(--color--green);
	border-radius: .25em;
	border: 0;
	outline: 0;
	cursor: pointer;
}

.a-button--large {
	font-size: var(--font-size--h3);
	padding: .5em 2em;
}

.a-h2 {
	font-weight: var(--font-weight--regular);
	font-size: var(--font-size--h2);
	color: var(--color--green-dark);
}

.a-h4 {
	font-weight: var(--font-weight--bold);
	font-size: var(--font-size--h4);
	color: inherit;
}

.a-input {
	font-size: var(--font-size--default);
	box-sizing: border-box;
	display: inline-block;
	width: 100%;
	margin-top: .25em;
	padding: .25em .5em;
	border: 0;
	outline: 0;
	border-radius: .125rem;
}

.a-input--multiline {
	height: 10em;
}

.l-header,
.l-body,
.l-footer,
.l-nav,
.l-contact {
	position: relative;
	z-index: 1;
}

.l-header {
	z-index: 2;
}

.l-nav {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 4;
}

.l-contact {
	position: fixed;
	right: 0;
	top: 50%;
	z-index: 3;
}

.m-footer {
	font-size: var(--font-size--small);
	width: 100%;
	box-sizing: border-box;
	padding: 2rem 1rem;
	margin-top: 1rem;
	background: var(--color--green-light);
}

.m-footer__center {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.m-footer__cols {
	display: flex;
	align-items: flex-end;
}

.m-footer__col {
	width: 33%;
}

.m-footer__logo {
	width: 80%;
}

.m-footer__logo-img {
	width: 100%;
}

.m-footer__link {
	display: inline-block;
	font-weight: var(--font-weight--bold);
	color: var(--color--black);
	text-transform: uppercase;
	text-decoration: none;
	padding: .125em 0;
}

.m-footer__link--secondary {
	font-weight: var(--font-weight--regular);
}

.m-form {
	display: flex;
	flex-wrap: wrap;
}

.m-form__details {
	display: flex;
	flex-wrap: wrap;
	width: 65%;
	order: 1;
}

.m-form__message {
	width: 80%;
	order: 3;
}

.m-form__contact {
	width: 25%;
	order: 2;
}

.m-form__field {
	width: 90%;
	padding: .25em 0;
}

.m-form__field--half {
	width: calc(45% - 1rem);
}

.m-form__field--half:nth-child(2) {
	margin-left: 2rem;
}

.m-form__label {
	font-size: var(--font-size--small);
}

.m-header {
	position: relative;
	width: 100%;
	height: 33vw;
}

.m-header__logo {
	position: absolute;
	left: 10vw;
	top: 2vw;
	width: 42vw;
}

.m-header__logo-img {
	width: 100%;
}

.m-header__button {
	position: absolute;
	left: 22vw;
	bottom: 3vw;
}

.m-header__leaf {
	position: absolute;
	right: -8vw;
	bottom: -6vw;
	width: 54vw;
}

.m-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.m-list__item {
	list-style: none;
	padding: .5em 0 .5em 3em;
	margin: 0;
}

ol.m-list .m-list__item {
    counter-increment: list-counter;
    position: relative;
}

ol.m-list .m-list__item:before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 1.125em;
    font-weight: var(--font-weight--bold);
    font-size: 12px;
    color: var(--color--white);
    background: var(--color--green);
    min-width: 1.5em;
    padding: 3px;
    text-align: center;
    border-radius: .25em;
}

.m-locations {
	display: flex;
	align-items: center;
}

.m-locations__districts {
	width: 100%;
	max-width: 560px;
}

.m-locations__districts-cols {
	display: flex;
}

.m-locations__districts-col {
	width: 33%;
}

.m-locations__map {
	width: 100%;
}

.m-locations__map-img {
}

.m-nav {
	position: absolute;
	right: 0;
	top: 0;
}

.m-nav__burger {
	position: absolute;
	right: 3rem;
	top: 3rem;
	width: 3rem;
	height: 3rem;
	border: 0;
	outline: 0;
	background: transparent;
	background-image: url('../img/burger.svg');
	background-repeat: no-repeat;
	cursor: pointer;
}

.m-nav__burger-text {
	display: none;
}

.m-nav__menu {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: var(--color--green);
}

.m-nav__menu.is-hidden {
	display: none;
}

.m-nav__menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.m-nav__menu-list-item {
	list-style: none;
	margin: 0;
	padding: .25em 0;
}

.m-nav__link {
	font-size: var(--font-size--h2);
	color: var(--color--white);
	text-decoration: none;
}

.m-partners {
	display: flex;
	flex-wrap: wrap;
}

.m-partners__partner {
	height: 120px;
	margin-right: 2rem;
}

.m-slat {
	position: relative;
	width: 100%;
}

.m-slat--border-top {
	border-top: 2px solid var(--color--green-dark);
}

.m-slat--green-light {
	background-color: var(--color--green-light);
}

.m-slat--green-shaded {
	background-color: var(--color--green-shaded);
}

.m-slat__content {
	position: relative;
	z-index: 2;
	width: 100%;
	box-sizing: border-box;
	padding: 3rem 1rem;
}

.m-slat__content--gap {
	margin-top: 8rem;
}

.m-slat__content--transparent {
	background: rgba(255, 255, 255, 0.65)
}

.m-slat__background {
	position: absolute;;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	background-repeat: no-repeat;
	background-size: cover;
}

.m-slat__center {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.m-team {
	display: flex;
	gap: var(--gap-x);
}

.m-team__member {
	width: 100%;
	max-width: 440px;
}

.m-team__member-photo {
	display: block;
	width: 100%;
	max-width: 360px;
	border-radius: var(--gap-x);
}

.m-team__member-name {
	font-weight: var(--font-weight--bold);
	font-size: var(--font-size--h3);
	color: var(--color--green-dark);
}

.m-team__member-title {
}

.u-color--green {
	color: var(--color--green);
}

.u-rotate--270deg {
	transform: rotate(270deg);
	transform-origin: bottom right;
}

@media (max-width: 940px) {
	.m-header {
		height: 50vw;
	}
	
	.m-locations__districts {
		width: 75%;
		max-width: 100%;
	}
	
	.m-locations__map {
		width: 25%;
	}
}

@media (max-width: 700px) {
	.m-header {
		height: 60vw;
	}
	
	.m-form__details {
		width: 100%;
		order: 1;
	}
	
	.m-form__message {
		width: 100%;
		order: 2;
	}
	
	.m-form__contact {
		width: 100%;
		order: 3;
	}
	
	.m-locations {
		flex-wrap: wrap;
	}
	
	.m-locations__districts {
		width: 100%;
	}
	
	.m-locations__districts-cols {
		flex-wrap: wrap;
	}
	
	.m-locations__map {
		width: 100%;
	}

	.m-footer__cols {
		flex-wrap: wrap;
	}
	
	.m-footer__col {
		width: 50%;
	}
}

@media (max-width: 600px) {
	.m-team {
		flex-wrap: wrap;
	}
}