.block_cont {
  margin: 100px 50px 50px;
}

.block_cont.full_width {
  margin-left: 0;
  margin-right: 0;
}

.breadcrumb + .block_cont {
  margin-top: 50px;
}

@media (max-width: 1200px) {
  .block_cont {
    margin: 50px 20px 20px;
  }
  .block_cont.full_width {
    margin-left: 0;
    margin-right: 0;
  }
}

.image_block {
  margin: auto;
}

.image_block.inline {
  max-width: 1000px;
}

.image_block .image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left;
  max-height: 95vh;
}

.block_cont.full_width .image_block  .image {
  max-height: unset;
}


.image_block .caption {
  margin: 1em 0;
}

.image_block.full_width .caption {
  margin: 1em 50px;
}

@media (max-width: 1200px) {
  .image_block.full_width .caption {
    margin: 1em 20px;
  }
}


.text_block {
  max-width: 1000px;
  margin: auto;
  font-size: 1.2em;
}

@media (max-width: 1200px) {
  .text_block {
    font-size: 1.2em;
  }
}



.large_text_block {
  max-width: 1000px;
  margin: auto;
  font-size: 1.4em;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .large_text_block {
    font-size: 1.2em;
  }
}


.two_column_block {
  max-width: 1000px;
  margin: auto;
}

.two_column_block:after {
  clear: both;
  content: " ";
  height: 0;
  display: block;
}

.two_column_block .col {
  width: calc(50% - 30px);
  float: left;
}

.two_column_block .col_70 {
  width: calc(70% - 30px);
}

.two_column_block .col_30 {
  width: calc(30% - 30px);
}

.two_column_block .col + .col {
  margin-left: 60px;
}

@media (max-width: 1200px) {
  .two_column_block .col {
    float: none;
    width: auto;
  }

  .two_column_block .col + .col {
    margin-left: 0;
    margin-top: 1.4em;
  }
}

.two_column_block .col .block_cont {
  margin: 40px 0 0;
  break-inside: avoid-column;
}

.two_column_block .col .block_cont:first-child {
  margin-top: 0;
}


/*
 * columns_block
 */

.columns_block {
  max-width: 1600px;
  margin: auto;
}

.columns_block:after {
  clear: both;
  content: " ";
  height: 0;
  display: block;
}

.columns_block .col {
  width: calc(33.33% - 40px);
  margin-left: 60px;
  float: left;
  min-height: 1px;
}

.columns_block .col:first-child {
  margin-left: 0;
}

@media (max-width: 1200px) {
  .columns_block .col {
    float: none;
    width: auto !important;
  }

  .columns_block .col + .col {
    margin-left: 0;
    margin-top: 50px;
  }
}

.columns_block .col .block_cont {
  margin: 40px 0 0;
  break-inside: avoid-column;
}

.columns_block.white_background .col {
  background: #fff;
  border-radius: 20px;
}

.columns_block .col .block_cont {
  padding: 20px;
}

.columns_block .col .block_cont:first-child {
  margin-top: 0;
}

.columns_block.max_width_1600 {
  max-width: 1600px;
}

.columns_block.max_width_1000 {
  max-width: 1000px;
}



.image_2_column_block {
  max-width: 1800px;
  margin: auto;
}

.image_2_column_block:after {
  clear: both;
  content: " ";
  height: 0;
  display: block;
}

.image_2_column_block .col {
  width: calc(50% - 30px);
  float: left;
}

.image_2_column_block .col + .col {
  margin-left: 60px;
}

@media (max-width: 1200px) {
  .image_2_column_block .col {
    float: none;
    width: auto;
  }

  .image_2_column_block .col + .col {
    margin-left: 0;
    margin-top: 2em;
  }
}

.image_2_column_block .col_image {
  width: 100%;
  display: block;
  height: auto;
}



/*
 * five_column_block
 */

.five_column_block {
  margin: 100px 0 0;
  background: var(--pale-green);
  padding: 50px;
  overflow: hidden;
}

.five_column_cont {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  clear: both;
}

.col_group {
  float: left;
  box-sizing: border-box;
  overflow: hidden;
}

.left_group {
  width: calc(40% - 15px);
  padding-right: 15px;
  box-sizing: border-box;
  float: left;
}

.right_group {
  width: calc(60% - 15px);
  padding-left: 15px;
  box-sizing: border-box;
  float: left;
}

.heading {
  text-align: center;
  color: var(--mid-green);
  font-weight: 800;
  font-size: 1.7em;
  margin-bottom: 50px;
}

.cols {
  overflow: hidden;
  margin: 0 -15px;
}

.col {
  float: left;
  box-sizing: border-box;
  padding: 0 15px;
  margin-bottom: 30px;
}

.left_group .col {
  width: 50%;
}

.right_group .col {
  width: 33.3333%;
}

@media (max-width: 1200px) {
  .five_column_block {
    margin-top: 50px;
    padding: 20px;
  }

  .col_group {
    width: 100%;
    float: none;
    padding: 0;
  }

  .right_group .col {
    width: 33.3333%;
  }

  .left_group .col {
    width: 50%;
  }

  .right_group .col {
    width: 33.3333%;
  }
}

@media (max-width: 900px) {
  .col {
    width: 100% !important;
    float: none;
  }
}


/*
 * header block
 */

.header_block {
  position: relative;
  height: calc(60vh - 90px);
  overflow: hidden;
  background: #f5f5f5 center/cover;
}

.header_block .title_cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 95%;
}

.header_block .title_text {
  font-size: 2.2em;
  font-weight: 800;
  padding: 0 20px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .header_block .title_text {
    font-size: 2em;
  }
}


/*
 * anchor block
 */


.anchor_block {
  transform: translateY(-90px);/* scroll past header */
}



/*
 * card block
 */

.card_block {
  max-width: 1285px;
  margin: auto;
  margin-top: 40px;
  vertical-align: top;
  font-size: 0;
  break-inside: avoid;
  text-align: center;
  line-height: 1.4;
  display: block;
  text-decoration: none;
}

.card_block:first-of-type {
  margin-top: 0;
}

.card_block .img_cont {
  position: relative;
  display: inline-block; 
  width: 100%;
  display: block;
  padding-top: 75%;
}

.card_block .card_img_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: center/cover no-repeat;
}

.card_block .details_cont {
  padding-top: 20px;
  font-size: 20px;
}

@media (max-width: 1200px) {
  .card_block .details_cont {
    position: static;
  }
}

.card_block .title {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1em;
  color: var(--teal);
}

.card_block .date {
  margin: 20px;
  font-size: 0.7em;
  text-transform: uppercase;
  font-weight: bold;
}

.card_block .description {
  margin-top: 1em;
  font-size: 0.85em;
}


/* inline accordion block */

.inline_accordion_block .accordion_title {
  max-width: 1000px;
  margin: auto;
  cursor: pointer;
  font-size: 1.2em;
  color: var(--deep-green);
  font-weight: 500;
}
.inline_accordion_block .text_block {
  display: none;
  padding-top: 1.5em;
}
.inline_accordion_block .text_block.active {
  display: block;
}


/* boxed accordion block */

.boxed_accordion_block .heading {
  font-size: inherit;
  margin: 0;
}

.boxed_accordion_block .title {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 700;
  padding: 1em 2.5em 1em 1em;
  box-sizing: border-box;
  background: #fff;
  color: var(--mid-green);
  border: 3px solid var(--mid-green);
  position: relative;
  text-decoration: none;
}

.boxed_accordion_block .title:hover {
  opacity: 0.9;
}

.boxed_accordion_block .title:after {
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  width: 3em;
  height: 100%;
  background: url('/static/images/chevron_right_green.svg') center/2em no-repeat;
  transform: rotate(90deg);
  transform-origin: center;
}

.boxed_accordion_block.active .title:after {
  transform: rotate(-90deg);
}

.boxed_accordion_block .text_block {
  display: none;
  padding: 1.5em 1em;
  box-sizing: border-box;
  border: 3px solid var(--mid-green);
  border-top: none;
}

.boxed_accordion_block.active .text_block {
  display: block;
}


/*
 * sponsors block
 */

.sponsors_block {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.sponsors_block.center {
  text-align: center;
}

.sponsors_block.right {
  text-align: right;
}

@media (max-width: 1200px) {
  .sponsors_block {
    max-width: 600px;
  }
}

.sponsors_block:after {
  clear: both;
  content: " ";
  height: 0;
  display: block;
}

.sponsors_block .sponsor {
  display: inline-block;
  /* 8 margins * 75px/margin / 4 columns = 150px/column */
  width: calc(25% - 150px);
  margin: 0 75px 20px;
  background: center/contain no-repeat;
  height: 150px;
  position: relative;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .sponsors_block .sponsor {
    /* 4 margins * 20px/margin / 2 columns = 40px/column */
    width: calc(50% - 40px);
    margin: 0 20px 20px;
  }
}

.sponsors_block .sponsor .text {
  text-decoration: none;
  font-size: 25px;
  color: #666;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.sponsors_block .sponsor .sub_image {
  width: 100%;
  margin: 30px 0 10px;
  height: calc(100% - 60px);
  background: center/contain no-repeat;
}


.sponsors_block .sponsor .caption {
  width: 100%;
  text-decoration: none;
  font-size: inherit;
  color: #666;
  text-align: center;
  line-height: 1.3;
}


/*
 * embed block
 */

.embed_block.content_width {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.embed_block_cont.full_width {
  background: #000;
}
.embed_block.full_width {
  /* 
   * We dont want the height to be more than 100vh - 90px:
   * A) height = 56.25% width
   * B) height < 100vh - 90px
   * Solving:
   *         height < 100vh - 90px
   * 0.5625 * width < 100vh - 90px
   *          width < (100vh - 90px) / 0.5625
   *          width < (100vh - 90px) * 1.7777
   *          width < 177.77vh - 159.993px
   */
  max-width: calc(177.77vh - 159.993px);
  margin: auto;
}
.embed_block .responsive-object {
  position: relative;
}
.embed_block .responsive-object iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}


.html_block {
}

.html_block.content_width {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}


/* video block */


.video_block {
}

@media (max-width: 768px) {
  .video_block {
    margin-top: 3rem;
  }
}

.video_block .video {
  width: 100%;
  margin: auto;
  display: block;
}

.video_block.content_width {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.video_block.full_width {
  max-width: 100%;
  margin: auto;
}


/*
 * button block
 */

.button_block_cont {
  margin: 1em 50px;
}

@media (max-width: 1200px) {
  .button_block_cont {
    margin: 1em 20px;
  }
}

.button_block {
  margin: auto;
  max-width: 1000px;
}

.two_column_block .button_block_cont {
  margin: 1em 0;
}

.button_block .button {
  color: #fff;
  background: var(--mid-green);
  font-size: 1.2em;
  font-weight: 700;
  padding: 1em 2em;
  text-decoration: none;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  font-family: inherit;
}

.button_block .button.mid-green {
  background: var(--mid-green);
}

.button_block .button.deep-green {
  background: var(--deep-green);
}

.button_block .button.rust {
  background: var(--rust);
}

.button_block .button.white {
  background: #fff;
  color: var(--deep-green);
}

.button_block.left {
  text-align: left;
}

.button_block.center {
  text-align: center;
}

.button_block.right {
  text-align: right;
}


/*
 * reduce_space_block
 */

@media (max-width: 1200px) {
  .reduce_space_block.desktop {
    display: none;
  }
}

.reduce_space_block.mobile {
  display: none;
}

@media (max-width: 1200px) {
  .reduce_space_block.mobile {
    display: block;
  }
}


.list_block {
  margin: auto;
  column-count: 3;
  column-gap: 30px;
  max-width: 1000px;
}

.list_block.full_width {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

@media (max-width: 1200px) {
  .list_block {
    column-count: 2 !important;
  }
}

.list_block .block_cont {
  margin: 40px 0 0;
  break-inside: avoid-column;
}

.list_block .block_cont:first-child {
  margin-top: 0;
}


/*
 * theme_block
 */


.theme_block {
  overflow: hidden;
  position: relative;
  margin: 100px 0 0;
}

.theme_block.parallax {
  min-height: 50vh;
}

@media (max-width: 1200px) {
  .theme_block {
    margin: 50px 0 0;
  }
}


.theme_block .desktop_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.theme_block.parallax .desktop_bg {
  height: 100vh;
  background-attachment: fixed;
}

@media (max-width: 900px) {
  .theme_block .desktop_bg {
    display: none;
  }
}

.theme_block .mobile_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: -1;
  display: none;
}

@media (max-width: 900px) {
  .theme_block .mobile_bg {
    display: block;
  }
}

.theme_block.pale-green .desktop_bg,
.theme_block.pale-green .mobile_bg {
  background-color: var(--pale-green);
}

.theme_block.light-green .richtext * {
  color: #fff;
}
.theme_block.light-green .desktop_bg,
.theme_block.light-green .mobile_bg {
  background-color: var(--light-green);
}

.theme_block.mid-green .richtext * {
  color: #fff;
}

.theme_block.mid-green .desktop_bg,
.theme_block.mid-green .mobile_bg {
  background-color: var(--mid-green);
}

.theme_block.deep-green .richtext * {
  color: #fff;
}
.theme_block.deep-green .desktop_bg,
.theme_block.deep-green .mobile_bg {
  background-color: var(--deep-green);
}

.theme_block.sunrise-gradient .richtext * {
  color: #fff;
}
.theme_block.sunrise-gradient .desktop_bg,
.theme_block.sunrise-gradient .mobile_bg {
  background: linear-gradient(to bottom, #F2BD00, #F69400);
}

.theme_block.sunset-gradient .richtext * {
  color: #fff;
}
.theme_block.sunset-gradient .desktop_bg,
.theme_block.sunset-gradient .mobile_bg {
  background: linear-gradient(to bottom, #F69400, #D0723D);
}


.theme_block > .block_cont:nth-child(3) {
  padding-top: 100px;
  margin-top: 0;
}

.theme_block > .block_cont:last-of-type {
  padding-bottom: 100px;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .theme_block > .block_cont:nth-child(3) {
    padding-top: 50px;
  }

  .theme_block > .block_cont:last-of-type {
    padding-bottom: 50px;
  }
}

.theme_block + .theme_block {
  margin-top: 0;
}


/*
 * posts_block
 */

.posts_block {
  max-width: 1600px;
  min-height: 200px;
  margin: 50px auto 100px;
  padding: 0 50px;
  font-size: 1.2em;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .posts_block {
    margin: 50px auto 50px;
    padding: 0 20px;
  }
}

.posts_block_cont {
  margin: 0 auto;
}

.posts_block .posts_search_cont:after {
  content: " ";
  height: 0;
  display: block;
  clear: both;
}

.posts_block .posts_filters_cont {
  display: inline-block;
}

@media (max-width: 1200px) {
  .posts_block .posts_filters_cont {
    width: 100%;
  }
}

.posts_block .posts_button_section {
  display: block;
}

.posts_block .posts_filter_button {
  display: inline-block;
  padding: 10px 30px;
  margin-top: 10px;
  margin-right: 10px;
  background-color: var(--mid-green);
  color: #fff;
  border: none;
  font-weight: bold;
  font-size: 0.9em;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
}

.posts_block .posts_filter_button.selected {
  background-color: var(--deep-green);
}

.posts_block .posts_select_section {
  display: inline-block;
  border: 2px solid var(--rust);
  padding: 0 5px;
  margin-right: 10px;
  margin-top: 10px;
}

.posts_block .posts_filter_label {
  font-size: 0.9em;
  line-height: 1.25em;
  display: inline-block;
  color: #000;
  opacity: 0.4;
}

.posts_block .posts_filter_select {
  display: inline-block;
  font-size: 0.9em;
  padding: 9px 0;
  border: 0;
  color: var(--mid-green);
  font-family: inherit;
  background-color: white;
  cursor: pointer;
  width: 45px;
  outline: none;
}

.posts_block .posts_filter_select:focus {
  border: none;
  outline: none;
}


.posts_block .posts_search_input_cont {
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  vertical-align: bottom;
}

@media (max-width: 1200px) {
  .posts_block .posts_search_input_cont {
    float: none;
  }
}

.posts_block .posts_search_input {
  font-size: 1.1em;
  padding: 8px 10px 7px;
  border: 2px solid var(--mid-green);
  width: 250px;
  color: inherit;
  font-family: inherit;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .posts_block .posts_search_input {
    width: 250px;
  }
}

.posts_block .posts_search_input::placeholder {
  opacity: 0.6;
}

.posts_block .posts_search_input:focus {
  outline: none;
}

.posts_block .posts_search_clear {
  text-decoration: underline;
  text-underline-position: under;
  color: var(--mid-green);
  font-size: 0.8em;
  margin-left: 10px;
  cursor: pointer;
  display: inline-block;
}

.posts_block .post_no_result {
  margin-top: 20px;
}

.posts_block .posts_cont {
  clear: both;
}

.posts_block .post_row {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.posts_block .post_page {
  flex: 1 1 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.posts_block .post_page_cont {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  
}

.posts_block .post_page_cont {
  text-decoration: none;
}

@media (max-width: 1200px) {
  .posts_block .post_row {
    flex-direction: column;
    gap: 40px;
  }

  .posts_block .post_page {
    flex: 1;
    width: 100%;
    max-width: 100%;
  }
}

.posts_block .post_details_cont {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.posts_block .post_tags_cont {
  margin-top: 5px;
}

.posts_block .post_tag {
  display: inline-block;
  margin-top: 10px;
  border-radius: 20px;
  font-weight: 700;
  margin-right: 10px;
  color: var(--light-grey);
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 800;
}

.posts_block .post_link_cont {
  text-decoration: none;
  display: block;
}

.posts_block .post_title {
  display: block;
  margin-top: 10px;
  font-weight: 800;
  color: var(--deep-green);
  text-decoration: none;
  font-size: 1.1em;
}

.posts_block .post_summary {
  margin: 10px 0;
  font-size: 0.9em;
}

.posts_block .post_date {
  margin: 10px 0 0;
  font-size: 0.85em;
  color: var(--mid-green);
}

.posts_block .post_img_cont {
  flex-shrink: 0;
}

.posts_block .post_img_el {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.posts_block .post_img_placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--pale-green);
  display: block;
}

.posts_block .post_page_links {
  margin-top: 10px;
}

.posts_block .post_page_link,
.posts_block .post_page_donate {
  display: inline-block;
  padding: 10px 30px;
  margin-top: 10px;
  margin-right: 10px;
  background-color: var(--mid-green);
  color: #fff;
  border: none;
  font-weight: bold;
  font-size: 0.8em;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
}

.posts_block .post_page_donate {
  background-color: var(--rust);
}


/*
 * breakout_box_block
 */

.breakout_box {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  position: relative;
  align-items: center;
}

.breakout_box .image_cont {
  width: 75%;
  position: relative;
  z-index: 0;
}

.breakout_box .image {
  width: 100%;
  height: auto;
  display: block;
}

.breakout_box .text_cont {
  width: 50%;
  z-index: 1;
  background: #fff;
  padding: 50px;
  position: relative;
}

.breakout_box.left .image_cont {
  order: 2;
}

.breakout_box.left .text_cont {
  order: 1;
  margin-right: -25%;
}

.breakout_box.right .image_cont {
  order: 1;
}

.breakout_box.right .text_cont {
  order: 2;
  margin-left: -25%;
}

@media (max-width: 1200px) {
  .breakout_box {
    flex-direction: column;
    align-items: stretch;
  }

  .breakout_box .image_cont,
  .breakout_box .text_cont {
    width: 100%;
    box-sizing: border-box;
  }

  .breakout_box.left .text_cont,
  .breakout_box.right .text_cont {
    margin-left: 0;
    margin-right: 0;
  }
}


.breakout_box .text_cont.pale-green {
  background: var(--pale-green);
}

.breakout_box .text_cont.mid-green {
  background: var(--mid-green);
}

.breakout_box .text_cont.mid-green .richtext * {
   color: #fff;
}

.breakout_box .text_cont .text_block.center {
  text-align: center;
}

.breakout_box .text_cont .text_block.right {
  text-align: right;
}

