@font-face {
  font-family: "HK Grotesk";
  src: url("/assets/fonts/HKGrotesk/HKGrotesk-Light.otf") format("opentype");
}
@font-face {
  font-family: "HK Grotesk";
  font-weight: bold;
  src: url("/assets/fonts/HKGrotesk/HKGrotesk-Bold.otf") format("opentype");
}
@font-face {
  font-family: "HK Grotesk";
  font-weight: light;
  src: url("/assts/fonts/HKGrotesk/HKGrotesk-Light.otf") format("opentype");
}
@font-face {
  font-family: "HK Grotesk";
  font-style: italic;
  src: url("/assets/fonts/HKGrotesk/HKGrotesk-LightItalic.otf") format("opentype");
}
@font-face {
  font-family: "HK Grotesk";
  font-weight: light;
  font-style: italic;
  src: url("/assets/fonts/HKGrotesk/HKGrotesk-LightItalic.otf") format("opentype");
}
* {
  box-sizing: border-box;
  font-family: "HK Grotesk", sans-serif;
}

body {
  min-height: 100vh;
}

.button {
  font-family: "HK Grotesk", sans-serif;
  font-weight: bold;
  font-size: 1.2em;
  text-transform: uppercase;
  padding: 10px 30px;
  text-align: center;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}
.button.welcome {
  display: inline-block;
  padding: 16px 20px;
  padding-bottom: 12px;
  border: 2px solid white;
  margin-right: 10px;
  margin-bottom: 15px;
  color: white;
  font-size: 1.4em;
}
.button.welcome:hover {
  color: #54365c;
  background-color: white;
}
.button.dark {
  background-color: white;
  border: 2px solid #54365c;
  color: #54365c;
}
.button.dark:hover {
  color: white;
  background-color: #54365c;
}
.button.white {
  background-color: #54365c;
  border: 2px solid white;
  color: white;
}
.button.white:hover {
  color: #54365c;
  background-color: white;
}
.button.wide {
  display: block;
}

.nav {
  position: fixed;
  width: 100%;
  height: 100px;
  padding: 0px 20px;
  background-color: white;
  z-index: 100;
  display: flex;
  align-items: center;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}
