/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/*
  Simple Grid
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - http://dallasbass.com
*/
[class*=grid],
[class*=col-],
[class*=mobile-],
.grid:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

[class*=col-] {
  float: left;
  min-height: 1px;
  padding-right: 20px; /* column-space */
}

[class*=col-] [class*=col-]:last-child {
  padding-right: 0;
}

.grid {
  width: 100%;
  max-width: 1140px;
  min-width: 748px; /* when using padded grid on ipad in portrait mode, width should be viewport-width - padding = (768 - 20) = 748. actually, it should be even smaller to allow for padding of grid containing element */
  margin: 0 auto;
  /*overflow: hidden;*/
}

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

.grid-pad {
  padding-top: 20px;
  padding-left: 20px; /* grid-space to left */
  padding-right: 0; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.push-right {
  float: right;
}

/* Content Columns */
.col-1-1 {
  width: 100%;
}

.col-2-3, .col-8-12 {
  width: 66.66%;
}

.col-1-2, .col-6-12 {
  width: 50%;
}

.col-1-3, .col-4-12 {
  width: 33.33%;
}

.col-1-4, .col-3-12 {
  width: 25%;
}

.col-1-5 {
  width: 20%;
}

.col-1-6, .col-2-12 {
  width: 16.667%;
}

.col-1-7 {
  width: 14.28%;
}

.col-1-8 {
  width: 12.5%;
}

.col-1-9 {
  width: 11.1%;
}

.col-1-10 {
  width: 10%;
}

.col-1-11 {
  width: 9.09%;
}

.col-1-12 {
  width: 8.33%;
}

/* Layout Columns */
.col-11-12 {
  width: 91.66%;
}

.col-10-12 {
  width: 83.333%;
}

.col-9-12 {
  width: 75%;
}

.col-5-12 {
  width: 41.66%;
}

.col-7-12 {
  width: 58.33%;
}

/* Pushing blocks */
.push-2-3, .push-8-12 {
  margin-left: 66.66%;
}

.push-1-2, .push-6-12 {
  margin-left: 50%;
}

.push-1-3, .push-4-12 {
  margin-left: 33.33%;
}

.push-1-4, .push-3-12 {
  margin-left: 25%;
}

.push-1-5 {
  margin-left: 20%;
}

.push-1-6, .push-2-12 {
  margin-left: 16.667%;
}

.push-1-7 {
  margin-left: 14.28%;
}

.push-1-8 {
  margin-left: 12.5%;
}

.push-1-9 {
  margin-left: 11.1%;
}

.push-1-10 {
  margin-left: 10%;
}

.push-1-11 {
  margin-left: 9.09%;
}

.push-1-12 {
  margin-left: 8.33%;
}

@media handheld, only screen and (max-width: 768px) {
  .grid {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px; /* grid-space to left */
    padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
  }
  [class*=col-] {
    width: auto;
    float: none;
    margin: 10px 0;
    padding-left: 0;
    padding-right: 10px; /* column-space */
  }
  [class*=col-] [class*=col-] {
    padding-right: 0;
  }
  /* Mobile Layout */
  [class*=mobile-col-] {
    float: left;
    margin: 0 0 20px;
    padding-left: 0;
    padding-right: 10px; /* column-space */
    padding-bottom: 0;
  }
  .mobile-col-1-1 {
    width: 100%;
  }
  .mobile-col-2-3, .mobile-col-8-12 {
    width: 66.66%;
  }
  .mobile-col-1-2, .mobile-col-6-12 {
    width: 50%;
  }
  .mobile-col-1-3, .mobile-col-4-12 {
    width: 33.33%;
  }
  .mobile-col-1-4, .mobile-col-3-12 {
    width: 25%;
  }
  .mobile-col-1-5 {
    width: 20%;
  }
  .mobile-col-1-6, .mobile-col-2-12 {
    width: 16.667%;
  }
  .mobile-col-1-7 {
    width: 14.28%;
  }
  .mobile-col-1-8 {
    width: 12.5%;
  }
  .mobile-col-1-9 {
    width: 11.1%;
  }
  .mobile-col-1-10 {
    width: 10%;
  }
  .mobile-col-1-11 {
    width: 9.09%;
  }
  .mobile-col-1-12 {
    width: 8.33%;
  }
  /* Layout Columns */
  .mobile-col-11-12 {
    width: 91.66%;
  }
  .mobile-col-10-12 {
    width: 83.333%;
  }
  .mobile-col-9-12 {
    width: 75%;
  }
  .mobile-col-5-12 {
    width: 41.66%;
  }
  .mobile-col-7-12 {
    width: 58.33%;
  }
  .hide-on-mobile {
    display: none !important;
    width: 0;
    height: 0;
  }
}
/*****************
	CONFIGURATIONS TO SIMPLEGRID
******************/
.grid {
  max-width: 1440px;
  border: 1px solid red;
}

.grid-pad {
  padding-top: 120px;
  padding-left: 120px;
  padding-bottom: 120px;
  padding-right: 80px;
}

[class*=col-] {
  padding-right: 40px;
  border: 1px solid grey;
}

@media (max-width: 568px) {
  .mobile-col-1-2.xs,
  .mobile-col-10-12.xs,
  .mobile-col-2-3.xs,
  .mobile-col-1-3.xs {
    float: none;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .grid {
    border: 1px solid yellow;
  }
  .grid-pad {
    padding-top: 60px;
    padding-left: 60px;
    padding-bottom: 60px;
    padding-right: 20px;
  }
}
@media (max-width: 1024px) {
  .grid {
    border: 1px solid green;
  }
  .grid-pad {
    padding-top: 60px;
    padding-left: 40px;
    padding-bottom: 60px;
    padding-right: 0px;
  }
}
@media (max-width: 768px) {
  .grid {
    border: 1px solid blue;
  }
  .grid-pad {
    padding-top: 60px;
    padding-left: 20px;
    padding-bottom: 60px;
    padding-right: 0px;
  }
  [class*=col-] {
    padding-right: 20px;
  }
}
@media (max-width: 568px) {
  .grid-pad {
    padding-top: 40px;
    padding-left: 20px;
    padding-bottom: 40px;
    padding-right: 0px;
  }
}
/*
@media (max-width: 768px){
	.grid-pad{padding-top: 40px; padding-left: 30px; padding-bottom: 30px;}
	[class*='col-'] {padding-right: 30px;}
	//.mobile-col-1-1{margin-bottom: 10px;}
}

@media (max-width: 568px){
	.grid-pad{padding-top: 40px; padding-left: 20px; padding-bottom: 20px;}
	[class*='col-'] {padding-right: 20px;}
}
*/
/**************
	VARIABLES
***************/
/**************
	UTILITIES
***************/
/*** BACKGROUNDS ***/
.bg--orange {
  background: #A9533C;
}

.bg--orange-3 {
  background: rgba(169, 83, 60, 0.03);
}

.bg--orange-11 {
  background: rgba(169, 83, 60, 0.11);
}

.bg--orange-15 {
  background: rgba(169, 83, 60, 0.15);
}

.bg--dk-green {
  background: #253835;
}

.bg--dk-green-94 {
  background: rgba(37, 56, 53, 0.94);
}

.bg--gray-40 {
  background: rgba(217, 217, 217, 0.4);
}

.bg--gray-2--15 {
  background: rgba(218, 218, 219, 0.15);
}

/*** DECOR ***/
.decor--line {
  display: block;
  width: 100px;
  height: 2px;
  background: #fff;
  margin: 15px 0px;
}

/***BORDER***/
.border-bottom--orange {
  border-bottom: 1px solid #A9533C;
}

/***TEXTS***/
.text--light {
  color: #fff;
}

.text--dark {
  color: #000;
}

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

.text--flavour {
  font-size: 2.6rem;
  font-weight: 300;
}

.text--orange {
  color: #A9533C;
}

.text--dk-green {
  color: #253835;
}

/*** PADDINGS ***/
.pad__top--0 {
  padding-top: 0px;
}

.pad__top--10 {
  padding-top: 10px;
}

.pad__top--20 {
  padding-top: 20px;
}

.pad__bot--20 {
  padding-bottom: 20px;
}

.pad__bot--40 {
  padding-bottom: 40px;
}

.pad__right--0 {
  padding-right: 0px;
}

.pad__bot--0 {
  padding-bottom: 0px;
}

.pad__bot--10 {
  padding-bottom: 10px;
}

.pad__bot--30 {
  padding-bottom: 30px;
}

.pad__all--40 {
  padding: 40px;
}

/*** MARGINS ***/
.margin__top--auto {
  margin-top: auto;
}

.margin__bottom--auto {
  margin-bottom: auto;
}

.margin__left-right--auto {
  margin-left: auto;
  margin-right: auto;
}

.margin__top--none {
  margin-top: 0px;
}

.margin__bottom--none {
  margin-bottom: 0px;
}

.margin__top--10 {
  margin-top: 10px;
}

.margin__top--20 {
  margin-top: 20px;
}

.margin__top--30 {
  margin-top: 30px;
}

.margin__top--40 {
  margin-top: 40px;
}

.margin__top--60 {
  margin-top: 60px;
}

.margin__top--80 {
  margin-top: 80px;
}

.margin__bottom--10 {
  margin-bottom: 10px;
}

.margin__bottom--20 {
  margin-bottom: 20px;
}

.margin__bottom--30 {
  margin-bottom: 30px;
}

.margin__bottom--40 {
  margin-bottom: 40px;
}

.margin__bottom--60 {
  margin-bottom: 60px;
}

.margin__bottom--80 {
  margin-bottom: 80px;
}

/**************
	COMPONENTS
***************/
/**** FLEX CONTAINER ****/
.flex-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}

.flex-child {
  width: 50%;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}

.flex-child--50 {
  width: 50%;
}

.flex-child--33 {
  width: 33%;
}

.flex-child--30 {
  width: 30%;
}

.flex-child--70 {
  width: 70%;
}

.flex-child--40 {
  width: 40%;
}

.flex-child--60 {
  width: 60%;
}

.flex-center-vert {
  display: flex;
  margin: auto;
  justify-content: center;
}

@media (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }
  .flex-child {
    width: 100%;
  }
  .flex-child:first-child {
    margin-bottom: 40px;
  }
}
/**** CARDS ****/
.card {
  padding: 20px;
  border-radius: 10px;
  display: flex;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 40px;
}

