

/*------------------------------------*\
  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: sticky;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 8px 6px -6px rgba(0,0,0, 0.3);
  -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 1.8em;
}

.page-head__logo {
  width: 210px;
  margin-bottom: 0.6em;
}

.menu-button,
.search-icon {
  display: flex;
  align-items: center;
  min-width: 90px;
  height: 4.9em;
  cursor: pointer;
  -webkit-transition: background 0.5s ease;
          transition: background 0.5s ease;
}
.menu-button {
  background: #009490;
}
.menu-button:hover {
  background: #000;
}
.search-icon {
  background: #e7e7e7;
}
.search-icon img {
  max-width: 38px;
  margin: auto;
}
.search-icon:hover {
  background: #d4d4d4;
}
.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 1.5em;
  }
  .page-head__logo {
    width: 200px;
    margin-bottom: 0.5em;
  }
  .menu-button,
  .search-icon {
    min-width: 80px;
    height: 4.6em;
  }
  .menu-button span,
  .how-link span {
    font-size: 1.2em;
  }
  .search-icon img {
    max-width: 32px;
  }
}

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

@media only screen and (max-width: 600px) {
  .page-head__inner {
    padding: 0 1em;
  }
  .page-head__logo {
    width: 150px;
    margin-bottom: 0.4em;
  }
  .menu-button,
  .search-icon {
    min-width: 70px;
    height: 3.7em;
  }
  .menu-button span,
  .how-link span {
    font-size: 1em;
  }
  .search-icon img {
    max-width: 24px;
  }
}

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





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


.how-dropdown {
  position: absolute;
  top: 100%;
  left: 90px;
  right: 90px;
  background: #fff;
  padding: 0 10%;
  box-shadow: 0 -10px 0 #fff, 0 2px 10px rgba(0,0,0, 0.3);
  z-index: 999;
}

.how-dropdown__close {
  position: absolute;
  font-size: 4em;
  line-height: 1;
  top: 0;
  right: 0.4em;
  color: #2a2a2a;
  cursor: pointer;
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.how-dropdown__close:hover {
  color: #76be42;
}

.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__close {
    font-size: 3.5em;
    right: 0.5em;
  }
  .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 {
    left: 80px;
    right: 80px;
    padding: 0 5%;
  }
  .how-dropdown__inner {
    padding: 1.5em 0;
  }
  .how-dropdown__close {
    font-size: 3.2em;
    right: 0.45em;
  }
  .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 {
    left: 75px;
    right: 75px;
  }
  .how-dropdown__close {
    font-size: 2.6em;
  }
  .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 {
    left: 0;
    right: 0;
    box-shadow: 0 10px 6px -6px rgba(0,0,0, 0.3);
  }
  .how-dropdown__close {
    right: 0.55em;
  }
}

@media only screen and (max-width: 500px) {
  .how-dropdown__close {
    right: 0.45em;
  }
}





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


.search {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background: #e7e7e7;
  z-index: 999;
}

.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: #e7e7e7;
  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__input {
    font-size: 1.8em;
  }
}

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

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





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


.page-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  -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;
  font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
  color: #fff;
  text-align: center;
  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.6em 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.1em 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;
}

main {
  position: relative;
}

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

.content--subpage {
  padding-bottom: 8em;
}

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

a.anchor,
a.anchor-reveal {
  display: block;
  position: relative;
  visibility: hidden;
}
a.anchor {
  top: -11em;
}
a.anchor-reveal {
  top: -8em;
}

.sites-link {
  position: absolute;
  display: inline-block;
  font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
  text-align: center;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  top: 0;
  right: 1.7em;
  background: #76be42;
  padding: 0.8em 1.15em;
  z-index: 99;
  -webkit-transition: background 0.5s ease;
          transition: background 0.5s ease;
}
.sites-link:hover {
  background: #009490;
}


@media only screen and (max-width: 1100px) {
  a.anchor {
    top: -10em;
  }
  a.anchor-reveal {
    top: -7.5em;
  }
  .sites-link {
    font-size: 0.9em;
    letter-spacing: 0.05em;
    right: 1.5em;
    padding: 0.8em 1em;
  }
}

@media only screen and (max-width: 850px) {
  .content--home section {
    margin: 5em auto;
  }
  .content--subpage section {
    margin: 3em auto;
  }
  a.anchor {
    top: -9em;
  }
  a.anchor-reveal {
    top: -7em;
  }
  .sites-link {
    font-size: 0.85em;
    letter-spacing: 0.03em;
    padding: 0.8em 0.9em;
  }
}

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

@media only screen and (max-width: 600px) {
  a.anchor {
    top: -8em;
  }
  a.anchor-reveal {
    top: -6.2em;
  }
  .sites-link {
    font-size: 0.8em;
    padding: 0.8em;
  }
}

@media only screen and (max-width: 500px) {
  a.anchor {
    top: -7.5em;
  }
  a.anchor-reveal {
    top: -5.6em;
  }
  .sites-link {
    font-size: 0.75em;
    letter-spacing: 0.01em;
    padding: 0.7em 0.8em;
    right: 1.4em;
  }
}

@media only screen and (max-width: 450px) {
  .sites-link {
    display: none;
  }
}





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


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

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

.page-content h2,
.content--subpage h1 {
  font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
  font-size: 3.2em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.5em;
}
.content--subpage h1 {
  font-size: 3.2em;
  color: #2a2a2a;
}
.content--subpage h2 {
  font-size: 2.8em;
  color: #76be42;
  margin-bottom: 0.7em;
}
.content--home h2 {
  margin-bottom: 0.7em;
}

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

.page-content h4 {
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.4;
  color: #009490;
  margin-bottom: 0.2em;
}

.page-content h5 {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.4;
  color: #606060;
  margin-bottom: 0.2em;
}

.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,
.text ul,
.news__content ul,
.event__content ul {
  margin-bottom: 1.5em;
}
.page-content p a,
.text li a,
.news__content li a,
.event__content li a {
  font-weight: 500;
  text-decoration: underline;
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.page-content p a:hover,
.text li a:hover,
.news__content li a:hover,
.event__content li a:hover {
  color: #76be42;
}

.page-content h4 + h5 {
  margin: 1em 0 0.2em;
}

.text ul,
.news__content ul,
.event__content ul {
  list-style: none;
}
.text li,
.news__content li,
.event__content li {
  position: relative;
  padding-left: 1em;
  margin: 0.5em 0;
}
.text li::before,
.news__content li::before,
.event__content li::before  {
  position: absolute;
  content: '\2022';
  top: 0;
  left: 0;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 700;
  color: #009490;
}

.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) {
  .content--subpage h1 {
    font-size: 3em;
  }
  .page-content h2 {
    font-size: 2.6em;
  }
  .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) {
  .content--subpage h1 {
    font-size: 2.6em;
  }
  .page-content h2 {
    font-size: 2.4em;
  }
  .page-content h3 {
    font-size: 1.6em;
  }
  .page-content h4,
  .page-content h6 {
    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) {
  .content--subpage h1 {
    font-size: 2.4em;
  }
  .page-content h2 {
    font-size: 2.2em;
  }
  .text--intro p {
    font-size: 1.2em;
  }
}

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

@media only screen and (max-width: 700px) {
  .content--subpage h1 {
    font-size: 2em;
  }
  .page-content h2 {
    font-size: 1.8em;
  }
  .page-content h3 {
    font-size: 1.4em;
  }
  .page-content h4,
  .page-content h6 {
    font-size: 1.15em;
  }
  .page-content h5 {
    font-size: 1.1em;
  }
  .page-content p,
  .page-content li {
    font-size: 1em;
  }
  .page-content p,
  .text ul {
    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;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  background: #2a2a2a;
  padding: 0.8em 1.5em;
  cursor: pointer;
  -webkit-transition: background 0.5s ease;
          transition: background 0.5s ease;
}
.button--black:hover,
.button:hover {
  background: #76be42;
}
.button--green {
  background: #76be42;
}
.button--green:hover {
  background: #2a2a2a;
}

p a.button {
  text-decoration: none;
  margin-top: 0.5em;
  -webkit-transition: background 0.5s ease;
          transition: background 0.5s ease;
}
p a.button:hover {
  color: #fff;
}

.switch-button__wrap {
  max-width: 450px;
  margin: 0 auto;
}
.switch-button__inner {
  display: flex;
  border: 2px solid #2a2a2a;
}
.switch-button__inner .button {
  display: block;
  width: 50%;
  color: #2a2a2a;
  background: #fff;
}
.switch-button__inner .button--active {
  color: #fff;
  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;
}

.scroll {
  position: absolute;
  right: 0;
  bottom: 4em;
  background: #fff;
  padding: 0.8em 0.8em 2.8em;
  box-shadow: 0 1px 4px rgba(0,0,0, 0.15), 0 1px 3px rgba(0,0,0, 0.25);
  cursor: pointer;
  -webkit-transition: box-shadow 0.5s ease;
          transition: box-shadow 0.5s ease;
  z-index: 99;
}
.scroll:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.25);
}
.scroll span {
  font-size: 0.8em;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #949494;
  text-transform: uppercase;
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.scroll:hover span {
  color: #76be42;
}
.scroll::after {
  position: absolute;
  content: '';
  width: 1.8em;
  height: 1.8em;
  left: 0;
  right: 0;
  bottom: 0.2em;
  border: solid #949494;
  border-width: 0 3px 3px 0;
  margin: 0 auto;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition: border-color 0.5s ease;
          transition: border-color 0.5s ease;
}
.scroll:hover::after {
  border-color: #76be42;
}


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

@media only screen and (max-width: 1100px) {
  .scroll {
    padding: 0.6em 0.7em 2.4em;
  }
  .scroll span {
    font-size: 0.7em;
  }
  .scroll::after {
    width: 1.5em;
    height: 1.5em;
  }
}

@media only screen and (max-width: 950px) {
  .back {
    font-size: 0.85em;
    padding-left: 1.2em;
  }
}

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

@media only screen and (max-width: 700px) {
  .button {
    font-size: 1.1em;
  }
  .scroll {
    padding: 0.4em 0.6em 1.9em;
  }
  .scroll span {
    font-size: 0.6em;
  }
  .scroll::after {
    width: 1.2em;
    height: 1.2em;
  }
}






/*------------------------------------*\
  #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;
}
.content__headline::after {
  position: absolute;
  content: '';
  width: 9%;
  height: 100%;
  top: 0;
}
.block--green .content__headline {
  align-self: flex-start;
  background: #76be42;
  padding: 1.8em 3.5em 1.8em 10%;
  margin-right: 5%;
}
.block--green .content__headline::after {
  right: -9%;
  background: linear-gradient(to left bottom, rgba(255,255,255, 0) 49.5%, #76be42 50.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%;
}
.block--teal .content__headline::after {
  left: -9%;
  background: linear-gradient(to right bottom, rgba(255,255,255, 0) 49.5%, #009490 50.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.35em;
  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.35em;
  }
  .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.25em;
  }
}

@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-link {
  position: relative;
  display: block;
  margin: 3em 0 2em;
}
.map-link:hover .map-link__overlay {
  opacity: 1;
}
.map-link__overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,144,148, 0.8);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
          transition: opacity 0.5s ease;
}
.map-link__overlay span {
  display: block;
  font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}


@media only screen and (max-width: 1200px) {
  .map-link__overlay span {
    font-size: 2.6em;
  }
}

@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;
  }
  .map-link__overlay span {
    font-size: 2.2em;
  }
}

@media only screen and (max-width: 850px) {
  section.social,
  section.map {
    padding: 5em 0;
  }
  .map-link {
    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;
  }
  .map-link__overlay span {
    font-size: 1.8em;
  }
}




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


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

.text * {
  max-width: 1100px;
}
.text img {
  margin: 2em 0;
}
.text .button {
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
.text li ul {
  margin: 0;
}
.text li ul li {
  font-size: 1em;
}

.text--intro * {
  max-width: 1220px;
}

.text--column {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.text--column * {
  max-width: 100%;
}
.column {
  width: 47%;
}
.text + .text--column {
  margin-top: -2em;
}


@media only screen and (max-width: 1100px) {
  .text--column {
    display: block;
  }
  .column {
    width: 100%;
  }
}

@media only screen and (max-width: 850px) {
  .text + .text--column {
    margin-top: -1em;
  }
}

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





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


section.subnav {
  position: sticky;
  top: 4.8em;
  background: #009490;
  padding: 0 3%;
  margin: -0.1em auto 0;
  z-index: 99;
}

.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, rgba(0,148,144, 0), #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: 1100px) {
  section.subnav {
    top: 4.5em;
  }
}

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

@media only screen and (max-width: 850px) {
  section.subnav {
    top: 4em;
  }
}

@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) {
  section.subnav {
    top: 3.6em;
  }
  .subnav__wrap span,
  .subnav li {
    font-size: 0.85em;
  }
  .subnav__wrap span {
    margin-right: 1.6em;
  }
  .subnav__wrap span::after {
    right: -1.4em;
  }
}

@media only screen and (max-width: 500px) {
  section.subnav {
    top: 3.2em;
  }
}





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


.reveal__block {
  border-bottom: 1px solid #009490;
}
.reveal__block:first-of-type {
  border-top: 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;
  }
}

@media only screen and (max-width: 700px) {
  .reveal__title {
    padding: 1em 0.5em;
  }
}

@media only screen and (max-width: 600px) {
  .reveal__title {
    padding: 0.8em 0.5em;
  }
}





/*------------------------------------*\
  #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;
  line-height: 1.2;
  margin-bottom: 0.6em;
}
.related h5 {
  margin: 1.5em 0 0.5em;
}
.related h4 + h5 {
  margin: 1em 0 0.5em;
}
.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;
}


@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: flex-start;
  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;
  }
}






/*------------------------------------*\
  #FILTER-BUTTON
\*------------------------------------*/


section.filter {
  margin-bottom: 0;
}
.filter {
  max-width: 1000px;
  border-bottom: 1px solid #76be42;
}
.filter + section.cards {
  margin-top: 2em;
}
.filter--sites {
  width: 90%;
  max-width: 1400px;
  border-bottom: none;
}
.filter + section.sites {
  margin-top: 2.5em;
}

.filter__wrap {
  display: flex;
  padding-bottom: 1.5em;
}
.filter--sites .filter__wrap {
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.filter__wrap span {
  display: block;
  font-size: 1.05em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #2a2a2a;
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}

.filter__button {
  position: relative;
  margin: 0 2em;
}
.filter__button:nth-of-type(2)::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  top: 0;
  left: -2em;
  bottom: 0;
  background: #009490;
}
.button__text {
  position: relative;
  padding-right: 1.3em;
  cursor: pointer;
}
.button__text::after {
  position: absolute;
  content: '';
  width: 0.5em;
  height: 0.5em;
  top: 0;
  right: 0;
  bottom: 0;
  border: solid #76be42;
  border-width: 0 2px 2px 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.filter__button span:hover,
span.filter__reset:hover {
  color: #76be42;
}

span.filter__reset {
  text-transform: uppercase;
  color: #bbb;
  margin-left: auto;
  cursor: pointer;
}

.filter .filter__reset {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 700;
  margin-bottom: 1em;
}

.button__dropdown {
  display: none;
  position: absolute;
  min-width: 14em;
  top: 2.5em;
  left: -1.5em;
  text-align: center;
  background: #fff;
  padding: 0 1.5em;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.25);
  z-index: 99;
}
.button__dropdown::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: -0.6em;
  left: 3.5em;
  border: 0.7em solid #fff;
  border-color: transparent transparent #fff #fff;
  box-shadow: -3px 3px 3px 0 rgba(0, 0, 0, 0.05);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.button__dropdown span {
  position: relative;
  margin: 1.5em 0;
  white-space: nowrap;
  cursor: pointer;
}
.button__dropdown span::after {
  position: absolute;
  content: '';
  width: 20%;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -0.75em;
  margin: auto;
  background: #76be42;
}
.button__dropdown span:last-of-type::after {
  display: none;
}