.nav .logo {
  flex: 1;
}
.nav .logo img {
  height: 60px;
}
.nav .nav-bar {
  height: inherit;
  font-family: "HK Grotesk", sans-serif;
  font-weight: bold;
  font-size: 1.1em;
  text-transform: uppercase;
  transition: left 0.3s;
}
.nav .nav-bar span.dividing-el {
  color: rgba(0, 0, 0, 0.2);
  display: none;
}
.nav .nav-bar > .nav-el {
  color: #54365c;
  padding: 4px;
  margin: 0px 8px;
  display: inline-block;
  vertical-align: middle;
  height: inherit;
  display: inline-table;
  vertical-align: middle;
  transition: color 0.2s;
}
.nav .nav-bar > .nav-el:hover {
  color: black;
}
.nav .nav-bar > .nav-el:hover .nav-drop {
  height: 250px;
}
@media only screen and (max-width: 933px) {
  .nav .nav-bar > .nav-el:hover .nav-drop {
    height: auto;
  }
}
.nav .nav-bar > .nav-el.dark {
  color: white;
  background-color: #54365c;
  margin: 0px 10px;
  padding: 0px 20px;
  transition: background-color 0.2s, color 0.2s;
}
.nav .nav-bar > .nav-el.dark:hover {
  background-color: #402c46;
}
.nav .nav-bar > .nav-el span {
  vertical-align: middle;
  display: table-cell;
}
.nav .nav-bar > .nav-el > a {
  display: table-cell;
  vertical-align: middle;
  color: #54365c;
  transition: color 0.2s;
}
.nav .nav-bar > .nav-el > a:hover {
  color: black;
}
.nav .nav-bar > .nav-el .nav-drop {
  height: 0px;
  overflow: hidden;
  position: absolute;
  top: 100px;
  margin-left: -20px;
  transition: height 0.5s;
}
.nav .nav-bar > .nav-el .nav-drop .shadow-wrap {
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.2);
  margin: 5px;
  margin-top: 0px;
}
.nav .nav-bar > .nav-el .nav-drop .shadow-wrap a {
  display: block;
  background-color: white;
  padding: 15px;
  padding-right: 30px;
  min-width: 100px;
  color: #54365c;
  transition: background-color 0.2s, color 0.2s;
}
.nav .nav-bar > .nav-el .nav-drop .shadow-wrap a:hover {
  background-color: #eee;
}
.nav .nav-bar .language-stack {
  display: inline-block;
  padding: 4px;
  margin: 0px 14px;
  vertical-align: middle;
}
.nav .nav-bar .language-stack a {
  font-size: 0.9em;
  line-height: 1.2;
  display: block;
  cursor: pointer;
  color: #54365c;
}
.nav .nav-bar .language-stack a:hover {
  color: black;
}
@media only screen and (max-width: 933px) {
  .nav .nav-bar {
    position: fixed;
    min-width: 60%;
    max-width: 75%;
    height: 100%;
    left: -100%;
    top: 0;
    background-color: white;
    padding: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  }
  .nav .nav-bar.open {
    left: 0%;
  }
  .nav .nav-bar > a.nav-el {
    margin: 5px;
    padding: 10px;
  }
  .nav .nav-bar > a.nav-el:hover {
    color: white;
    background-color: #54365c;
  }
  .nav .nav-bar > .nav-el {
    display: block;
    height: auto;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column-reverse;
  }
  .nav .nav-bar > .nav-el span {
    vertical-align: middle;
    display: table-cell;
  }
  .nav .nav-bar > .nav-el > a {
    margin: 5px;
    padding: 10px;
  }
  .nav .nav-bar > .nav-el > a:hover {
    color: white;
    background-color: #54365c;
  }
  .nav .nav-bar > .nav-el .nav-drop {
    height: auto;
    overflow: visible;
    position: unset;
    margin-left: 16px;
    border-left: 3px solid #54365c;
  }
  .nav .nav-bar > .nav-el .nav-drop .shadow-wrap {
    box-shadow: unset;
    margin: 0px;
  }
  .nav .nav-bar > .nav-el .nav-drop .shadow-wrap a {
    padding: 15px;
    padding-right: 30px;
    min-width: 100px;
    color: #54365c;
  }
  .nav .nav-bar > .nav-el .nav-drop .shadow-wrap a:hover {
    color: white;
    background-color: #54365c;
  }
  .nav .nav-bar .language-stack {
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin: 0px;
    padding: 0px;
  }
  .nav .nav-bar .language-stack a {
    margin-top: 5px;
    margin-left: 5px;
    padding: 10px;
    display: inline-block;
  }
}
.nav .nav-button-box {
  display: none;
  font-size: 2em;
  color: #54365c;
}
.nav .nav-button-box .nav-button {
  padding: 10px;
}
@media only screen and (max-width: 933px) {
  .nav .nav-button-box {
    display: block;
  }
}

.welcome-wrapper {
  width: 100%;
  display: flex;
}
.welcome-wrapper .welcome-view {
  width: 100%;
  height: 100vh;
  background-image: url("/assets/images/landing.jpg");
  background-size: cover;
  background-position: 50%;
  display: flex;
  align-items: center;
  padding: 10%;
}
.welcome-wrapper .welcome-view .content {
  color: white;
}
.welcome-wrapper .welcome-view .content .pusher {
  height: 50px;
}
.welcome-wrapper .welcome-view .content h1 {
  margin: 5px 0px;
  font-size: 3em;
  font-family: "HK Grotesk", sans-serif;
}
.welcome-wrapper .welcome-view .content div.subheader {
  margin-bottom: 20px;
  font-size: 1.4em;
  font-family: "HK Grotesk", sans-serif;
}
.welcome-wrapper .subscribe-box {
  width: 35%;
  padding: 4rem 3rem;
  padding-top: 35vh;
  background-color: #54365c;
  color: white;
}
.welcome-wrapper .subscribe-box h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.welcome-wrapper .subscribe-box #mce-EMAIL {
  border: 0px;
  padding: 0.8rem;
  width: 100%;
  margin-bottom: 1.4rem;
}
.welcome-wrapper .subscribe-box #mc-embedded-subscribe {
  width: 100%;
  margin-bottom: 1.4rem;
}
.welcome-wrapper .subscribe-box .description {
  color: #a585af;
}
.welcome-wrapper .subscribe-box .description a {
  color: #a585af;
  text-decoration: underline;
}
@media only screen and (max-width: 933px) {
  .welcome-wrapper {
    display: block;
  }
  .welcome-wrapper .subscribe-box {
    width: 100%;
    padding: 4rem;
  }
}

