@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  font-family: azo-sans-web, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  font-size: 29px;
  margin: 12px 0;
}

strong {
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.thank-you {
  display: none;
}

.modal-thank-you {
  overflow: hidden;
}
.modal-thank-you .thank-you {
  display: flex;
  flex-flow: column;
  z-index: 2;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(102, 82, 82, 0.8);
}
.modal-thank-you .thank-you .box {
  display: flex;
  flex-flow: column;
  text-align: center;
  width: 350px;
  box-sizing: border-box;
  min-height: 20px;
  margin: auto auto;
  justify-self: center;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.2);
}
.modal-thank-you .thank-you .box .success-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgb(222, 247, 236);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 27px;
}
.modal-thank-you .thank-you .box .success-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgb(5, 122, 85);
}
.modal-thank-you .thank-you .box h2 {
  font-size: 22px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.modal-thank-you .thank-you .box p {
  font-size: 16px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 400;
}
.modal-thank-you .thank-you .box button {
  transition: all 0.2s;
  font-size: 16px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 400;
  line-height: 1.25;
  padding: 10px 20px;
  border: 1px solid rgb(226, 232, 240);
  border-radius: 5px;
  background-color: white;
  margin-top: 20px;
  cursor: pointer;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}
.modal-thank-you .thank-you .box button:hover {
  background-color: rgb(179, 45, 42);
  border-color: rgb(179, 45, 42);
  color: white;
}

#content {
  max-width: 1366px;
  margin: 0 auto;
}
#content header {
  width: 100%;
  background-color: #aaa;
  background: url("../img/header-bg.jpg") center center no-repeat;
  background-size: contain;
  background-attachment: fixed;
  min-height: 830px;
  position: relative;
}
body.interior #content header {
  min-height: 120px;
  background-position: right top;
}
body.interior #content header .logo {
  background-image: url("../img/logo-interior.svg");
  background-size: 220px 85px;
}
body.interior #content header .scroll-link {
  display: none;
}
body.page-hesapa #content header {
  background: #000;
}
#content header .action-bar {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
#content header .action-bar .hamburger {
  display: inline-block;
  width: 70px;
  margin-left: auto;
  height: 30px;
  padding: 45px 55px;
  background: url(../img/hamburger-open.svg) 50% no-repeat;
  background-size: 70px 30px;
  z-index: 2;
  position: relative;
}
#content header .action-bar .hamburger .open {
  position: absolute;
  cursor: pointer;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#content header .action-bar .hamburger.active ul {
  display: flex;
}
#content header .action-bar .hamburger ul {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  background: rgb(179, 45, 42);
  flex-flow: column;
  padding-bottom: 30px;
}
#content header .action-bar .hamburger ul li.close {
  box-sizing: content-box;
  height: 30px;
  background: url(../img/hamburger-close.svg) center center no-repeat;
  background-size: 70px 30px;
  background-position: 50% 45px;
  padding: 55px 55px 0px 55px;
  cursor: pointer;
}
#content header .action-bar .hamburger ul li {
  text-transform: uppercase;
}
#content header .action-bar .hamburger ul li a {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
  text-decoration: none;
  color: white;
  display: block;
  padding: 20px 0;
  margin: 0 20px;
  text-align: center;
  font-family: azo-sans-web, sans-serif;
  font-size: 11px;
  font-weight: 700;
  border-bottom: 1px solid white;
  white-space: nowrap;
  letter-spacing: 1px;
}
#content header .action-bar .hamburger ul li a:hover {
  text-decoration: underline;
}
#content header .logo {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../img/logo.svg") center center no-repeat;
  background-size: 660px 255px;
  cursor: pointer;
}
#content header .scroll-link {
  z-index: 2;
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 100px;
  top: 100%;
  background: url("../img/header-down.svg") center center no-repeat;
  background-size: 200px 100px;
  margin-top: -50px;
  cursor: pointer;
}
#content section {
  width: 100%;
}
#content section:not(.socials):not(.video-box) li {
  font-family: azo-sans-web, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  font-size: 29px;
  margin: 12px 0;
  margin-left: 30px;
  position: relative;
}
#content section:not(.socials):not(.video-box) li:before {
  color: #b32c2d;
  position: absolute;
  left: -30px;
  content: "•";
  width: 30px;
  top: 0;
  text-align: center;
}
#content section a {
  color: #000;
}
#content section a:visited {
  color: #b32c2d;
}
#content section.about-us {
  box-sizing: border-box;
  padding: 150px 200px 140px 155px;
  background-color: #eee;
  background: url("../img/section-about-bg.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
}
#content section.about-us h2 {
  font-size: 45px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 900;
  font-style: normal;
  padding-top: 47px;
  background: url("../img/module-title-hashes.svg") -5px 0 no-repeat;
  background-size: 345px auto;
  margin-bottom: 30px;
}
#content section.landback-art {
  box-sizing: border-box;
  padding: 150px 200px 140px 155px;
  background-color: #eee;
  position: relative;
}
#content section.video-box {
  width: 100%;
  background: black;
  color: #fff;
  padding: 85px 130px;
  box-sizing: border-box;
}
#content section.video-box p {
  font-size: 14px;
}
#content section.video-box h2 {
  font-size: 45px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 900;
  font-style: normal;
  padding-top: 47px;
  background: url("../img/module-title-hashes.svg") -5px 0 no-repeat;
  background-size: 345px auto;
  margin-bottom: 30px;
}
#content section.video-box .player {
  width: 100%;
  padding-top: 45%;
  position: relative;
}
#content section.video-box .player iframe, #content section.video-box .player video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#content section.video-box .playlist {
  display: flex;
  font-family: azo-sans-web, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  opacity: 0.5;
}
#content section.video-box .playlist:hover {
  opacity: 1;
}
#content section.video-box .playlist li {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}
#content section.video-box .playlist li .thumb {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
#content section.video-box .playlist li .title {
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#content section.video-box .playlist li .description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#content section.video-box .playlist li.active {
  opacity: 0.8;
}
#content section.video-box .playlist li:hover {
  opacity: 1;
}
#content section.video-box.vertical {
  width: 100%;
  padding: 85px 130px;
}
#content section.video-box.vertical .proportional {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  padding-top: calc(43% - 50px);
}
#content section.video-box.vertical .proportional .wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 5fr 3fr;
  grid-template-areas: "title     title" "video  playlist";
}
#content section.video-box.vertical .player {
  grid-area: video;
}
#content section.video-box.vertical h2 {
  grid-area: title;
}
#content section.video-box.vertical .playlist {
  flex-flow: column;
  overflow-y: scroll;
  padding-left: 20px;
  box-sizing: border-box;
  grid-area: playlist;
  height: 100%;
  -webkit-mask-image: linear-gradient(to top, transparent, black), linear-gradient(to left, transparent 15px, black 15px);
          mask-image: linear-gradient(to top, transparent, black), linear-gradient(to left, transparent 15px, black 15px);
  -webkit-mask-size: 100% 20000px;
          mask-size: 100% 20000px;
  -webkit-mask-position: left bottom;
          mask-position: left bottom;
  mask-image: linear-gradient(to top, transparent, black), linear-gradient(to left, transparent 15px, black 15px);
  mask-size: 100% 20000px;
  transition: mask-position 0.3s, -webkit-mask-position 0.3s;
}
#content section.video-box.vertical .playlist:hover {
  -webkit-mask-position: left top;
          mask-position: left top;
}
#content section.video-box.vertical .playlist::-webkit-scrollbar {
  width: 15px;
}
#content section.video-box.vertical .playlist::-webkit-scrollbar-track {
  background-color: #aaa;
  border-radius: 100px;
}
#content section.video-box.vertical .playlist::-webkit-scrollbar-thumb {
  border-radius: 100px;
  border: 1px solid transparent;
  background-clip: content-box;
  background-color: #b32c2d;
}
#content section.video-box.vertical .playlist li {
  display: flex;
  flex-flow: row;
  flex: 0 0;
  padding: 5px 0;
  height: 120px;
}
#content section.video-box.vertical .playlist li .thumb {
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center center;
  max-width: 40%;
  width: auto;
  height: 100%;
}
#content section.video-box.vertical .playlist li p {
  display: flex;
  flex-flow: column;
  width: 75%;
  padding: 0 5px;
  text-overflow: ellipsis;
  overflow: hidden;
}
#content section.video-box.vertical .playlist li p br {
  display: none;
}
#content section.video-box.horizontal .playlist {
  flex-flow: row;
  width: 100%;
  display: flex;
  margin-top: 30px;
}
#content section.video-box.horizontal .playlist li {
  flex: 1 1;
  padding: 10px;
  margin: 10px;
  border: 1px solid #666;
  background: #333;
}
#content section.video-box.horizontal .playlist li:first-child {
  margin-left: 0;
}
#content section.video-box.horizontal .playlist li:last-child {
  margin-right: 0;
}
#content section.video-box.horizontal .playlist li .thumb {
  width: 100%;
}
@media only screen and (max-width: 600px) {
  #content #app > section.current-module h3 {
    font-size: 38px;
    padding-top: 51px;
  }
}
#content section.current-module {
  background: black;
  color: #fff;
  box-sizing: border-box;
  margin-top: 124px;
  padding: 55px 130px;
  display: flex;
  flex-flow: row;
  position: relative;
}
#content section.current-module h2 {
  position: absolute;
  z-index: 1;
  font-family: azo-sans-web, sans-serif;
  font-size: 19px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  background: url("../img/current-module-brush.svg") center center no-repeat;
  background-size: 314px 84px;
  left: 0;
  right: 0;
  top: -46px;
  width: 100%;
  height: 84px;
  line-height: 80px;
}
#content section.current-module h3 {
  font-size: 45px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 900;
  font-style: normal;
  padding-top: 47px;
  background: url("../img/module-title-hashes.svg") -5px 0 no-repeat;
  background-size: 345px auto;
  margin-bottom: 30px;
}
#content section.current-module h4 {
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 19px;
  text-transform: uppercase;
  margin-top: 30px;
  letter-spacing: 4px;
}
#content section.current-module p {
  font-size: 22px;
}
#content section.current-module a {
  color: #fff;
  text-decoration: none;
}
#content section.current-module a:hover {
  text-decoration: underline;
}
#content section.current-module .register {
  transition: background 0.4s, color 0.4s;
  display: inline-block;
  background-color: rgb(179, 45, 42);
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  text-transform: uppercase;
  font-size: 19px;
  padding: 30px 55px;
  letter-spacing: 4px;
  margin-top: 55px;
  text-decoration: none;
  border: 2px solid rgb(179, 45, 42);
  text-align: center;
}
#content section.current-module .register:hover {
  text-decoration: none;
  background-color: black;
  color: rgb(179, 45, 42);
}
#content section.current-module .col-1 {
  box-sizing: border-box;
  flex-grow: 2;
  margin-right: 210px;
}
#content section.current-module .col-2 {
  flex-grow: 1;
  align-self: center;
}
#content section.current-module .col-2 img {
  width: 380px;
  height: auto;
}
#content section.donate {
  box-sizing: border-box;
  padding: 150px 200px 140px 155px;
  background-color: #eee;
  background: url("../img/section-about-bg.jpg") center center no-repeat;
  background-size: cover;
}
#content section.donate iframe {
  width: 50%;
  float: right;
  margin-left: 50px;
  max-width: 450px;
}
#content section.manifesto {
  overflow: hidden;
  box-sizing: border-box;
  padding: 150px 200px 140px 155px;
}
#content section.manifesto.manifesto-reclaim ul {
  text-align: center;
  line-height: 1;
}
#content section.manifesto.manifesto-reclaim ul li {
  display: inline-block;
  margin: 0;
  font-size: 55px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}