span.dropdown--active {
  color: #76be42;
}

.text--button {
  text-align: center;
}
.news--archive .back {
  margin: 0;
}
.dropdown--open {
  display: block;
}



@media only screen and (max-width: 850px) {
  .filter__wrap span {
    font-size: 1em;
  }
  .button__text::after {
    top: -0.2em;
  }
  .filter .filter__reset {
    font-size: 0.85em;
    margin-bottom: 0.3em;
  }
}

@media only screen and (max-width: 700px) {
  span.filter__text {
    display: none;
  }
  .filter__button {
    margin: 0 1.5em;
  }
  .filter__button:first-of-type {
    margin-left: 0;
  }
  .filter__button:nth-of-type(2)::before {
    left: -1.5em;
  }
  .button__text {
    padding-right: 1em;
  }
  .button__dropdown {
    left: -0.5em;
  }
  .button__dropdown::before {
    left: 2.5em;
  }
}





/*------------------------------------*\
  #FILTER-SELECT
\*------------------------------------*/


.filter__select {
  position: relative;
  width: 23%;
}

span.select__text {
  position: relative;
  display: block;
  font-size: 1.2em;
  color: #fff;
  background: #76be42;
  padding: 0.8em 2.5em 0.8em 1em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0, 0.15), 0 1px 3px rgba(0,0,0, 0.25);
}
span.select__text::after {
  position: absolute;
  content: '';
  width: 0.5em;
  height: 0.5em;
  top: 1.1em;
  right: 1.1em;
  border: solid #009490;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
          transition: all 0.5s ease;
}

.select__option {
  display: none;
  position: absolute;
  width: 100%;
  background: #76be42;
  padding: 0.5em 1.2em;
  box-shadow: 0 1px 4px rgba(0,0,0, 0.15), 0 1px 3px rgba(0,0,0, 0.25);
  border-top: 1px solid #009490;
  z-index: 99;
}
li.option {
  font-size: 1.05em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #fff;
  margin: 0.5em 0;
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
  cursor: pointer;
}
li.option:hover {
  color: #009490;
}

.open .select__option {
  display: block;
}
.open .select__text::after {
  top: 1.25em;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}


@media only screen and (max-width: 1000px) {
  span.select__text {
    font-size: 1.1em;
    padding: 0.7em 2em 0.7em 0.8em;
  }
  span.select__text::after {
    top: 1em;
    right: 0.8em;
  }
  .select__option {
    padding: 0.5em 0.9em;
  }
  li.option {
    font-size: 1em;
  }
}

@media only screen and (max-width: 850px) {
  .filter--sites .filter__wrap {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .filter__select {
    width: 48.5%;
    margin: 0.5em 0;
  }
  span.select__text {
    font-size: 1.1em;
  }
  span.select__text::after {
    top: 1em;
    right: 0.8em;
  }
  .select__option {
    padding: 0.5em 0.9em;
  }
  li.option {
    font-size: 1em;
  }
}





/*------------------------------------*\
  #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;
}
a.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;
}
a.card--event:hover {
  background: #009490;
}

.card--article {
  border-left: 20px solid #76be42;
}
a.card--article {
  -webkit-transition: box-shadow 0.5s ease, border-color 0.5s ease;
          transition: box-shadow 0.5s ease, border-color 0.5s ease;
}
a.card--article:hover {
  border-color: #009490;
}
.card--featured {
  border-color: #009490;
}
a.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;
}
a.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 {
  flex: 0 0 12em;
  padding: 1em;
}
.card__info span {
  display: block;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
.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__time {
  margin-top: 0.3em;
}
.info__date {
  font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
  font-size: 4.5em;
  line-height: 1;
  margin-top: 0.1em;
}

.card__content {
  flex: 1;
  align-self: stretch;
  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);
}
a.card:hover .card__link {
  color: #76be42;
}

.card--ticker {
  padding: 1em 1.5em;
}
.card--ticker {
  text-align: left;
}

.card__text {
  position: relative;
  flex: 1;
  padding: 0.5em 0;
}
.block--events .card__text {
  padding-left: 1.5em;
}
.block--events .card__text::before {
  position: absolute;
  content: '';
  width: 2px;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  background: #dfdfdf;
}
.card__text h4 {
  font-size: 1.2em;
  color: #76be42;
}
.card__text p {
  font-size: 1.1em;
}

.card__date {
  position: relative;
  flex: 0 0 7em;
  text-align: center;
  margin-right: 1.5em;
}
.card__date span {
  display: block;
  font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
  line-height: 1.3;
}
.date__number {
  font-size: 1.7em;
  color: #76be42;
}
.date__month {
  font-size: 1.3em;
  color: #009490;
}


@media only screen and (max-width: 1300px) {
  .card__date {
    margin-right: 1em;
  }
}

@media only screen and (max-width: 1100px) {
  .card__category {
    font-size: 0.9em;
  }
  .card--featured .card__content h4 {
    font-size: 2em;
  }
}

@media only screen and (max-width: 850px) {
  .card--article {
    border-left: 15px solid #76be42;
  }
  .card--featured {
    border-color: #009490;
  }
  .card__content h4 {
    font-size: 1.3em;
  }
  .card--featured .card__content h4 {
    font-size: 1.8em;
  }
  .card__info {
    flex: 0 0 10em;
    padding: 1em 0.5em;
  }
  .info__day,
  .info__month,
  .info__time {
    font-size: 0.9em;
  }
  span.info__date {
    font-size: 3.5em;
  }
}

@media only screen and (max-width: 700px) {
  .card--article {
    border-left: 10px solid #76be42;
  }
  .card--featured {
    border-color: #009490;
  }
  .card__category {
    font-size: 0.85em;
  }
  .card--featured .card__content h4 {
    font-size: 1.6em;
  }
  .card__author {
    font-size: 0.9em;
  }
  .card__link {
    font-size: 0.9em;
  }
  .card__info {
    flex: 0 0 8.5em;
  }
  .info__day,
  .info__month,
  .info__time {
    font-size: 0.8em;
  }
  span.info__date {
    font-size: 3em;
  }
  .card__content {
    padding: 1.5em;
  }
  .card__date {
    flex: 0 0 6.5em;
  }
  .date__number {
    font-size: 1.5em;
  }
  .date__month {
    font-size: 1.2em;
  }
  .card__text h4 {
    font-size: 1.1em;
  }
  .card__text p {
    font-size: 1em;
  }
}

@media only screen and (max-width: 600px) {
  .card--featured .card__content h4 {
    font-size: 1.4em;
  }
}

@media only screen and (max-width: 550px) {
  .card--event .card__inner {
    display: block;
  }
  .card--event {
    border-left: none;
  }
  .card__info {
    padding: 1.5em;
  }
  .card__info span {
    text-align: left;
  }
  span.info__day,
  span.info__month {
    display: inline-block;
  }
}

@media only screen and (max-width: 500px) {
  .card--ticker .card__inner {
    display: block;
  }
  .card__date {
    text-align: left;
    margin: 0;
  }
  .block--events .card__text {
    padding: 1em 0 0;
    margin-top: 0.8em;
  }
  .block--events .card__text::before {
    width: 100%;
    height: 2px;
  }
}






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


.sites {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5%;
}

.card--site {
  width: 24%;
  margin-right: 1.33%;
}
.card--site:nth-child(4n) {
  margin-right: 0;
}

.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.2em;
  color: #009490;
  margin-bottom: 0.4em;
}
.card__type,
.card__size {
  display: block;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: #606060;
}
.card__size {
  color: #76be42;
  margin-top: 0.2em;
}


@media only screen and (max-width: 1300px) {
  .card--site .card__category {
    min-width: 10em;
  }
}

@media only screen and (max-width: 1200px) {
  .card--site {
    width: 32%;
  }
  .card--site,
  .card--site:nth-child(4n) {
    margin-right: 2%;
  }
  .card--site:nth-child(3n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 850px) {
  .card--site {
    width: 48.5%;
  }
  .card--site,
  .card--site:nth-child(3n),
  .card--site:nth-child(4n) {
    margin-right: 3%;
  }
  .card--site:nth-child(2n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 700px) {
  .card--site .card__content {
    padding: 1.2em;
  }
  .card--site .card__content h5 {
    font-size: 1.1em;
    margin-bottom: 0.3em;
  }
  span.card__type {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 600px) {
  .card--site {
    width: 100%;
  }
  .card--site,
  .card--site:nth-child(2n),
  .card--site:nth-child(3n),
  .card--site:nth-child(4n) {
    margin-right: 0;
  }
}



/*------------------------------------*\
  #NEWS-EVENT-SITE-SEARCH
\*------------------------------------*/


.news__content {
  max-width: 1100px;
  margin-top: 3.5em;
}

.event__wrap,
.site__wrap {
  display: flex;
  margin-top: 3.5em;
}
.event__wrap {
  flex-direction: row-reverse;
}

.event__content {
  flex: 1;
}
.event__content h3 {
  margin-top: 0;
}

.event__detail {
  flex: 0 0 24em;
  padding-right: 5%;
}

.detail__info,
.detail__map {
  margin-bottom: 1.5em;
}

#prop-map {
  width: 100%;
  height: 14em;
}