.card--1 {
  border-radius: 10px;
}

.card-figure {
  z-index: 1;
  flex: 0 0 calc(40% + 60px);
  flex-shrink: 0;
  margin-left: -40px;
  margin-top: -40px;
  margin-bottom: -40px;
  aspect-ratio: 1;
}

.card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-info {
  box-sizing: border-box;
  flex: 0 0 60%;
  margin-left: -20px;
  background: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 40px 20px;
  border-radius: 10px;
  z-index: 10;
}

.card-info strong {
  display: block;
  line-height: 1.5;
}

.card-info span {
  font-size: 1.4rem;
  display: block;
}

.card-info img {
  width: 100%;
  max-width: 200px;
  margin-top: 20px;
}

.card--2 {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-sizing: border-box;
}

.flex-child--2 {
  width: 33.33%;
  padding: 20px;
  box-sizing: border-box;
}

.card-icon {
  width: 68px;
  height: 68px;
  background: #fff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.card-icon svg {
  height: 26px;
  width: auto;
}

.card-text-preview {
  margin-bottom: 40px;
}

.card h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
}

#partners {
  box-sizing: border-box;
  margin-left: -20px;
  margin-right: -20px;
}

#partners .flex-child--2 {
  box-sizing: border-box;
  margin-bottom: 0px;
}

#partners .card--2 {
  text-align: center;
  height: 100%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#partners .card--2 img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

#events-body .flex-child {
  flex-basis: 50%;
  padding: 20px;
}

.card--3 {
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  min-height: 200px;
  height: 100%;
  padding-left: 160px;
  box-sizing: border-box;
}

.card-date-block::before {
  display: block;
  content: "";
  position: absolute;
  left: -80px;
  top: -2px;
  background: #A9533C;
  width: 160px;
  height: 200px;
  border-radius: 6px;
  box-shadow: 20px 20px 0px rgba(169, 83, 60, 0.44);
  transform: rotate(45deg);
}

.card-date-block-inner {
  color: #fff;
  position: absolute;
  top: 40px;
  left: 20px;
  font-size: 1.6rem;
  text-align: center;
}

.card-date-block-inner span {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
}

.card-image {
  height: 200px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-info-block .btn {
  display: inline-block;
  margin-top: 14px;
}

.card-info-block span {
  color: #A9533C;
  display: block;
  margin-bottom: 14px;
}

.card-info-block .card-desc {
  line-height: 1.2;
}

.card--4 {
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-date-block--rect {
  font-weight: 500;
  margin-top: -40px;
  margin-left: -40px;
  width: 80%;
  margin-bottom: 40px;
  height: auto;
  background: #A9533C;
  border-radius: 10px;
  padding: 40px;
  padding-top: 50px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  box-shadow: 20px 20px 0px rgba(169, 83, 60, 0.44);
  transform: rotate(0deg);
}

.card-shadow {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#past-events {
  margin-left: -20px;
  margin-right: -20px;
}

#past-events .flex-child {
  flex-basis: 33.33%;
  box-sizing: border-box;
  padding: 20px;
}

#featured-resource {
  margin-left: -20px;
  margin-right: -20px;
}

#featured-resource .card {
  display: flex;
  flex-direction: column;
  text-align: left;
  height: 100%;
}

/**** BUTTON ****/
button {
  border: none;
  background: none;
  box-shadow: none;
  margin: 0px;
  padding: 0px;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

.btn {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1.6rem;
  line-height: 1;
  text-decoration: none;
  text-align: center;
}

.btn-lang {
  background: #fff;
  color: #A9533C;
  padding: 6px 8px;
  border-radius: 4px;
}

.btn-orange {
  background: #A9533C;
  color: #fff;
}

.btn-orange:hover {
  background: #9a4a34;
}

.btn-green {
  background: #253835;
  color: #fff;
}

.btn-green:hover {
  background: #1a2825;
}

.btn-block {
  display: block;
}

.btn-large {
  padding: 20px 30px;
}

.btn-stack {
  margin-top: auto;
}

.btn-stack .btn:last-child {
  margin-top: 10px;
}

/**** CONTROLS ****/
.controls {
  display: flex;
  width: 100%;
}

.control {
  box-sizing: border-box;
  margin-right: 40px;
  flex: 1;
}

.control label {
  display: block;
  margin-bottom: 10px;
}

.control input {
  border: none;
  background: rgba(255, 255, 255, 0.73);
  border-radius: 10px;
  padding: 4px;
  font-size: 1.6rem;
  color: #000;
  width: 100%;
  box-sizing: border-box;
  height: 40px;
}

.control-wrapper {
  position: relative;
}

.control-wrapper button {
  font-size: 1.4rem;
  position: absolute;
  right: 0px;
  width: 120px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  min-width: 0;
  max-height: 40px;
  line-height: 40px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.control-wrapper input {
  padding-right: 130px;
  padding-left: 10px;
}

.control select {
  border: none;
  background: rgba(255, 255, 255, 0.73);
  font-size: 1.6rem;
  height: 40px;
  width: 100%;
  border-radius: 10px;
  padding: 0px 10px;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 568px) {
  .controls {
    flex-direction: column;
  }
  .control {
    margin-bottom: 20px;
    margin-right: 0px;
  }
  .control:last-child {
    margin-bottom: 0px;
  }
}
/**** PAGINATION ****/
.pagination {
  margin-top: 30px;
  text-align: right;
}

.pagination .btn {
  min-width: 0;
}

/*** EVENT BODY ***/
.event-body p {
  margin-bottom: 12px;
  line-height: 1.2;
}

.event-body figure {
  margin-bottom: 8px;
}

.event-body figure img {
  max-width: 100%;
}

.event-body figcaption {
  font-style: italic;
}

.event-body span {
  color: #A9533C;
  padding-bottom: 10px;
  border-bottom: 1px solid #A9533C;
  display: block;
  margin-top: 40px;
  margin-bottom: 40px;
}

.event-body h1 {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 20px;
}

.event-body h2 {
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 10px;
}

.event-body em {
  font-style: italic;
}

.event-body strong {
  font-weight: 500;
}

.event-body ol,
.event-body ul {
  margin-bottom: 20px;
  padding-left: 20px;
  margin-left: 0px;
}

.event-body li {
  line-height: 1.2;
}

.event-body ol li {
  list-style-type: decimal;
}

.event-body ul li {
  list-style-type: disc;
}

.event-body ul li::marker {
  color: #A9533C;
}

.event-description a {
  color: #A9533C;
}

.event-aside-polygon {
  position: relative;
  background: url("/assets/images/polygon.svg");
  background-size: cover;
  padding: 20px;
  background-repeat: no-repeat;
  padding-top: 160px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: auto;
  z-index: 0;
}

.event-aside-polygon::after {
  content: "";
  background: url("/assets/images/polygon.svg");
  background-size: cover;
  position: absolute;
  left: 20px;
  bottom: -20px;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: -1;
}

.event-aside dl {
  margin-bottom: 20px;
  color: #fff;
}

.event-aside dt {
  font-weight: 600;
  padding-bottom: 5px;
}

.event-aside dd {
  margin-bottom: 24px;
  line-height: 1.2;
}

.event-aside-map {
  background: #fff;
  display: block;
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
}

/**** SOCIAL ****/
.social {
  width: 30px;
  height: 30px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 10px;
  font-size: 0;
}

.social:first-child {
  margin-right: 10px;
}

.social-x {
  background: url("/assets/images/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.social-fb {
  background: url("/assets/images/Facebook_Logo_Secondary.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/**** PILLS ****/
.pills {
  margin-top: 30px;
  margin-bottom: 20px;
}

.pill {
  border-radius: 10px;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 14px;
  font-size: 1.4rem;
  margin-right: 10px;
}

.pill svg {
  max-height: 14px;
  display: inline-block;
  margin-bottom: -2px;
  margin-left: -4px;
}

.pill-orange {
  background: rgba(169, 83, 60, 0.6);
}

.pill-light-green {
  background: rgba(37, 56, 53, 0.6);
}

/*** CLOSE ***/
.close {
  width: 40px;
  height: 40px;
  background: rgba(37, 56, 53, 0.6);
  border-radius: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/*** SECTION HEADER ***/
.section-header {
  display: flex;
  border-bottom: 1px solid #A9533C;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.section-header-icon {
  flex-shrink: 0;
  margin-right: 30px;
}

.section-header-texts {
  flex-grow: 1;
  align-self: center;
}

.section-header-texts h3 {
  margin-bottom: 10px;
}

/*** RESOURCE CARDS ***/
.resource-cards .flex-child--33 {
  margin-bottom: 40px;
}

.resource-cards .card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  height: 100%;
  background: rgba(169, 83, 60, 0.1);
  align-items: flex-start;
}

.resource-cards .pill {
  align-self: flex-end;
  margin-bottom: 20px;
  display: inline-flex;
}

.resource-cards .card-info-block {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.resource-cards .btn {
  align-self: flex-end;
  margin-top: auto;
}

.resource-cards strong {
  margin-bottom: 20px;
  display: block;
}

/*****************
	GLOBAL STYLES
******************/
[class*=col-], .grid {
  border: none;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
}

[data-ember-action]:not(:disabled) {
  cursor: pointer;
}

h2 {
  font-size: 5rem;
  font-weight: 500;
  margin-bottom: 30px;
}

h3 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 4rem;
}

p {
  line-height: 1.3;
}

strong {
  font-weight: 600;
}

@media (max-width: 1024px) {
  h2 {
    font-size: 3.8rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 3.4rem;
  }
}
.header-inner {
  display: flex;
  padding: 20px 0px;
  align-items: center;
}

nav {
  margin-left: auto;
  margin-right: 20px;
}

nav ul {
  display: flex;
}

nav ul li {
  margin: 8px 4px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 4px 8px;
}

nav ul li a:hover {
  text-decoration: underline;
  color: #A9533C;
}

nav ul li a.active {
  background: #A9533C;
  color: #fff;
  border-radius: 4px;
}

footer .grid-pad {
  padding-top: 100px;
  padding-bottom: 40px;
}

footer img {
  max-width: 120px;
  margin-bottom: 20px;
}

footer p {
  font-size: 1.4rem;
}

footer .flex-container {
  border-bottom: 1px solid #A9533C;
}

footer nav {
  display: flex;
  margin-right: 0px;
}

footer nav ul {
  margin-left: auto;
}

@media (max-width: 768px) {
  footer .flex-container {
    flex-direction: column;
    text-align: center;
  }
  footer .flex-child {
    width: 100%;
  }
  footer nav ul {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
}
/*****************
	SPECIFIC STYLES
******************/
.site-logo {
  max-width: 80px;
}

#timeline img {
  max-width: 100%;
}

#events-header .grid-pad {
  padding-bottom: 40px;
}

#events-body {
  background: #F9F9FA;
}

.events-body-header {
  border-bottom: 2px solid #A9533C;
  margin-bottom: 60px;
}

.events-body-header span {
  text-transform: uppercase;
  color: #A9533C;
  display: block;
  background: #F9F9FA;
  float: left;
  padding-right: 10px;
  margin-top: -7px;
  font-weight: 500;
  font-size: 1.8rem;
}

#collab-members .flex-child {
  padding: 20px;
}

#event {
  position: relative;
  z-index: 0;
}

#event::after {
  content: "";
  background: url("/assets/images/transp-polygon.svg");
  background-size: cover;
  width: 100%;
  max-width: 50%;
  height: 100%;
  position: absolute;
  bottom: 0px;
  left: 0%;
  z-index: -1;
}

#arise-blurb {
  align-items: center;
}

.hero {
  height: 460px;
  position: relative;
}

.hero__image {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .grid-pad {
  border: 1px solid red;
  z-index: 10;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 100%;
  padding: 0px;
}

.hero__content {
  background: url("/assets/images/hero-angle-bg.svg");
  background-repeat: no-repeat;
  background-position: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__content h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  margin-right: 16%;
  line-height: 1.2;
}

.fa-solid {
  color: Red;
}

#index-upcoming {
  background: linear-gradient(110deg, rgba(37, 56, 53, 0.8) 0%, rgba(37, 56, 53, 0.8) 40%, rgba(169, 83, 60, 0.14) 40%, rgba(169, 83, 60, 0.14) 100%);
  position: relative;
}

.sticky-countdown {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  background: #A9533C;
  border-radius: 0px 0px 10px 10px;
  color: #fff;
  font-size: 3rem;
  padding: 20px;
  padding-top: 50px;
  width: auto;
  position: absolute;
  top: 0px;
  right: 200px;
  font-weight: 500;
}

#index-upcoming .flex-container {
  align-items: center;
  margin-top: 60px;
}

#index-upcoming .flex-child:first-child {
  flex: 0 0 40%;
  padding-left: 0px;
}

#index-upcoming .flex-child:last-child {
  flex: 0 0 60%;
}

#index-upcoming figure {
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#index-upcoming figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#index-upcoming .flex-child strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}

#index-upcoming .flex-child span {
  display: block;
  color: #A9533C;
  margin-bottom: 15px;
}

#index-upcoming .flex-child p {
  margin-bottom: 20px;
  line-height: 1.3;
}

#index-upcoming .flex-child .btn {
  margin-top: 10px;
  display: inline-block;
}

/*** RESOURCES PAGE ***/
#resources-header {
  background: rgba(169, 83, 60, 0.9);
  color: #fff;
}

#resources-header .grid-pad {
  padding-top: 70px;
  padding-bottom: 40px;
}

#resources-header h2 {
  text-transform: none;
  font-size: 4rem;
}

#resources-header svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

#feat-resource-block {
  background: linear-gradient(180deg, rgba(169, 83, 60, 0.05) -239.5%, rgba(141, 77, 60, 0.05) -139.5%);
}

#feat-resource-block .grid-pad {
  position: relative;
}

#feat-resource-block .flex-child:first-child {
  padding-left: 0px;
}

#feat-resource-block .flex-child--30 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#feat-resource-block h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #A9533C;
  padding: 15px 24px;
  border-radius: 10px;
  transform: skewX(-20deg);
}

#feat-resource-block h3 span {
  font-size: 3rem;
  color: #fff;
  transform: skewX(20deg);
  text-transform: none;
  font-weight: 400;
}

#feat-resource-block .close {
  position: absolute;
  top: 100px;
  right: 0px;
}

#feat-resource-block .title {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
  margin-top: 40px;
}

#resources-reports-block {
  background: rgba(37, 56, 53, 0.03);
}
/*@ sourceMappingURL=arise.css.map*/