#content section.manifesto.manifesto-reclaim ul li:after {
  display: inline-block;
  content: "x";
  text-indent: 9999px;
  background: url("../img/manifesto-x.png") center center no-repeat;
  background-size: 28px 26px;
  width: 55px;
  height: 55px;
}
#content section.manifesto.manifesto-reclaim ul li:before {
  display: none;
}
#content section.manifesto.manifesto-reclaim ul li:last-child:after {
  display: none;
}
#content section.manifesto h1 {
  font-size: 26px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  line-height: 2;
}
#content section.manifesto h2 {
  font-size: 26px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
}
#content section.newsletter {
  background: #fafafa;
  background: url("../img/section-newsletter-bg.jpg") center bottom no-repeat;
  background-size: cover;
  padding: 85px 70px 200px 70px;
  box-sizing: border-box;
}
#content section.newsletter .fire-bg {
  box-sizing: border-box;
  background: #888;
  background: url(../img/form-bg.jpg);
  background-size: cover;
  padding: 120px 60px;
}
#content section.newsletter form {
  width: 100%;
  background: white;
  padding: 20px 25px 15px;
  box-sizing: border-box;
}
#content section.newsletter form .wrapper {
  border-bottom: 1px solid black;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#content section.newsletter form .wrapper p, #content section.newsletter form .wrapper input[type=submit] {
  text-transform: uppercase;
  background: white;
  outline: none;
}
#content section.newsletter form .wrapper p {
  margin: 0 35px 0 12px;
  text-align: center;
}
#content section.newsletter form .wrapper input[type=text] {
  flex-grow: 1;
  background: white;
  padding: 20px;
  outline: none;
}
#content section.newsletter form .wrapper input {
  border: 0;
  border-left: 1px solid black;
}
#content section.newsletter form .wrapper input[type=submit] {
  align-self: stretch;
  cursor: pointer;
  background: url(../img/submit-icon.svg) 25px center no-repeat;
  background-size: 30px 30px;
  padding: 0 16px 0 70px;
}
#content section.newsletter form .wrapper * {
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 2px;
}
#content section.upcoming-modules {
  display: flex;
  flex-flow: row;
  margin-bottom: 40px;
  padding: 0 130px;
  box-sizing: border-box;
}
#content section.upcoming-modules > .col-1 {
  flex-grow: 3;
  padding-right: 30px;
}
#content section.upcoming-modules > .col-2 {
  flex-grow: 1;
}
#content section.upcoming-modules article .details {
  display: flex;
  flex-flow: row;
  margin-top: 30px;
}
#content section.upcoming-modules article .details .details-photo {
  box-sizing: border-box;
  flex: 1 1;
  padding-right: 30px;
}
#content section.upcoming-modules article .details .details-photo img {
  width: 100%;
  height: auto;
}
#content section.upcoming-modules article .details .details-dates {
  flex: 1 1;
}
#content section.upcoming-modules article .details .details-dates p {
  font-size: 16px;
}
#content section.upcoming-modules article .details a {
  text-decoration: none;
  color: black;
}
#content section.upcoming-modules article .details a:hover {
  text-decoration: underline;
}
#content section.upcoming-modules article p {
  font-size: 22px;
  line-height: 1.2;
}
#content section.upcoming-modules article .read-more {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  margin: 15px 0 27px 0;
  border-top: 1px solid black;
}
#content section.upcoming-modules article .read-more a {
  font-size: 16px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 3px;
  color: black;
  display: block;
  text-transform: uppercase;
  border-left: 1px solid black;
  padding: 7px 20px;
  text-decoration: none;
}
#content section.upcoming-modules h2 {
  font-size: 17px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-left: 18px;
  margin-bottom: 50px;
}
#content section.upcoming-modules h3 {
  font-size: 37px;
  font-family: azo-sans-web, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.25;
  padding-top: 20px;
  background: url("../img/modules-grey-hashes.svg") no-repeat;
  background-position: -13px 7px;
  background-size: 200px 45px;
}
#content section.upcoming-modules h4 {
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  font-style: normal;
  text-transform: uppercase;
  font-size: 16px;
}
#content section.upcoming-modules .col-2 h3 {
  font-size: 32px;
}
#content footer {
  width: 100%;
  display: flex;
  flex-flow: column;
  box-sizing: border-box;
}
#content footer .socials {
  width: 100%;
  background-color: rgb(179, 45, 42);
  background: url(../img/footer-bg.jpg) top center no-repeat;
  background-size: cover;
  padding: 75px 0 70px 0;
  box-sizing: border-box;
  position: relative;
}
#content footer .socials ul {
  display: flex;
  flex-flow: row;
  width: 270px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