.detail__info span {
  display: block;
  text-transform: uppercase;
}
.info__day,
.info__month,
.info__date {
  color: #009490;
}
.detail__info .info__date {
  font-size: 4em;
  margin: 0.2em 0;
}
.info__time {
  color: #76be42;
}

.detail__location p {
  font-size: 1em;
  font-weight: 500;
  color: #929292;
}


.site .slider__wrap {
  position: relative;
}

.site .card__category {
  position: absolute;
  min-width: 12em;
  top: 0;
  right: 0;
  font-size: 1.5em;
  text-align: center;
}

.event__detail .button,
.site__detail .button {
  display: block;
  font-size: 1.2em;
  padding: 0.6em;
  margin-bottom: 0.8em;
}

.site__detail {
  flex: 0 0 27em;
  padding-left: 5%;
}

.site__detail h3 {
  font-family: 'Nexa W05 Extra Bold', Arial, sans-serif;
  color: #009490;
  margin: 0 0 0.7em;
}
.site__detail h4 {
  font-size: 1.2em;
}
.site__detail p {
  color: #009490;
}

.detail__specs {
  margin-bottom: 1.5em;
}

.search-result__block {
  max-width: 1100px;
}
.search-result__block h4 a {
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.search-result__block h4 a:hover {
  color: #76be42;
  text-decoration: underline;
}


@media only screen and (max-width: 1200px) {
  .event__detail {
    flex: 0 0 22em;
  }
  .site__detail {
    flex: 0 0 23em;
  }
  .site .card__category {
    font-size: 1.3em;
  }
}

@media only screen and (max-width: 950px) {
  .event__wrap,
  .site__wrap {
    display: block;
  }
  .event__detail,
  .site__detail {
    min-width: 100%;
    padding: 0;
    margin-top: 2.5em;
  }
  .detail__info,
  .detail__map {
    margin-bottom: 2.5em;
  }
  .event__detail .button,
  .site__detail .button {
    max-width: 300px;
  }
}

@media only screen and (max-width: 850px) {
  .news__content,
  .event__wrap,
  .site__wrap {
    margin-top: 2.5em;
  }
  .site .card__category {
    min-width: 10em;
    font-size: 1.2em;
  }
}

@media only screen and (max-width: 700px) {
  .event__detail .button,
  .site__detail .button {
    font-size: 1.1em;
  }
  .site .card__category {
    min-width: 9em;
    font-size: 1.1em;
  }
}





/*------------------------------------*\
  #SITE-MAP
\*------------------------------------*/


section.google-map {
  margin-bottom: -8em;
}

.google-map__wrap {
  position: relative;
  height: 800px;
}
.google-map__iframe {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0;
}


@media only screen and (max-width: 850px) {
  .google-map__wrap {
    height: 600px;
  }
}





/*------------------------------------*\
  #ALERT
\*------------------------------------*/


.alert {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 0.8em 1em;
  background: #2a2a2a;
}
.alert + .alert {
  border-top: 1px solid #606060;
}
.alert p {
  line-height: 1.4;
  color: #fff;
}
.alert p a {
  text-decoration: underline;
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.alert p a:hover {
  color: #76be42;
}

.alert__close {
  position: absolute;
  font-size: 2.6em;
  line-height: 1;
  color: #fff;
  top: 0.1em;
  right: 0.65em;
  cursor: pointer;
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.alert__close:hover {
  color: #76be42;
}



@media only screen and (max-width: 1100px) {
  .alert p {
    font-size: 0.9em;
  }
  .alert__close {
    font-size: 2.4em;
    top: 0.05em;
  }
}

@media only screen and (max-width: 850px) {
  .alert {
    padding: 0.7em 1.2em 0.8em;
  }
  .alert p {
    font-size: 0.85em;
  }
  .alert__close {
    font-size: 2em;
    top: 0.15em;
  }
}

@media only screen and (max-width: 600px) {
  .alert {
    padding: 0.6em 1.2em 0.7em;
  }
  .alert p {
    font-size: 0.8em;
  }
  .alert__close {
    top: 0.1em;
    right: 0.5em;
  }
}





/*------------------------------------*\
  #FORMS
\*------------------------------------*/


.form {
  max-width: 950px;
}
.form__wrap {
  display: flex;
  justify-content: space-between;
}
.form__wrap .form__input {
  width: 48.5%;
}
.form__input {
  margin-bottom: 1.5em;
}

.label,
.input,
select {
  display: block;
  font-family: "Gotham A", "Gotham B";
  font-size: 1.05em;
  line-height: 1.2;
}
.label {
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #009490;
  margin-bottom: 0.6em;
}
.input,
select {
  width: 100%;
  color: #949494;
  background: #fff;
  padding: 1em;
  border: 1px solid #949494;
  border-radius: 5px;
  -webkit-transition: border-color 0.5s ease;
          transition: border-color 0.5s ease;
}
select {
  padding-right: 3.2em;
  cursor: pointer;
}
.input:focus,
select:focus {
  border-color: #76be42;
  outline: 0;
}
.select {
  position: relative;
}
.select::after {
  position: absolute;
  content: '';
  width: 0.6em;
  height: 0.6em;
  top: 1.4em;
  right: 1.4em;
  border: solid #76be42;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}
.form textarea {
  min-height: 15em;
  resize: none;
}

::-webkit-input-placeholder {
  color: #949494;
}
:-moz-placeholder {
  color: #949494;
}
::-moz-placeholder {
  color: #949494;
}
:-ms-input-placeholder {  
  color: #949494;
}

.checkbox__input:not(:checked),
.checkbox__input:checked {
  position: absolute;
  left: -9999px;
}
.checkbox__label {
  display: block;
  position: relative;
  font-family: "Gotham A", "Gotham B";
  font-size: 1.05em;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #009490;
  padding-left: 30px;
  margin: 0;
  cursor: pointer;
}
.checkbox__label::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 1px;
  left: 0;
  background: #fff;
  border: 1px solid #949494;
  border-radius: 3px;
  -webkit-transition: border 0.2s linear;
          transition: border 0.2s linear;
}
.checkbox__input:checked + .checkbox__label::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 7px;
  left: 3px;
  top: 5px;
  border: 3px solid #fff;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.checkbox__input:checked + .checkbox__label::before {
  background: #009490;
  border: 1px solid #009490;
}

.form__submit {
  text-align: center;
  margin-top: 2em;
}
.form__submit .button {
  min-width: 10em;
  border: none;
  outline: 0;
}


@media only screen and (max-width: 850px) {
  .label,
  .input,
  select {
    font-size: 1em;
  }
  .input,
  select {
    padding: 0.9em;
  }
  .select::after {
    top: 1.1em;
    right: 1.1em;
  }
}

@media only screen and (max-width: 600px) {
  .form__wrap {
    display: block;
  }
  .form__wrap .form__input {
    width: 100%;
  }
  .label,
  .input,
  select {
    font-size: 0.95em;
  }
  .select::after {
    width: 0.5em;
    height: 0.5em;
  }
}





/*------------------------------------*\
  #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;
  font-size: 95%;
  background: #009490;
  padding: 2.5em 3em;
  margin: 0 12% 0 0;
  z-index: 99;
}
.caption__content::after {
  position: absolute;
  content: '';
  width: 7%;
  height: 100%;
  top: 0;
  right: -7%;
  background: linear-gradient(to left bottom, rgba(255,255,255, 0) 49.7%, #009490 50.3%);
}
.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 2.5em;
    margin: 0 7% 0 0;
  }
}

@media only screen and (max-width: 1100px) {
  .slide h1 {
    font-size: 3em;
  }
  .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;
  }
  .slider__caption {
    width: 100%;
    margin: 0;
  }
  .caption__content {
    padding: 5%;
    margin: 0;
  }
  .caption__content::after {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .slide__overlay {
    padding: 22% 0;
  }
  .slide h1 {
    font-size: 2.4em;
    padding: 0 2em;
  }
  .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: 9;
  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;
  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;
}

.content--home .slick-dots {
  top: -49px;
}
.content--subpage .slick-dots {
  bottom: 4px;
}


@media only screen and (max-width: 1200px) {
  .slick-dots {
    height: 40px;
    left: 2.5em;
    padding: 0.5em 1em;
  }
  .content--home .slick-dots {
    top: -39px;
  }
  .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: 850px) {
  .content--home .slick-dots {
    left: 5%;
  }
}

@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 {
  display: none;
}
.slider.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;
}
.sign-up .button {
  width: 100%;
}
.sign-up .button:hover {
  background: #76be42;
  color: #fff;
}

/*
.sign-up__wrap form {
  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;
  border: none;
  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;
}

.sign-up__message p {
  letter-spacing: 0;
  text-transform: inherit;
  margin: 0.8em 0 0;
}
*/

.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 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.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%;
  }
}











