

/*------------------------------------*\
  NORMALIZE
\*------------------------------------*/


html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b, strong {
  font-weight: bolder;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
	display: block;
  border-style: none;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, 
[type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring, [type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}





/*------------------------------------*\
  RESET
\*------------------------------------*/


*, *::before, *::after {
	box-sizing: border-box;
}
a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
button {
	color: inherit;
	background-color: transparent;
	padding: 0;
	border-width: 0;
	cursor: pointer;
}
img {
	width: 100%;
	height: auto;
}
figure {
	margin: 0;
}
input::-moz-focus-inner {
	padding: 0;
	border: 0;
	margin: 0;
}
ul, ol, dd {
	list-style: none;
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-size: inherit; 
	font-weight: inherit;
	margin: 0; 
}
p {
	margin: 0;
}

::placeholder {
  color: #e1e9ef;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #e1e9ef;
}
::-ms-input-placeholder {
  color: #e1e9ef;
}

input[type=radio],
input[type=checkbox],
select {
	-webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.clear:before,
.clear:after {
  content: " ";
  display: table;
}
.clear:after {
  clear: both;
}





/*------------------------------------*\
  #HEADER
\*------------------------------------*/


.page-head {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background: #fff;
	-webkit-transition: box-shadow 0.3s ease;
					transition: box-shadow 0.3s ease;
	z-index: 999;
	-webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
}

.page-head__wrap,
.page-head__inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.page-head__inner {
	width: 100%;
	padding: 0.8em 1.8em;
}

.page-head__logo {
	width: 215px;
}

.menu-button,
.search-icon {
	display: flex;
	align-self: stretch;
	cursor: pointer;
	-webkit-transition: background 0.5s ease;
					transition: background 0.5s ease;
}
.menu-button {
	padding: 0 0.8em;
	background: #009490;
}
.menu-button:hover {
	background: #000;
}
.search-icon {
	padding: 0 1.8em;
}
.search-icon img {
	max-width: 42px;
	margin: auto;
}
.search-icon:hover {
	background: #f2f2f2;
}
.menu-button span,
.how-link span {
	font-size: 1.4em;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.menu-button span {
	color: #fff;
	margin: auto;
}
.how-link {
	cursor: pointer;
}
.how-link span {
	color: #2a2a2a;
	-webkit-transition: color 0.5s ease;
					transition: color 0.5s ease;
}
.how-link:hover span {
	color: #009490;
}

.shadow {
  box-shadow: 0 8px 6px -6px rgba(0,0,0, 0.3);
}


@media only screen and (max-width: 1100px) {
	.page-head__inner {
		padding: 0.8em 1.5em;
	}
	.page-head__logo {
		width: 200px;
	}
	.menu-button span,
	.how-link span {
		font-size: 1.2em;
	}
	.search-icon img {
		max-width: 38px;
	}
	.search-icon {
		padding: 0 1.7em;
	}
}

@media only screen and (max-width: 850px) {
	.page-head__inner {
		padding: 0.7em 1.2em;
	}
	.page-head__logo {
		width: 180px;
	}
	.menu-button span,
	.how-link span {
		font-size: 1.1em;
	}
	.search-icon img {
		max-width: 35px;
	}
	.search-icon {
		padding: 0 1.4em;
	}
}

@media only screen and (max-width: 600px) {
	.page-head__inner {
		padding: 0.65em 1em;
	}
	.page-head__logo {
		width: 160px;
	}
	.menu-button,
	.search-icon {
		height: 3.7em;
	}
	.menu-button span,
	.how-link span {
		font-size: 1em;
	}
	.search-icon img {
		max-width: 32px;
	}
	.search-icon {
		padding: 0 1.1em;
	}
}

@media only screen and (max-width: 500px) {
	.page-head__inner {
		padding: 0.65em 0.8em;
	}
	.page-head__logo {
		width: 130px;
	}
	.menu-button,
	.search-icon {
		height: 3.3em;
	}
	.menu-button span,
	.how-link span {
		font-size: 0.95em;
	}
	.search-icon {
		padding: 0 1em;
	}
}





/*------------------------------------*\
  #HOW-DO-I
\*------------------------------------*/


.how-dropdown {
	position: absolute;
	width: 100%;
	top: 4.9em;
	left: 0;
	padding: 0 10%;
	background: #fff;
	box-shadow: 0 -10px 0 #fff, 0 2px 10px rgba(0,0,0, .3);
	z-index: 99;
}

.how-dropdown__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 3em 0;
	opacity: 0;
}
.how-dropdown__inner p {
	font-size: 3em;
	font-weight: 700;
	color: #2a2a2a;
}

.how-icon__wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 2em auto;
}

.how-icon {
	position: relative;
	display: block;
	width: 22%;
	text-align: center;
	padding: 0 1em;
	margin: 1.5em 0;
}
.how-icon__img {
	position: relative;
	width: 60%;
	height: 0;
	background: #009490;
	padding-bottom: 60%;
	border-radius: 50%;
	margin: 0 auto;
	-webkit-transition: background 0.5s ease;
					transition: background 0.5s ease;
}
.how-icon__img img {
	position: absolute;
	width: auto;
	height: 50%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.how-icon span {
	display: block;
	font-size: 1.1em;
	font-weight: 500;
	line-height: 1.3;
	color: #2a2a2a;
	margin-top: 1.2em;
	-webkit-transition: color 0.5s ease;
					transition: color 0.5s ease;
}

.how-icon:hover .how-icon__img {
	background: #76be42;
}
.how-icon:hover span{
	color: #76be42;
}


@media only screen and (max-width: 1400px) {
	.how-icon {
		padding: 0;
	}
	.how-icon__img {
		width: 50%;
		padding-bottom: 50%;
	}
}

@media only screen and (max-width: 1300px) {
	.how-dropdown__inner p {
		font-size: 2.8em;
	}
	.how-dropdown__inner {
		padding: 2em 0;
	}
	.how-icon__wrap {
		margin: 1.5em auto;
	}
}

@media only screen and (max-width: 1200px) {
	.how-dropdown__inner p {
		font-size: 2.6em;
	}
	.how-icon__img img {
		height: 40%;
	}
	.how-icon span {
		font-size: 1em;
		margin-top: 1em;
	}
}

@media only screen and (max-width: 1100px) {
	.how-dropdown {
		top: 4.7em;
		padding: 0 5%;
	}
	.how-dropdown__inner {
		padding: 1.5em 0;
	}
	.how-icon__wrap {
		margin: 1em auto;
	}
	.how-icon {
		margin: 1em 0;
	}
	.how-dropdown__inner p {
		font-size: 2.5em;
	}
}

@media only screen and (max-width: 950px) {
	.how-dropdown__inner p {
		font-size: 2.2em;
	}
	.how-icon span {
		font-size: 0.9em;
		margin-top: 0.8em;
	}
}

@media only screen and (max-width: 850px) {
	.how-dropdown {
		top: 4.2em;
	}
	.how-dropdown__inner p {
		font-size: 2em;
	}
}

@media only screen and (max-width: 700px) {
	.how-dropdown__inner p {
		font-size: 1.8em;
		text-align: center;
	}
	.how-icon {
		width: 48%;
		margin: 0.8em 0;
	}
	.how-icon__img {
		width: 40%;
		padding-bottom: 40%;
	}
	.how-icon span {
		max-width: 200px;
		padding: 0 1em;
		margin: 0.6em auto 0;
	}
}

@media only screen and (max-width: 600px) {
	.how-dropdown {
		position: fixed;
		top: 4.4em;
	}
}

@media only screen and (max-width: 500px) {
	.how-dropdown {
		top: 3.9em;
	}
}





/*------------------------------------*\
  #SEARCH
\*------------------------------------*/


.search {
	position: absolute;
	width: 100%;
	top: 4.9em;
	left: 0;
	background: #f2f2f2;
}

.search__input {
	width: 100%;
	display: block;
  font-family: "Gotham A", "Gotham B";
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2;
	color: #009490;
  background: #f2f2f2;
  border: 0;
  padding: 0.6em 2.7em;
  opacity: 0;
  -webkit-transition: all 0.5s;
    			transition: all 0.5s;
}
.search__input:focus {
  outline: none;
}
.search__input::placeholder {
  color: #606060;
  opacity: 1;
}
.search__input:-ms-input-placeholder {
  color: #606060;
}
.search__input::-ms-input-placeholder {
  color: #606060;
}


@media only screen and (max-width: 1100px) {
	.search {
		top: 4.7em;
	}
	.search__input {
	  font-size: 1.8em;
	}
}

@media only screen and (max-width: 850px) {
	.search {
		top: 4.2em;
	}
	.search__input {
	  font-size: 1.7em;
	}
}

@media only screen and (max-width: 600px) {
	.search {
		top: 3.7em;
	}
	.search__input {
	  font-size: 1.2em;
	  padding: 0.5em 0.6em;
	}
}

@media only screen and (max-width: 500px) {
	.search {
		top: 3.3em;
	}
}





/*------------------------------------*\
  #MENU
\*------------------------------------*/


.page-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  overflow-x: hidden;
  -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
}
.show-menu.page-wrap,
.show-menu .page-head {
  left: 360px;
}

.menu {
	position: fixed;
	width: 360px;
	height: 100%;
	top: 0;
	left: -360px;
	background: #fff;
	padding: 4.9em 0 0;
	overflow-y: auto;
	z-index: 9999;
	-webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
}
.show-menu .menu {
	left: 0;
	box-shadow: 8px 0 6px -6px rgba(0,0,0, 0.3);
}

.menu a {
	font-size: 1.4em;
	font-weight: 700;
	line-height: 1.2;
}

.menu__main a {
	display: block;
	width: 100%;
	color: #fff;
	padding: 0.8em;
	background: #009490;
	margin-bottom: 0.15em;
	-webkit-transition: background 0.5s ease;
					transition: background 0.5s ease;
}
.menu__main a span {
	display: block;
	font-size: 0.75em;
	font-weight: 400;
	font-style: italic;
	margin-top: 0.1em;
}
.menu__main a:hover {
	background: #76be42;
}

.menu__links,
.menu__buttons {
	margin: 2.5em 1.1em;
}
.menu__links a {
	display: block;
	color: #949494;
	margin: 0.8em 0;
	-webkit-transition: color 0.5s ease;
					transition: color 0.5s ease;
}
.menu__links a:hover {
	color: #76be42;
}

.menu__buttons a {
	display: block;
	text-align: center;
	color: #fff;
	background: #76be42;
	padding: 0.8em;
	margin: 0.5em 0;
	-webkit-transition: background 0.5s ease;
					transition: background 0.5s ease;
}
.menu__buttons a:hover {
	background: #009490;
}


@media only screen and (max-width: 1100px) {
	.menu {
		width: 320px;
		left: -320px;
		padding: 4.7em 0 0;
	}
	.menu a {
		font-size: 1.25em;
	}
	.menu__main a {
		padding: 0.8em 0.9em;
	}
	.menu__links,
	.menu__buttons {
		margin: 2em 1.1em;
	}
	.menu__links a {
		margin: 0.6em 0;
	}
	.show-menu.page-wrap,
	.show-menu .page-head {
	  left: 320px;
	}
}

@media only screen and (max-width: 850px) {
	.menu {
		width: 300px;
		left: -300px;
		padding: 4.2em 0 0;
	}
	.menu a {
		font-size: 1.15em;
	}
	.menu__links,
	.menu__buttons {
		margin: 1.5em 1.05em;
	}
	.menu__links a {
		margin: 0.5em 0;
	}
	.show-menu.page-wrap,
	.show-menu .page-head {
	  left: 300px;
	}
}

@media only screen and (max-width: 600px) {
	.menu {
		width: 250px;
		left: -250px;
		padding: 3.7em 0 0;
	}
	.menu a {
		font-size: 1em;
	}
	.menu__links,
	.menu__buttons {
		margin: 1.3em 0.95em;
	}
	.menu__links a {
		margin: 0.5em 0;
	}
	.show-menu.page-wrap,
	.show-menu .page-head {
	  left: 250px;
	}
}

@media only screen and (max-width: 500px) {
	.menu {
		padding: 3.3em 0 0;
	}
}





/*------------------------------------*\
  #LAYOUT
\*------------------------------------*/


body {
	background: #fff;
	overflow-x: hidden;
}

.container {
	position: relative;
	width: 90%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.content--home,
.content--subpage {
	padding-top: 4.9em;
}
.content--subpage {
	padding-bottom: 5em;
}

.content--home section {
	margin: 6em auto;
}
.content--subpage section {
	margin: 4em auto;
}


@media only screen and (max-width: 1100px) {
	.content--home,
	.content--subpage {
		padding-top: 4.7em;
	}
}

@media only screen and (max-width: 850px) {
	.content--home,
	.content--subpage {
		padding-top: 4.2em;
	}
	.content--home section {
		margin: 5em auto;
	}
	.content--subpage section {
		margin: 3em auto;
	}
}

@media only screen and (max-width: 700px) {
	.content--home section {
		margin: 4em auto;
	}
}

@media only screen and (max-width: 600px) {
	.content--home,
	.content--subpage {
		padding-top: 3.7em;
	}
}

@media only screen and (max-width: 500px) {
	.content--home,
	.content--subpage {
		padding-top: 3.3em;
	}
}





/*------------------------------------*\
  #TYPE
\*------------------------------------*/


/*
font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
font-family: 'Nexa W05 Heavy', Arial, sans-serif;
*/

body {
	font-family: 'Gotham A', 'Gotham B', Arial, sans-serif;
	font-size: 100%;
	font-weight: 400;
	color: #606060;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
	line-height: 1.2;
}

.page-content h1 {
	font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
	font-size: 4em;
	font-weight: 500;
	color: #fff;
}

.page-content h2,
.content--subpage h1 {
	font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
	font-size: 3.2em;
	font-weight: 500;
	color: #fff;
	margin-bottom: 0.5em;
}
.content--home h2 {
	margin-bottom: 0.7em;
}
.content--subpage h2,
.content--subpage h1 {
	font-weight: 700;
	color: #76be42;
}

.page-content h3 {
	font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
	font-size: 2em;
	font-weight: 500;
	color: #2a2a2a;
	margin: 1.5em 0 0.7em;
}

.page-content h4 {
	font-size: 1.4em;
	font-weight: 600;
	color: #009490;
	margin-bottom: 0.3em;
}

.page-content h5 {
	font-size: 1.2em;
	font-weight: 600;
	color: #606060;
	margin-bottom: 0.3em;
}

.page-content h6 {
	font-size: 1.5em;
	font-weight: 400;
	line-height: 1.5;
	color: #2a2a2a;
	margin-bottom: 1em;
}

.page-content p,
.page-content li {
	font-size: 1.1em;
	font-weight: 400;
	line-height: 1.6;
	color: #606060;
}
.page-content p {
  margin-bottom: 1.5em;
}
.page-content p a {
	font-weight: 500;
	color: #009490;
	text-decoration: underline;
}
.page-content p a:hover {
	color: #76be42;
}

.content--home p {
	font-size: 1.5em;
	font-weight: 500;
	line-height: 1.6;
}
.content--home p:last-of-type {
	margin: 0;
}

.text--intro p {
	font-size: 1.5em;
	color: #2a2a2a;
}
.text--intro p:last-of-type {
	margin: 0;
}


@media only screen and (max-width: 1450px) {
	.content--home p {
		font-size: 1.4em;
	}
}

@media only screen and (max-width: 1400px) {
	.page-content h2,
	.content--subpage h1 {
		font-size: 3em;
	}
	.page-content h3 {
		font-size: 1.8em;
	}
	.text--intro p {
		font-size: 1.4em;
	}
}

@media only screen and (max-width: 1300px) {
	.content--home p {
		font-size: 1.3em;
	}
}

@media only screen and (max-width: 1200px) {
	.page-content h2,
	.content--subpage h1 {
		font-size: 2.6em;
	}
	.page-content h3 {
		font-size: 1.6em;
	}
	.page-content h4 {
		font-size: 1.3em;
	}
	.page-content p,
	.page-content li {
		font-size: 1.05em;
	}
	.text--intro p {
		font-size: 1.25em;
	}
	.content--home p {
		font-size: 1.2em;
	}
}

@media only screen and (max-width: 950px) {
	.page-content h2,
	.content--subpage h1 {
		font-size: 2.4em;
	}
	.text--intro p {
		font-size: 1.2em;
	}
}

@media only screen and (max-width: 850px) {
	.page-content h2,
	.content--subpage h1 {
		font-size: 2.2em;
	}
	.page-content h3 {
		font-size: 1.5em;
	}
	.page-content h4 {
		font-size: 1.25em;
	}
	.text--intro p {
		font-size: 1.15em;
	}
}

@media only screen and (max-width: 700px) {
	.page-content h2,
	.content--subpage h1 {
		font-size: 2em;
	}
	.page-content h3 {
		font-size: 1.4em;
	}
	.page-content h4 {
		font-size: 1.15em;
	}
	.page-content h5 {
		font-size: 1.1em;
	}
	.page-content p,
	.page-content li {
		font-size: 1em;
	}
	.page-content p {
	  margin-bottom: 1.2em;
	}
	.text--intro p {
		font-size: 1.1em;
	}
	.content--home p {
		font-size: 1.1em;
	}
}





/*------------------------------------*\
  #COMPONENTS
\*------------------------------------*/


.button {
	display: inline-block;
	font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
	text-align: center;
	font-size: 1.5em;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.2;
	color: #fff;
	background: #2a2a2a;
	padding: 0.8em 1.5em;
	cursor: pointer;
	-webkit-transition: background 0.5s ease;
					transition: background 0.5s ease;
}
.button--green {
	background: #76be42;
}
.button--green:hover {
	background: #2a2a2a;
}

.back {
	position: relative;
	display: inline-block;
	font-size: 0.95em;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #2a2a2a;
	padding-left: 1.5em;
	margin-bottom: 2.5em;
	-webkit-transition: color 0.5s ease;
					transition: color 0.5s ease;
}
.back::before {
	position: absolute;
	content: '';
	width: 0.7em;
	height: 0.7em;
	top: 0;
	left: 0;
	bottom: 0;
	border: solid #009490;
  border-width: 0 2px 2px 0;
  margin: auto 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.back:hover {
	color: #009490;
}


@media only screen and (max-width: 1200px) {
	.button {
		font-size: 1.4em;
	}
}

@media only screen and (max-width: 850px) {
	.button {
		font-size: 1.3em;
	}
}

@media only screen and (max-width: 700px) {
	.button {
		font-size: 1.1em;
	}
}





/*------------------------------------*\
  #CTA-BLOCK
\*------------------------------------*/


.cta-block {
	display: flex;
	align-items: flex-start;
}
.block--teal {
	flex-direction: row-reverse;
}

.cta-block__img {
	width: 55%;
}

.cta-block__content {
	display: flex;
	flex-direction: column;
	width: 45%;
	margin-top: 2.5em;
}

.content__headline {
	position: relative;
	display: inline-block;
}
.block--green .content__headline {
	align-self: flex-start;
	background: #76be42;
	padding: 1.8em 3.5em 1.8em 10%;
	margin-right: 5%;
}
.block--teal .content__headline {
	align-self: flex-end;
	text-align: right;
	background: #009490;
	padding: 1.8em 10% 1.8em 3.5em;
	margin-left: 5%;
}
.content__headline h2 {
	margin: 0;
}

.content__text {
	margin-top: 1.8em;
}
.block--green .content__text {
	margin-left: 10%;
}
.block--teal .content__text {
	text-align: right;
	margin-right: 10%;
}
.content__text p {
	font-size: 1.5em;
	font-weight: 500;
	line-height: 1.6;
}

.content__text .button {
	margin-top: 1.5em;
}
.block--green .button:hover {
	background: #76be42;
}
.block--teal .button:hover {
	background: #009490;
}


@media only screen and (max-width: 1450px) {
	.block--green .content__headline {
		padding: 1.2em 3em 1.2em 10%;
	}
	.block--teal .content__headline {
		padding: 1.2em 10% 1.2em 3em;
	}
	.content__headline h2 {
		font-size: 2.8em;
	}
	.content__text p {
		font-size: 1.4em;
	}
	.content__text .button {
		margin-top: 1.3em;
	}
}

@media only screen and (max-width: 1300px) {
	.cta-block__content {
		margin-top: 2em;
	}
	.content__headline h2 {
		font-size: 2.6em;
	}
	.content__text p {
		font-size: 1.3em;
	}
}

@media only screen and (max-width: 1200px) {
	.content__headline h2 {
		font-size: 2.4em;
	}
	.content__text p {
		font-size: 1.2em;
	}
}

@media only screen and (max-width: 1100px) {
	.block--green .content__headline,
	.block--teal .content__headline {
		margin: 0;
	}
}

@media only screen and (max-width: 1000px) {
	.cta-block {
		display: block;
	}
	.cta-block__img {
		width: 100%;
	}
	.cta-block__content {
		width: 80%;
		margin: -3em auto 0;
	}
	.block--teal {
		text-align: right;
	}
	.content__headline {
		display: inline-block;
		max-width: 500px;
	}
	.block--green .content__headline {
		padding: 1.2em 8em 1.2em 3em;
	}
	.block--teal .content__headline {
		padding: 1.2em 3em 1.2em 8em;
	}
	.block--green .content__text {
		margin-left: 3em;
	}
	.block--teal .content__text {
		margin-right: 3em;
	}
	.content__text {
		margin-top: 2em;
	}
}

@media only screen and (max-width: 700px) {
	.cta-block__content {
		width: 90%;
		margin: -3em auto 0;
	}
	.content__headline {
		max-width: 100%;
	}
	.block--green .content__headline {
		padding: 1em 2.5em 1em 1.6em;
	}
	.block--teal .content__headline {
		padding: 1em 1.6em 1em 2.5em;
	}
	.content__headline h2 {
		font-size: 2em;
	}
	.block--green .content__text {
		margin-left: 0;
	}
	.block--teal .content__text {
		margin-right: 0;
	}
	.content__text {
		margin-top: 1.5em;
	}
	.content__text p {
		font-size: 1.1em;
	}
}

@media only screen and (max-width: 500px) {
	.content__headline h2 {
		font-size: 1.8em;
	}
	.content__text p {
		font-size: 1em;
	}
}





/*------------------------------------*\
  #SOCIAL
\*------------------------------------*/


section.social,
section.map {
	padding: 6em 0;
	margin: 0 auto;
}

.social {
	position: relative;
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.social__wrap {
	display: flex;
	justify-content: space-between;
}

.social__block {
	width: 49%;
	text-align: center;
}
.social__block h2 {
	text-align: left;
}

.notification {
	height: 150px;
	background: #fff;
	margin: 1.5em 0;
}

.map h2 {
	color: #2a2a2a;
}
.map p {
	max-width: 1100px;
}
.map img {
	margin: 3em auto 2em;
}


@media only screen and (max-width: 1100px) {
	.notification {
		height: 120px;
		margin: 1.2em 0;
	}
}

@media only screen and (max-width: 950px) {
	.social__wrap {
		display: block;
	}
	.social__block {
		width: 100%;
		max-width: 700px;
		margin: 0 auto;
	}
	.social__block:first-child {
		margin-bottom: 4em;
	}
}

@media only screen and (max-width: 850px) {
	section.social,
	section.map {
		padding: 5em 0;
	}
	.map img {
		margin: 2em auto 1em;
	}
}

@media only screen and (max-width: 700px) {
	section.social,
	section.map {
		padding: 4em 0;
	}
	.social__block:first-child {
		margin-bottom: 3em;
	}
	.notification {
		height: 100px;
		margin: 1em 0;
	}
}




/*------------------------------------*\
  #SUBPAGE
\*------------------------------------*/


section.banner {
	position: relative;
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 12% 0;
  margin: 0;
}

.text p {
	max-width: 1100px;
}

.text--intro p {
	max-width: 1200px;
}


@media only screen and (max-width: 600px) {
	.banner {
	  padding: 15% 0;
	}
}





/*------------------------------------*\
  #SUBNAV
\*------------------------------------*/


section.subnav {
	background: #009490;
	padding: 0 3%;
	margin: 0.2em auto 0;
}

.subnav__wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.subnav__wrap span {
	display: block;
	font-family: 'Nexa W05 Heavy', Arial, sans-serif;
	padding: 1em 0;
	margin-right: 3em;
}
.subnav__wrap span::after {
	position: absolute;
	content: '';
	width: 2px;
	height: 50%;
	top: 0;
	right: -2em;
	bottom: 0;
	background: #76be42;
	margin: auto;
}
.subnav__inner {
	overflow-x: auto;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}
.subnav__inner::after {
	position: absolute;
	content: '';
	width: 1.5em;
	height: 100%;
	background: linear-gradient(to right, transparent, #009490);
	top: 0;
	right: 0;
	pointer-events: none;
	z-index: 2;
}

.subnav ul {
	position: relative;
	display: flex;
	align-items: center;
}
.subnav__wrap span,
.subnav li {
	position: relative;
	font-size: 1.1em;
	font-weight: 500;
	line-height: 1.2;
	color: #fff;
	white-space: nowrap;
}
.subnav li a {
	display: block;
	padding: 1em;
	-webkit-transition: background 0.5s ease;
					transition: background 0.5s ease;
}
.subnav li.active,
.subnav li a:hover {
	background: #76be42;
}

.subnav li.active:hover {
	cursor: default;
}


@media only screen and (max-width: 1400px) {
	.subnav__wrap span,
	.subnav li {
		font-size: 1em;
	}
	.subnav__wrap span {
		margin-right: 2.6em;
	}
	.subnav__wrap span::after {
		right: -1.8em;
	}
}

@media only screen and (max-width: 950px) {
	.subnav__wrap span,
	.subnav li {
		font-size: 0.95em;
	}
}

@media only screen and (max-width: 800px) {
	.subnav__wrap span,
	.subnav li {
		font-size: 0.9em;
	}
	.subnav__wrap span {
		margin-right: 1.8em;
	}
	.subnav__wrap span::after {
		right: -1.5em;
	}
}

@media only screen and (max-width: 600px) {
	.subnav__wrap span,
	.subnav li {
		font-size: 0.85em;
	}
	.subnav__wrap span {
		margin-right: 1.6em;
	}
	.subnav__wrap span::after {
		right: -1.4em;
	}
}





/*------------------------------------*\
  #REVEAL
\*------------------------------------*/


section.reveal {
	margin: 0 auto;
}
.text + section.reveal {
	margin-top: -1.5em;
}

.reveal .reveal__block {
	border-top: 1px solid #009490;
}
.reveal + .reveal .reveal__block {
	border-top: none;
}
.reveal__block {
	border-bottom: 1px solid #009490;
}

.reveal__title {
	position: relative;
	padding: 1.2em 0.5em;
	cursor: pointer;
}
.reveal__title h3 {
	margin: 0;
	-webkit-transition: all 0.5s ease;
  				transition: all 0.5s ease;
}
.reveal__title:hover h3 {
	color: #76be42;
}
.reveal__title::after {
	position: absolute;
	content: '';
  width: 25px;
  height: 25px;
  top: -0.8em;
  right: 0.5em;
  bottom: 0;
  border: solid #76be42;
  border-width: 0 2px 2px 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  				transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  				transition: all 0.5s ease;
}
.reveal__block.open .reveal__title::after { 
	top: 1em;
	border: solid #009490;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(-135deg);
  				transform: rotate(-135deg);
}

.reveal__content {
	display: none;
	padding: 1em 0.5em 3em;
}

.reveal__inner {
	display: flex;
}
.reveal__inner .text p:last-of-type {
	margin-bottom: 0;
}


@media only screen and (max-width: 1100px) {
	.reveal__inner {
		display: block;
	}
}

@media only screen and (max-width: 850px) {
	.reveal__title::after {
	  width: 20px;
	  height: 20px;
	}
}





/*------------------------------------*\
  #RELATED-LINKS
\*------------------------------------*/


.related {
	width: 32%;
	min-width: 27em;
	padding-left: 5%;
}

.related h4 {
	font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
	font-size: 1.9em;
	margin-bottom: 0.6em;
}
.related p {
	font-weight: 500;
}

.related-link {
	display: block;
	font-size: 1.1em;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: underline;
	color: #009490;
	margin-bottom: 0.6em;
	-webkit-transition: color 0.5s ease;
					transition: color 0.5s ease;
}
.related-link:hover {
	color: #76be42;
}

/*
.reveal--related .text {
	width: 68%;
}
.image-text--related  .image-text__inner {
	width: 68%;
}
*/


@media only screen and (max-width: 1300px) {
	.related {
		min-width: 25em;
	}
}

@media only screen and (max-width: 1200px) {
	.related h4 {
		font-size: 1.7em;
		margin-bottom: 0.5em;
	}
	.related p {
		margin-bottom: 1em;
	}
	.related-link {
		font-size: 1.05em;
		margin-bottom: 0.5em;
	}
}

@media only screen and (max-width: 1100px) {
	.related {
		width: 100%;
		min-width: inherit;
		padding: 0;
		margin-top: 3em;
	}
	.related h4 {
		font-size: 1.5em;
	}
}

@media only screen and (max-width: 700px) {
	.related-link {
		font-size: 1em;
	}
}





/*------------------------------------*\
  #IMAGE-TEXT
\*------------------------------------*/


.image-text__wrap {
	display: flex;
}

.image-text__block {
	display: flex;
	align-items: center;
	margin-bottom: 4em;
}
.image-text__block:last-child {
	margin: 0;
}
.image-text__block img {
	width: 40%;
}
.image-text__content {
	padding-left: 5%;
}
.image-text__content p:last-of-type {
	margin: 0;
}


@media only screen and (max-width: 1200px) {
	.image-text__block {
		margin-bottom: 3em;
	}
}

@media only screen and (max-width: 1100px) {
	.image-text__wrap {
		display: block;
	}
}

@media only screen and (max-width: 750px) {
	.image-text__block {
		display: block;
		margin-bottom: 2.5em;
	}
	.image-text__block img {
		width: 100%;
		max-width: 22em;
	}
	.image-text__content {
		padding: 0;
		margin-top: 1.5em;
	}
}





/*------------------------------------*\
  #CARDS
\*------------------------------------*/


.cards {
	max-width: 1000px;
}

.card {
	display: block;
	background: #fff;
	box-shadow: 0 1px 4px rgba(0,0,0, 0.15), 0 1px 3px rgba(0,0,0, 0.25);
	margin-bottom: 1.5em;
	-webkit-transition: box-shadow 0.5s ease, background 0.5s ease;
					transition: box-shadow 0.5s ease, background 0.5s ease;
}
.card:hover {
	box-shadow: 0 3px 6px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.25);
}

.card--event {
	background: #76be42;
	border-left: 10px solid #009490;
}
.card--event:hover {
	background: #009490;
}

.card--article {
	border-left: 20px solid #76be42;
	-webkit-transition: box-shadow 0.5s ease, border-color 0.5s ease;
					transition: box-shadow 0.5s ease, border-color 0.5s ease;
}
.card--article:hover {
	border-color: #009490;
}
.card--featured {
	border-color: #009490;
}
.card--featured:hover {
	border-color: #76be42;
}
.card--featured .card__content h4 {
	font-size: 2.5em;
}
.card__category {
	display: inline-block;
	font-size: 1em;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.2;
	color: #fff;
	background: #76be42;
	padding: 0.6em 0.9em 0.5em;
	margin-bottom: 1em;
	-webkit-transition: background 0.5s ease;
					transition: background 0.5s ease;
}
.card--featured:hover .card__category {
	background: #009490;
}
.card__author {
	display: block;
	font-family: 'Nexa W05 Heavy', Arial, sans-serif;
	font-size: 1em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.3;
	color: #76be42;
	margin: 1.2em 0 1em;
}

.card__inner {
	display: flex;
	align-items: center;
}

.card__info {
	min-width: 12em;
	padding: 1em;
}
.card__info span {
	display: block;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
}
.info__day,
.info__month,
.info__time {
	font-family: 'Nexa W05 Heavy', Arial, sans-serif;
	font-size: 1.1em;
	letter-spacing: 0.1em;
	line-height: 1.3;
}
.info__date {
	font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
	font-size: 4.5em;
	line-height: 1;
	margin: 0.1em 0;
}

.card__content {
	padding: 2em;
	background: #fff;
}
.card__content h4 {
	font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
	font-size: 1.5em;
	line-height: 1.3;
	margin-bottom: 0.5em;
}

.card__link {
	position: relative;
	display: inline-block;
	font-size: 0.95em;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #009490;
	-webkit-transition: color 0.5s ease;
					transition: color 0.5s ease;
}
.card__link::after {
	position: absolute;
	content: '';
	width: 0.5em;
	height: 0.5em;
	top: 0;
	bottom: 0;
	border: solid #76be42;
  border-width: 0 2px 2px 0;
  margin: auto 0 auto 0.3em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.card:hover .card__link {
	color: #76be42;
}





/*------------------------------------*\
  #SITES
\*------------------------------------*/


.sites {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 5%;
}

.card--site {
	width: 24%;
}
.card__image {
	position: relative;
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 38% 0;
  margin: 0;
}
.card--site .card__category {
	position: absolute;
	min-width: 12em;
	top: 0;
	right: 0;
	text-align: center;
}
.category--teal {
	background: #009490;
}
.category--red {
	background: #940000;
}
.category--light {
	background: #d6d755;
}
.card--site .card__content {
	padding: 1.5em;
}
.card--site .card__content h5 {
	font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
	font-size: 1.1em;
	color: #009490;
}
.card__type {
	letter-spacing: 0.03em;
	color: #76be42;
}





/*------------------------------------*\
  #NEWS
\*------------------------------------*/


.news__content {
	padding: 0 10%;
	margin-top: 3em;
}





















/*------------------------------------*\
  #SLIDER-CAPTION
\*------------------------------------*/


section.slider__wrap {
	position: relative;
	margin: 0 auto;
}

.slide {
	position: relative;
	width: 100%;
}

.slide__banner {
	position: relative;
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.slide__banner::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(52,52,52, 0.2);
}

.slide__overlay {
	position: relative;
	text-align: center;
	padding: 18% 0;
	z-index: 2;
}
.slide h1 {
	font-size: 5em;
	font-weight: 500;
	color: #fff;
}

.slider__caption {
	position: relative;
	width: 90%;
	max-width: 1400px;
	margin: -4em auto 0;
	z-index: 99;
}
.caption__content {
	position: relative;
	background: #009490;
	padding: 2.5em 7em 2.5em 3em;
	clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
	margin: 0 5% 0 0;
	z-index: 99;
}
.caption__content p {
	color: #fff;
}


@media only screen and (max-width: 1600px) {
	.slide h1 {
		font-size: 4.5em;
	}
}

@media only screen and (max-width: 1400px) {
	.slide h1 {
		font-size: 4em;
	}
}

@media only screen and (max-width: 1200px) {
	.slide__overlay {
		padding: 20% 0;
	}
	.slide h1 {
		font-size: 3.5em;
	}
	.slider__caption {
		margin: -3em auto 0;
	}
	.caption__content {
		padding: 2em 6em 2em 2.5em;
	}
}

@media only screen and (max-width: 1100px) {
	.slide h1 {
		font-size: 3em;
	}
	.caption__content {
		margin: 0;
	}
	.caption__content p {
		font-size: 1.1em;
	}
}

@media only screen and (max-width: 950px) {
	.slide h1 {
		font-size: 2.8em;
	}
}

@media only screen and (max-width: 850px) {
	.slide__overlay {
		padding: 22% 0;
	}
	.slide h1 {
		font-size: 2.6em;
	}
	.caption__content {
		padding: 2em 2.5em;
		clip-path: none;
	}
}

@media only screen and (max-width: 700px) {
	.slide__overlay {
		padding: 22% 0;
	}
	.slide h1 {
		font-size: 2.4em;
		padding: 0 2em;
	}
	.slider__caption {
		margin: -2em auto 0;
	}
	.caption__content {
		padding: 1.5em 2em;
		clip-path: none;
	}
	.caption__content p {
		font-size: 1em;
	}
}

@media only screen and (max-width: 500px) {
	.slide__overlay {
		padding: 25% 0;
	}
	.slide h1 {
		font-size: 2em;
		padding: 0 1.5em;
	}
}





/*------------------------------------*\
  #SLIDER-NAV
\*------------------------------------*/


.slick-prev,
.slick-next {
	display: block;
	position: absolute;
	width: 40px;
	height: 55px;
	top: 50%;
	font-size: 0;
  line-height: 0;
  color: transparent;
	background: transparent;
	outline: none;
	z-index: 99;
  cursor: pointer;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.slick-prev {
  left: 25px;
}
.slick-next {
  right: 25px;
}
.slick-prev::after,
.slick-next::after {
	position: absolute;
	content: '';
	width: 35px;
  height: 35px;
  top: 0;
  bottom: 0;
	border: solid rgba(255,255,255, 0.8);
  border-width: 0 2px 2px 0;
  margin: auto;
  -webkit-transition: border-color 0.3s ease-in-out;
          transition: border-color 0.3s ease-in-out;
}
.slick-prev::after {
	left: 15px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.slick-next::after {
	right: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.slick-prev:hover::after,
.slick-next:hover::after {
	border: solid rgba(255,255,255, 1);
  border-width: 0 2px 2px 0;
}

.slick-dots {
  position: absolute;
  display: block;
  height: 50px;
  top: -49px;
  left: 3em;
  list-style: none;
  background: rgba(118,190,66, 0.8);
  padding: 0.8em 1.2em;
  margin: 0;
  z-index: 9;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  padding: 0;
  margin: 0 5px;
  cursor: pointer;
}
.slick-dots li button {
	display: block;
  width: 14px;
  height: 14px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  background: transparent;
  padding: 5px;
  border: 1px solid #fff;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  background: #d6d955;
  border: 1px solid #d6d955;
}
.slick-dots li.slick-active button {
	background: #d6d955;
  border: 1px solid #d6d955;
}


@media only screen and (max-width: 1200px) {
	.slick-dots {
	  height: 40px;
	  top: -39px;
	  left: 2.5em;
	  padding: 0.5em 1em;
	}
	.slick-dots li,
	.slick-dots li button {
	  width: 12px;
	  height: 12px;
	}
	.slick-prev::after,
	.slick-next::after {
		width: 30px;
	  height: 30px;
	}
	.slick-prev::after {
		left: 0;
	}
	.slick-next::after {
		right: 0;
	}
}

@media only screen and (max-width: 700px) {
	.slick-dots {
	  left: 2em;
	}
	.slick-prev::after,
	.slick-next::after {
		width: 25px;
	  height: 25px;
	}
}





/*------------------------------------*\
  #SLIDER-BASE
\*------------------------------------*/


.slick-slider {
  display: block;
  position: relative;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
     -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: inherit;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

.slider .slide,
.slider-nav .slide {
  display: none;
}
.slider.slick-initialized .slide,
.slider-nav.slick-initialized .slide {
  display: block;
}





/*------------------------------------*\
  #FOOTER
\*------------------------------------*/


.page-foot {
	background: #2a2a2a;
}

.page-foot__inner {
	padding: 2.5em 0;
}
.page-foot__inner p,
.page-foot__inner a {
	font-size: 1em;
	font-weight: 400;
	line-height: 1.2;
	color: #fff;
	-webkit-transition: color 0.5s ease;
					transition: color 0.5s ease;
}
.page-foot__inner a:hover {
	color: #76be42;
}

.page-foot__top,
.page-foot__nav {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.page-foot__top {
	margin-bottom: 2.5em;
}
.page-foot__nav {
	margin-bottom: 4em;
}

.page-foot img {
	display: block;
	width: 215px;
}

.sign-up {
	margin-top: 0.5em;
}
.sign-up p {
	font-size: 0.9em;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 0.6em;
}
.sign-up__wrap {
	display: flex;
}
.sign-up__input,
.sign-up__button {
	display: block;
  font-family: "Gotham A", "Gotham B";
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.2;
}
.sign-up__input {
	max-width: 240px;
	color: #fff;
  background: #000;
  border: 0;
  padding: 0.6em 0.8em 0.5em;
  -webkit-transition: all 0.5s;
    			transition: all 0.5s;
}
.sign-up__input:focus {
  outline: none;
}
.sign-up__input::placeholder {
  color: #949494;
  opacity: 1;
}
.sign-up__input:-ms-input-placeholder {
  color: #949494;
}
.sign-up__input::-ms-input-placeholder {
  color: #949494;
}
.sign-up__button {
	color: #949494;
	background: #fff;
	padding: 0 0.5em;
	outline: 0;
	-webkit-transition: background 0.5s ease, color 0.5s ease;
					transition: background 0.5s ease, color 0.5s ease;
}
.sign-up__button:hover {
	color: #fff;
	background: #76be42;
}

.page-foot__nav {
	max-width: 1300px;
}
.page-foot__nav li {
	margin: 0.8em 0;
}
.page-foot__nav li:first-child,
.page-foot__nav ul:last-child li {
	margin: 0 0 0.8em;
}
.page-foot__nav li:first-child a {
	font-size: 1.4em;
	font-weight: 700;
	color: #009490;
}
.page-foot__nav ul:last-child li a {
	font-size: 1.1em;
	font-weight: 700;
	text-transform: uppercase;
	color: #76be42;
}
.page-foot__nav ul:last-child li a:hover {
	color: #009490;
}

.page-foot__bottom {
	display: flex;
}
.page-foot__bottom p,
.page-foot__bottom a {
	display: inline-block;
	line-height: 1.5;
	color: #949494;
}
.page-foot__links {
	margin-left: 2em;
}
.page-foot__links a {
	margin-right: 1.5em;
	-webkit-transition: color 0.5s ease;
					transition: color 0.5s ease;
}
.page-foot__links a:last-child {
	margin: 0;
}


@media only screen and (max-width: 1300px) {
	.page-foot__nav ul {
		margin-right: 1.5em;
	}
	.page-foot__nav ul:last-child {
		margin: 0;
	}
}

@media only screen and (max-width: 1200px) {
	.sign-up {
		margin-top: 0.5em;
	}
	.page-foot__nav {
		margin-bottom: 3.5em;
	}
	.page-foot__bottom p,
	.page-foot__bottom a {
		font-size: 0.9em;
	}
}

@media only screen and (max-width: 1100px) {
	.page-foot__inner {
		padding: 2.5em 0;
	}
	.page-foot__inner p,
	.page-foot__inner a {
		font-size: 0.9em;
	}
	.page-foot__nav {
		margin-bottom: 3em;
	}
	.page-foot__nav li:first-child a,
	.sign-up__input,
	.sign-up__button {
		font-size: 1.05em;
	}
	.page-foot__nav ul:last-child li a {
		font-size: 0.95em;
	}
	.page-foot__bottom {
		display: block;
	}
	.page-foot__bottom p,
	.page-foot__links {
		width: 100%;
	}
	.page-foot__links {
		margin: 1em 0 0;
	}
}

@media only screen and (max-width: 950px) {
	.page-foot__top {
		align-items: center;
	}
	.page-foot img {
		width: 200px;
	}
	.sign-up__input {
		max-width: 220px;
	}
	.page-foot__nav {
		flex-wrap: wrap;
		margin-bottom: 2em;
	}
	.page-foot__nav ul {
		width: 30%;
		margin: 0 0 1em;
	}
}

@media only screen and (max-width: 700px) {
	.page-foot__bottom p,
	.page-foot__bottom a {
		font-size: 0.8em;
	}
}

@media only screen and (max-width: 600px) {
	.page-foot__top {
		display: block;
	}
	.page-foot img {
		width: 180px;
		margin-bottom: 2.5em;
	}
	.page-foot__nav ul {
		width: 40%;
	}
}