#content footer .socials ul li a {
  display: block;
  padding: 5px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
#content footer .socials ul li.facebook a {
  background-image: url("../img/soc-facebook.svg");
  width: 9px;
  height: 18px;
}
#content footer .socials ul li.twitter a {
  background-image: url("../img/soc-twitter.svg");
  width: 18px;
  height: 15px;
}
#content footer .socials ul li.u a {
  background-image: url("../img/soc-u.svg");
  width: 17px;
  height: 17px;
}
#content footer .socials ul li.instagram a {
  background-image: url("../img/soc-instagram.svg");
  width: 15px;
  height: 16px;
}
#content footer .socials ul li.youtube a {
  background-image: url("../img/soc-youtube.svg");
  width: 22px;
  height: 16px;
}
#content footer .signature {
  box-sizing: border-box;
  padding: 30px 40px 20px 40px;
  background: #101820;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
#content footer .signature .copyright {
  color: #fff;
  font-family: azo-sans-web, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 11px;
}
#content footer .signature .powered-by {
  display: block;
  width: 146px;
  height: 28px;
  background: url("../img/powdered-by-ndn.svg") center center no-repeat;
  background-size: 100% 100%;
}

.floating, #content header .scroll-link {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
.rotating {
  animation-name: rotating;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.screen-reader, #content header .logo, #content footer .signature .powered-by {
  text-indent: -9999px;
  white-space: nowrap;
}