/*------------------------------------*\
  #MODAL
\*------------------------------------*/


.overlay {
  position: fixed;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0, 0.3);
  z-index: 999999;
}

.modal {
  position: fixed;
  width: 500px;
  max-width: calc(100% - 3em);
  max-height: calc(100% - 3em);
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  z-index: 9999999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15), 0 4px 8px rgba(0,0,0,0.25);
  -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}

.modal__close {
  position: fixed;
  display: block;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1;
  color: #2a2a2a;
  top: 0;
  right: 0.2em;
  cursor: pointer;
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.modal__close:hover {
  color: #76be42;
}

.modal__content {
  max-height: calc(100vh - 5em);
  text-align: center;
  padding: 2.5em;
  overflow: auto;
}
.modal__content img {
  max-width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.15);
  margin: 1.5em auto 2em;
  cursor: pointer;
}
.modal__content h2 {
  font-family: 'Gotham A', 'Gotham B', Arial, sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.4;
  color: #76be42;
}
.modal__content .button {
  min-width: 80%;
  font-size: 1.2em;
}


@media only screen and (max-width: 950px) {
  .modal {
    width: 450px;
  }
  .modal__content h2 {
    font-size: 1.8em;
  }
  .modal__content img {
    max-width: 230px;
  }
}

@media only screen and (max-width: 700px) {
  .modal {
    width: 400px;
  }
  .modal__close {
    font-size: 2.2em;
  }
  .modal__content {
    max-height: calc(100vh - 4em);
    padding: 2em;
  }
  .modal__content h2 {
    font-size: 1.6em;
  }
  .modal__content img {
    max-width: 200px;
  }
  .modal__content .button {
    font-size: 1.1em;
  }
}