.stripe {
  padding-top: 60px;
  padding-bottom: 60px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}
.stripe h1.ui.header {
  font-family: "HK Grotesk", sans-serif;
}
.stripe.white {
  background-color: white;
}
.stripe.white .text-hl {
  padding: 2px 5px;
  background-color: #ffd000;
}
.stripe.violet {
  background-color: #54365c;
  color: white;
}
.stripe.violet * {
  color: white;
}
.stripe.climate-green {
  background-color: #1a7240;
  color: white;
}
.stripe.climate-green * {
  color: white;
}
.stripe.climate-green .text-hl {
  padding: 2px 5px;
  color: black;
  background-color: #ffd000;
}
.stripe.climate-special {
  padding-top: 160px;
  padding-bottom: 160px;
  background-color: #404a3c;
  color: white;
}
.stripe.climate-special * {
  color: white;
}
.stripe.climate-special .text-hl {
  padding: 2px 5px;
  color: black;
  background-color: #ffd000;
}
.stripe.climate-special .text-hl-2 {
  padding: 2px 5px;
  color: black;
  background-color: #ffffff;
}
.stripe.climate-special a {
  color: #aaa;
  transition: color 0.2s;
}
.stripe.climate-special a:hover {
  color: white;
}
.stripe.fyeg {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #128C3B;
  color: white;
}
.stripe.fyeg * {
  color: white;
}
.stripe.fyeg > div {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 723px) {
  .stripe.fyeg > div {
    flex-direction: column;
  }
  .stripe.fyeg > div .description {
    padding: 0px;
    padding-top: 40px;
  }
}
.stripe.fyeg > div img {
  height: 150px;
  display: inline-block;
}
.stripe.fyeg > div .description {
  padding-left: 40px;
  font-size: 1.2em;
}
.stripe.fyeg > div .description a {
  font-weight: bold;
}
.stripe.fyeg > div .description a:hover {
  text-decoration: underline;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin: 40px 0px;
}
@media only screen and (max-width: 723px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}
.news-grid .article {
  width: 100%;
}
.news-grid .article a.image {
  width: 100%;
}
.news-grid .article a.image img {
  width: 100%;
}
.news-grid .article .header {
  color: black;
}
.news-grid .article .header > * {
  margin-top: 5px;
  font-family: "HK Grotesk", sans-serif;
}
.news-grid .article .header h2 {
  margin-bottom: 0px;
}
.news-grid .article span.time {
  display: inline-block;
  font-size: 0.9em;
  margin-top: 0px;
}
.news-grid .article a.author {
  font-size: 0.9em;
  margin-top: 0px;
  color: rgba(0, 0, 0, 0.87);
}
.news-grid .article a.author:hover {
  color: black;
}

.welcome-block {
  height: 80vh;
}

.landing-textblock {
  font-size: 1.2em;
  margin: 30px 0px;
}

.socmedia-block {
  display: flex;
  width: 60%;
  margin: auto 20%;
  justify-content: space-evenly;
}
@media only screen and (max-width: 723px) {
  .socmedia-block {
    flex-direction: column;
    align-items: center;
  }
}
.socmedia-block a.segment {
  font-size: 2em;
  border-radius: 50%;
  width: 3.4em;
  height: 3.4em;
  text-align: center;
  vertical-align: middle;
  color: #54365c;
  margin-top: 10px !important;
  transition: background-color 0.2s, color 0.2s;
}
.socmedia-block a.segment:hover {
  color: white;
}
.socmedia-block a.segment:hover.fb {
  background-color: #3b5998;
}
.socmedia-block a.segment:hover.tw {
  background-color: #2795e9;
}
.socmedia-block a.segment:hover.ig {
  background-color: #395c79;
}

.document-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 8px;
  margin: 40px 0px;
}
@media only screen and (max-width: 723px) {
  .document-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.document-grid > a {
  background-color: #54365c;
  padding: 8px;
  color: white;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: background-color 0.2s;
}
.document-grid > a:hover {
  background-color: #402c46;
}
.document-grid > a .icon {
  font-size: 4em;
}
.document-grid > a .title {
  font-size: 1.1em;
  font-weight: bold;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 8px;
}
@media only screen and (max-width: 723px) {
  .people-grid {
    grid-template-columns: 1fr;
  }
}
.people-grid .person {
  text-align: center;
}
.people-grid .person div.img {
  display: inline-block;
  width: 150px;
  height: 150px;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 50%;
}
.people-grid .person h3.name {
  margin: 0px;
  margin-top: 8px;
}
.people-grid .person .sub.header {
  font-style: italic;
  color: #333;
  margin-bottom: 8px;
}

.document-list .list-entry {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.document-list .list-entry:first-child {
  border-top: none;
}
.document-list .list-entry:hover .icon {
  color: #402c46;
}
.document-list .list-entry:hover .content {
  color: black;
}
.document-list .list-entry .icon, .document-list .list-entry .content {
  padding: 5px;
}
.document-list .list-entry .icon {
  font-size: 2em;
  color: #54365c;
  transition: color 0.2s;
}
.document-list .list-entry .content {
  padding-left: 10px;
  flex: 1;
  font-size: 1.2em;
  color: rgba(0, 0, 0, 0.87);
  transition: color 0.2s;
}

.part-of-org-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
}
@media only screen and (max-width: 723px) {
  .part-of-org-box {
    grid-template-columns: 1fr;
  }
}

.org-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0px;
  padding: 15px 25px;
}
@media only screen and (max-width: 723px) {
  .org-box {
    padding: 10px 5px;
  }
}
.org-box.fyeg {
  border: 10px solid #128C3B;
}
.org-box.ljp {
  border: 10px solid #ff8418;
}
.org-box img {
  display: block;
  height: 160px;
  margin: 1rem;
}
.org-box .description {
  padding-left: 20px;
  font-size: 1.1em;
  color: black;
}
.org-box .description a {
  color: black;
  font-weight: bold;
}
.org-box .description a:hover {
  text-decoration: underline;
}

.partner-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 15px;
  margin: 40px 0px;
  align-items: center;
}
@media only screen and (max-width: 723px) {
  .partner-list {
    display: block;
    text-align: center;
  }
  .partner-list .partner-logo {
    margin-top: 40px;
  }
}
.partner-list .divider {
  grid-column: span 2;
}
.partner-list .partner-logo {
  margin-top: 20px;
  text-align: center;
}
.partner-list .partner-logo img {
  width: 80%;
}
.partner-list .info .name {
  font-size: 1.2em;
  text-align: center;
}
.partner-list .info a {
  display: inline-block;
  margin: 10px 0px;
  font-size: 1em;
}
.partner-list .info a .icon {
  font-size: 0.8em;
}

.event-list {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 5px;
  margin: 30px 0px;
}
.event-list > * {
  padding: 7px;
}
.event-list.old .date-box {
  background-color: #cacaca;
  color: black;
}
.event-list .date-box {
  background-color: #54365c;
  color: white;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
.event-list .header {
  color: rgba(0, 0, 0, 0.87);
  transition: color 0.2s;
  font-size: 1.1em;
}
.event-list .header:hover {
  color: black;
}
.event-list .details {
  font-size: 0.8em;
  color: #666;
}

.happening-now {
  display: inline-block;
  margin: 0px 7px;
  padding: 0px 7px;
  border-radius: 2px;
  background-color: #399521;
  color: white;
}
.happening-now.at-header {
  font-size: 0.5em;
  line-height: 1.6;
  font-weight: normal;
}

.already-finished {
  display: inline-block;
  margin: 0px 7px;
  padding: 0px 7px;
  border-radius: 2px;
  background-color: #dadada;
  color: black;
}
.already-finished.at-header {
  font-size: 0.5em;
  line-height: 1.6;
  font-weight: normal;
}

.centered-content-container {
  text-align: center;
}

.standard-content {
  padding-top: 130px;
  padding-bottom: 30px;
}
.standard-content .ui.header {
  margin: 30px 0px;
  font-family: "HK Grotesk", sans-serif;
}

.plain-content {
  margin: 30px 0px;
}
.plain-content.fff {
  font-size: 1.5rem;
}
.plain-content.fff .list-item {
  margin: 3rem 0px;
  list-style: none;
}

.article-container img.title-img {
  width: 100%;
  margin-top: 10px;
}
.article-container .image-descr {
  color: #666;
}
.article-container h1 {
  font-family: "HK Grotesk", sans-serif;
  font-size: 2.4em;
  margin-bottom: 5px;
}
.article-container a.author {
  color: rgba(0, 0, 0, 0.87);
}
.article-container a.author:hover {
  color: black;
}
.article-container div.text {
  margin: 15px 0px;
  font-size: 1.2em;
  font-family: "Lora", serif;
}
.article-container div.text * {
  font-family: "Lora", serif;
}
.article-container div.text p {
  margin: 15px 0px !important;
  font-family: "Lora", serif;
}

.time-box {
  color: grey;
  margin: 30px 0px;
}
.time-box .ic {
  color: #aaa;
}

.join-form iframe {
  width: 100%;
  height: 500px;
}

.footer {
  padding: 70px 0px !important;
}

.footer-link {
  color: white;
}
.footer-link:hover {
  color: white;
  text-decoration: underline;
}

.cookie-alert {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  padding: 20px;
  background-color: #54365c;
  color: white;
  display: none;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}
.cookie-alert .flex {
  display: flex;
  align-items: center;
}
.cookie-alert .flex .text {
  flex: 1;
  font-size: 1.2em;
}
.cookie-alert .flex .buttons .speclink {
  margin: auto 10px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}
.cookie-alert .flex .buttons .speclink:hover {
  text-decoration: underline;
}

.socmedia-share-buttons {
  margin: 20px 0px;
}
.socmedia-share-buttons > * {
  vertical-align: top;
  display: inline-block;
}
.socmedia-share-buttons > script {
  display: none;
}

.climate-march-welcome-view {
  width: 100%;
  height: 100vh;
  background: #1a7240;
  background: -moz-linear-gradient(45deg, #1a7240 0%, #27946a 50%, #3fd4b7 100%);
  background: -webkit-linear-gradient(45deg, #1a7240 0%, #27946a 50%, #3fd4b7 100%);
  background: linear-gradient(45deg, #1a7240 0%, #27946a 50%, #3fd4b7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a7240",endColorstr="#3fd4b7",GradientType=1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
}
.climate-march-welcome-view .content {
  text-align: center;
  color: white;
}
.climate-march-welcome-view .content .pusher {
  height: 50px;
}
.climate-march-welcome-view .content .timing {
  display: inline-block;
  padding: 20px 20px;
  margin: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 2.4rem;
  color: white;
}
.climate-march-welcome-view .content h1 {
  margin: 5px 0px;
  font-size: 5rem;
  text-transform: uppercase;
  font-family: "HK Grotesk", sans-serif;
  text-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 723px) {
  .climate-march-welcome-view .content h1 {
    font-size: 3rem;
  }
}
.climate-march-welcome-view .content .subheader {
  margin-top: 1rem;
  font-size: 2rem;
  font-family: "HK Grotesk", sans-serif;
  font-style: italic;
}
@media only screen and (max-width: 723px) {
  .climate-march-welcome-view .content .subheader {
    font-size: 1.8rem;
  }
}

.climate-social-media-icons {
  position: absolute;
  top: 0px;
  font-size: 1.8em;
  padding: 1.5rem;
  width: 100%;
  text-align: center;
}
.climate-social-media-icons a {
  color: white;
  padding: 1px;
  margin: 1rem;
}

.organisers-container {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #222;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
}
.organisers-container .organisers {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 3rem;
  grid-row-gap: 1rem;
  font-size: 1.4rem;
}
.organisers-container .organisers img {
  height: 6rem;
}

/*# sourceMappingURL=main.css.map */