@media screen and (max-width: 1366px) {
  #content header {
    background-size: cover;
  }
  #content {
    max-width: none;
  }
  #content header {
    background-size: cover;
  }
  #content section.about-us {
    padding-left: calc(50vw - 505.5px);
    padding-right: calc(50vw - 535.5px);
  }
  #content section.about-us:after {
    right: calc(50vw - 605.5px);
  }
  #content section.donate, #content section.video-box, #content section.video-box.horizontal, #content section.video-box.vertical {
    padding-left: calc(50vw - 505.5px);
    padding-right: calc(50vw - 535.5px);
  }
}
@media screen and (max-width: 1200px) {
  #content section.current-module .col-1 {
    margin-right: 50px;
  }
}
.mobile-only {
  display: none !important;
}

@media screen and (max-width: 900px) {
  .mobile-only {
    display: inherit !important;
  }
  .desktop-only {
    display: none !important;
  }
  #content header {
    background-attachment: scroll;
    background-size: 150%;
  }
  #content header .action-bar .callout {
    display: none;
  }
  #content header .scroll-link {
    display: none;
  }
  #content section.about-us {
    padding: 55px 100px;
  }
  #content section.about-us:after {
    display: none;
  }
  #content section.current-module {
    flex-flow: column;
    margin-top: 84px;
    padding: 55px 100px;
  }
  #content section.current-module .register {
    margin-top: 30px;
    padding: 30px 0;
  }
  #content section.current-module .col-1 {
    margin-right: 0;
  }
  #content section.current-module .col-2 {
    align-self: auto;
  }
  #content section.current-module .col-2 img {
    width: 100%;
    height: auto;
    margin-top: 30px;
  }
  #content section.upcoming-modules {
    flex-flow: column;
    padding: 55px 100px;
  }
  #content section.upcoming-modules h2 {
    padding-left: 0;
    text-align: center;
    margin: 30px 0;
  }
  #content section.upcoming-modules > .col-1 {
    padding-right: 0;
  }
  #content section.upcoming-modules article .details {
    margin-top: 30px;
    flex-flow: column;
    flex-direction: column-reverse;
  }
  #content section.upcoming-modules article .details .details-photo {
    padding-right: 0;
  }
  #content section.newsletter {
    padding: 0;
  }
  #content section.newsletter form .wrapper {
    flex-direction: column;
    border-bottom: 0;
  }
  #content section.newsletter form .wrapper p {
    border-bottom: 1px solid black;
    border-left: 0;
    padding: 5px 0 20px 0;
    margin: 0;
  }
  #content section.newsletter form .wrapper p > br {
    display: none;
  }
  #content section.newsletter form .wrapper input[type=text] {
    box-sizing: border-box;
    border-left: 0;
    border-bottom: 1px solid black;
    padding: 20px 3px;
  }
  #content section.newsletter form .wrapper input[type=submit] {
    box-sizing: border-box;
    border-left: 0;
    text-align: left;
    margin-top: 5px;
    padding: 20px 16px 20px 43px;
    background-position: 5px center;
  }
  #content section.newsletter form .wrapper > * {
    flex-grow: 1;
    width: 100%;
  }
  #content section .manifesto .manifesto-reclaim ul li {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 900px) {
  .mobile-only {
    display: inherit !important;
  }
  .desktop-only {
    display: none !important;
  }
  #content header {
    background-attachment: scroll;
  }
  #content header .scroll-link {
    display: none;
  }
  #content section.about-us, #content section.donate, #content section.landback-art, #content section.manifesto, #content section.video-box.horizontal, #content section.video-box.vertical, #content > .wp-block-group {
    padding: 55px 100px;
  }
  #content section.about-us:after, #content section.donate:after, #content section.landback-art:after, #content section.manifesto:after, #content section.video-box.horizontal:after, #content section.video-box.vertical:after, #content > .wp-block-group:after {
    display: none;
  }
  #content section.manifesto.manifesto-reclaim ul {
    margin-top: 40px 0;
  }
  #content section.manifesto.manifesto-reclaim ul:after {
    background: url(../images/manifesto-x.8c9a30.png) 50% no-repeat;
    background-size: 28px 26px;
    content: "x";
    display: block;
    height: 55px;
    margin: 0 auto;
    text-indent: -9999px;
    white-space: nowrap;
    width: 55px;
  }
  #content section.manifesto.manifesto-reclaim ul li {
    display: block;
    font-size: 32px;
  }
  #content section.manifesto.manifesto-reclaim ul li:after {
    display: block;
    margin: 0 auto;
  }
  #content section.manifesto.manifesto-reclaim ul:last-child {
    margin-bottom: 20px;
  }
  #content section.manifesto.manifesto-reclaim ul:last-child:after {
    display: none;
  }
  #content section.current-module {
    flex-flow: column;
    margin-top: 84px;
    padding: 55px 100px;
  }
  #content section.current-module .register {
    margin-top: 30px;
    padding: 30px 0;
  }
  #content section.current-module .col-1 {
    margin-right: 0;
  }
  #content section.current-module .col-2 {
    align-self: auto;
  }
  #content section.current-module .col-2 img {
    height: auto;
    margin-top: 30px;
    width: 100%;
  }
  #content section.upcoming-modules {
    flex-flow: column;
    padding: 55px 100px;
  }
  #content section.upcoming-modules h2 {
    margin: 30px 0;
    padding-left: 0;
    text-align: center;
  }
  #content section.upcoming-modules > .col-1 {
    padding-right: 0;
  }
  #content section.upcoming-modules article .details {
    flex-flow: column;
    flex-direction: column-reverse;
    margin-top: 30px;
  }
  #content section.upcoming-modules article .details .details-photo {
    padding-right: 0;
  }
  #content section.newsletter {
    padding: 0;
  }
  #content section.newsletter form .wrapper {
    border-bottom: 0;
    flex-direction: column;
  }
  #content section.newsletter form .wrapper p {
    border-bottom: 1px solid #000;
    border-left: 0;
    margin: 0;
    padding: 5px 0 20px;
  }
  #content section.newsletter form .wrapper p > br {
    display: none;
  }
  #content section.newsletter form .wrapper input[type=text] {
    border-bottom: 1px solid #000;
    border-left: 0;
    box-sizing: border-box;
    padding: 20px 3px;
  }
  #content section.newsletter form .wrapper input[type=submit] {
    background-position: 5px;
    border-left: 0;
    box-sizing: border-box;
    margin-top: 5px;
    padding: 20px 16px 20px 43px;
    text-align: left;
  }
  #content section.newsletter form .wrapper > * {
    flex-grow: 1;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  #content header {
    min-height: 450px;
  }
  #content header .logo {
    background-size: 80%;
    background-position: 50% 60%;
  }
  #content section.newsletter .fire-bg {
    padding: 55px 100px;
  }
  #content footer .socials:after {
    left: 0;
    width: 100%;
  }
  #content footer .signature {
    flex-direction: column;
    justify-content: stretch;
    padding-bottom: 50px;
  }
  #content footer .signature .copyright {
    text-align: center;
  }
  #content footer .signature .powered-by {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #content header {
    min-height: 310px;
  }
  #content section.about-us {
    padding: 20px 40px;
  }
  #content section.about-us p {
    font-size: 15px;
    line-height: 1.8;
  }
  #content section.current-module {
    padding: 40px 40px;
  }
  #content section.current-module h3 {
    font-size: 38px;
    padding-top: 51px;
  }
  #content section.current-module p {
    font-size: 15px;
    line-height: 1.8;
  }
  #content section.current-module .register {
    font-size: 17px;
  }
  #content section.upcoming-modules {
    padding: 20px 20px;
  }
  #content section.upcoming-modules h2 {
    margin: 20px 0;
    font-size: 19px;
  }
  #content section.upcoming-modules h3 {
    word-wrap: break-word;
    -webkit-hyphens: auto;
            hyphens: auto;
    line-height: 1.1;
  }
  #content section.upcoming-modules h3 br {
    display: none;
  }
  #content section.upcoming-modules article .read-more {
    flex-flow: column;
  }
  #content section.upcoming-modules article .read-more a {
    font-size: 11px;
    border-left: 0;
    text-align: right;
    padding: 7px 0;
  }
  #content section.upcoming-modules .col-1 {
    margin-bottom: 40px;
  }
  #content section.newsletter .fire-bg {
    padding: 20px 20px;
  }
  #content #content section.about-us p, #content #content section.landback-art p, #content #content section.manifesto p, #content #content section:not(.socials):not(.video-box) ol li {
    font-size: 15px;
    line-height: 1.8;
  }
  #content #content section.video-box.horizontal, #content #content section.video-box.vertical {
    padding: 20px 40px;
  }
  .modal-thank-you .thank-you .box {
    width: 80%;
  }
  #content section.manifesto {
    padding: 20px 40px;
  }
}
@media screen and (min-width: 1366px) {
  #content {
    max-width: none;
  }
  #content header {
    background-size: cover;
  }
  #content section.about-us {
    padding-left: calc((100vw - 1011px) / 2);
    padding-right: calc((100vw - 1011px - 60px) / 2);
  }
  #content section.about-us:after {
    right: calc((100vw - 1211px) / 2);
  }
  #content section.current-module,
  #content section.upcoming-modules {
    padding-left: calc((100vw - 1011px) / 2);
    padding-right: calc((100vw - 1011px) / 2);
  }
  #content section.newsletter {
    padding-left: calc((100vw - 1011px - 120px) / 2);
    padding-right: calc((100vw - 1011px - 120px) / 2);
  }
  #content footer .socials:after {
    left: calc((100vw - 1011px) / 2);
  }
  #content footer .signature {
    padding-left: calc((100vw - 1011px) / 2);
    padding-right: calc((100vw - 1011px) / 2);
  }
}
@media screen and (max-width: 1000px) {
  #content section.manifesto.manifesto-reclaim ul li {
    font-size: 42px;
  }
  #content section.manifesto.manifesto-reclaim ul li:after {
    height: 45px;
  }
}
@media only screen and (max-width: 800px) {
  #app > footer .socials {
    padding-bottom: 170px;
  }
  #app > footer .socials:after {
    left: 0;
    width: 100%;
  }
  #app > footer .signature {
    flex-direction: column;
    justify-content: stretch;
    padding-bottom: 50px;
  }
  #app > footer .signature .copyright {
    text-align: center;
  }
  #app > footer .signature .powered-by {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  #content section.video-box {
    padding: 10px;
  }
  #content section.video-box.horizontal .playlist, #content section.video-box.vertical .playlist {
    flex-flow: column;
  }
  #content section.video-box.horizontal .playlist li, #content section.video-box.vertical .playlist li {
    margin: 10px 0 !important;
  }
  #content header {
    min-height: 450px;
  }
  #content header .logo a {
    background-position: 50% 60%;
    background-size: 80%;
  }
  #content section.newsletter .fire-bg {
    padding: 55px 100px;
  }
  #content footer .socials:after {
    left: 0;
    width: 100%;
  }
  #content footer .signature {
    flex-direction: column;
    justify-content: stretch;
    padding-bottom: 50px;
  }
  #content footer .signature .copyright {
    text-align: center;
  }
  #content footer .signature .powered-by {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  body.interior #content header .logo {
    justify-content: flex-start;
    background-size: 140px 60px;
    padding-left: 30px;
    width: calc(100vw - 140px);
  }
  #content header {
    min-height: 310px;
  }
  #content section.about-us, #content section.landback-art, #content section.manifesto, #content > .wp-block-group {
    padding: 20px 40px;
  }
  #content section.about-us p, #content section.landback-art p, #content section.manifesto p, #content section:not(.socials):not(.video-box) ol li, #content section:not(.socials):not(.video-box) ul li {
    font-size: 15px;
    line-height: 1.8;
  }
  #content section:not(.socials):not(.video-box) li:before, #content > .wp-block-group li:before {
    width: 35px;
  }
  #content section.manifesto h2 {
    line-height: 1.5;
  }
  #content section.donate {
    padding: 20px 40px;
  }
  #content section.donate iframe {
    display: block;
    float: none;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
  }
  #content section.donate p {
    font-size: 15px;
    line-height: 1.8;
  }
  #content section.video-box h2 {
    font-size: 35px;
  }
  #content section.video-box.horizontal, #content section.video-box.vertical {
    padding: 20px 40px;
  }
  #content section.video-box.vertical .proportional {
    padding-top: 0;
  }
  #content section.video-box.vertical .proportional .wrapper {
    grid-template-areas: "title" "video" "playlist";
    grid-template-columns: 1fr;
    position: relative;
  }
  #content section.current-module {
    padding: 40px;
  }
  #content section.current-module h3 {
    font-size: 38px;
    padding-top: 51px;
  }
  #content section.current-module p {
    font-size: 15px;
    line-height: 1.8;
  }
  #content section.current-module .register {
    font-size: 17px;
  }
  #content section.upcoming-modules {
    padding: 20px;
  }
  #content section.upcoming-modules h2 {
    font-size: 19px;
    margin: 20px 0;
  }
  #content section.upcoming-modules h3 {
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    line-height: 1.1;
  }
  #content section.upcoming-modules h3 br {
    display: none;
  }
  #content section.upcoming-modules article .read-more {
    flex-flow: column;
  }
  #content section.upcoming-modules article .read-more a {
    border-left: 0;
    font-size: 11px;
    padding: 7px 0;
    text-align: right;
  }
  #content section.upcoming-modules .col-1 {
    margin-bottom: 40px;
  }
  #content section.newsletter .fire-bg {
    padding: 20px;
  }
  .modal-thank-you .thank-you .box {
    width: 80%;
  }
}
@media screen and (min-width: 1366px) {
  #content {
    max-width: none;
  }
  #content header {
    background-size: cover;
  }
  #content section.about-us {
    padding-left: calc(50vw - 505.5px);
    padding-right: calc(50vw - 535.5px);
  }
  #content section.about-us:after {
    right: calc(50vw - 605.5px);
  }
  #content section.donate, #content section.video-box, #content section.video-box.horizontal, #content section.video-box.vertical {
    padding-left: calc(50vw - 505.5px);
    padding-right: calc(50vw - 535.5px);
  }
  #content section.current-module, #content section.upcoming-modules {
    padding-left: calc(50vw - 505.5px);
    padding-right: calc(50vw - 505.5px);
  }
  #content section.newsletter {
    padding-left: calc(50vw - 565.5px);
    padding-right: calc(50vw - 565.5px);
  }
  #content footer .socials:after {
    left: calc(50vw - 505.5px);
  }
  #content footer .signature {
    padding-left: calc(50vw - 505.5px);
    padding-right: calc(50vw - 505.5px);
  }
}
.home #content header .action-bar .hamburger {
  margin: 0 auto;
}

#content header .logo {
  align-items: center;
  bottom: 0;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

#content header .action-bar .hamburger.active > ul {
  display: flex;
}

#content header .action-bar .hamburger {
  background-size: 70px 30px;
  display: inline-block;
  height: 30px;
  padding: 45px 55px;
  position: relative;
  width: 70px;
  z-index: 2;
}

#content header .action-bar .hamburger ul ul {
  background: url(../images/submenu-indicator.svg) no-repeat top;
  background-size: 30px 10px;
  display: none;
  padding-bottom: 0;
  position: relative;
}

#content header .action-bar .hamburger ul ul li a {
  letter-spacing: 1px;
}

#content header .action-bar .hamburger ul li {
  text-transform: uppercase;
}

#content header .action-bar .hamburger ul li:nth-child(5) a {
  letter-spacing: 0;
}

#content header .action-bar .hamburger ul li a {
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-family: azo-sans-web, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 20px;
  padding: 20px 0;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}

#content section.manifesto {
  overflow: hidden;
}

body.interior #content header {
  background-position: 100% 0;
  min-height: 120px;
}

#content header .action-bar .hamburger ul li a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */