@charset "UTF-8";
.dark {
  background-color: var(--theme1);
  color: var(--background);
}

section.greeting {
  margin-top: -20px;
  height: 600px;
  background: transparent;
  position: relative;
  padding: 20px;
}
@media (max-width: 900px) {
  section.greeting {
    padding: none;
    background-color: #ffffff;
    background-image: url("/media/hiking_bg.jpg");
    background-repeat: no-repeat;
    background-position: -50px 0;
    background-size: auto 100%;
  }
}
section.greeting .carousel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  filter: brightness(0.5);
  z-index: -1;
}
section.greeting .carousel img {
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 900px) {
  section.greeting .carousel {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  section.greeting .carousel img {
    height: 100%;
    width: auto;
  }
}
section.greeting .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #fff 35%, rgba(0, 0, 0, 0) 75%);
  display: block;
}
@media (max-width: 900px) {
  section.greeting .overlay {
    background: rgba(0, 0, 0, 0.4);
  }
}
section.greeting svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 900px) {
  section.greeting svg {
    display: none;
  }
}
section.greeting h1 {
  position: relative;
  margin-top: 100px;
  max-width: 50%;
  font-size: 72px;
  font-weight: bold;
  margin-left: 50px;
  color: var(--theme1);
  z-index: 2;
  padding: 20px;
}
@media (max-width: 1300px) {
  section.greeting h1 {
    margin-top: 40px;
  }
}
@media (max-width: 900px) {
  section.greeting h1 {
    color: var(--background);
    max-width: 100%;
    text-align: center;
    margin-left: 0px;
    margin-top: 100px;
    font-size: 58px;
    -webkit-text-stroke: 1px var(--theme1);
  }
}
@media (max-width: 360px) {
  section.greeting h1 {
    font-size: 48px;
  }
}
section.greeting h4 {
  max-width: 50%;
  position: relative;
  font-size: 18px;
  font-weight: 200;
  margin-left: 50px;
  color: #787878;
  z-index: 2;
}
@media (max-width: 900px) {
  section.greeting h4 {
    display: none;
  }
}
section.greeting .donate {
  margin-left: 50px;
  width: 250px;
  z-index: 2;
}
@media (max-width: 900px) {
  section.greeting .donate {
    margin-left: calc(50% - 125px);
  }
}

section.schedule {
  min-height: 540px;
  width: 100%;
  background-color: var(--background);
  padding: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-flow: row wrap;
}
@media (max-width: 900px) {
  section.schedule {
    padding-left: 0;
  }
}
section.schedule > div {
  margin-right: 40px;
}
section.schedule .timetable {
  position: relative;
}
section.schedule .timetable::after {
  content: "To inquire about any of the activities above, or if you wish to attend, please contact us via the details below.";
  color: #3d3d3d;
  font-size: 10px;
  padding-left: 10px;
  position: absolute;
  bottom: 10px;
}
@media (max-width: 900px) {
  section.schedule .timetable::after {
    bottom: 0px;
  }
}
section.schedule .posters {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
section.schedule .posters .title {
  padding: 10px;
  font-size: 24px;
}
section.schedule .posters .gallery {
  width: 640px;
  min-height: 450px;
  overflow-x: auto;
  display: flex;
  padding: 10px;
  flex-flow: row;
  align-items: none;
  justify-content: flex-start;
}
section.schedule .posters .gallery img {
  height: 400px;
  margin-right: 10px;
  margin-left: 10px;
  border: 5px solid #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media (max-width: 900px) {
  section.schedule .posters {
    display: none;
  }
}

section.about {
  position: relative;
  min-height: 500px;
  height: auto;
}
section.about {
  padding: 20px;
}
section.about .title {
  position: relative;
  width: 100%;
  height: 100px;
  font-size: 48px;
  font-weight: 800;
  /* text-transform: uppercase; */
  text-align: center;
}
section.about .title::after {
  content: " ";
  height: 5px;
  position: absolute;
  top: calc(1em + 30px);
  left: calc(50% - 125px);
  border-bottom: 2px solid var(--background);
  width: 250px;
}
section.about .flex-container {
  display: flex;
  flex-flow: row wrap;
}
section.about .left, section.about .right {
  position: relative;
  min-height: calc(100% - 100px);
}
section.about .left {
  width: 55%;
  padding: 20px;
  padding-right: 50px;
  border-right: 3px solid var(--background);
}
@media (max-width: 900px) {
  section.about .left {
    width: 100%;
    float: none;
    height: auto;
    border-right: none;
    border-bottom: 3px solid var(--background);
  }
}
section.about .right {
  width: 40%;
}
@media (max-width: 900px) {
  section.about .right {
    width: 100%;
    float: none;
    height: auto;
  }
}
section.about .info {
  margin-bottom: 30px;
}
section.about .info h3 {
  margin-bottom: 10px;
  font-size: 1.5em;
}
@keyframes slide_fill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
section.about .options {
  list-style-type: none;
}
section.about .options li {
  height: 80px;
  user-select: none;
  cursor: pointer;
  position: relative;
}
section.about .options li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  padding-left: 20px;
  display: flex;
  align-items: center;
}
section.about .options li a::after {
  content: "↦";
  font-size: 2em;
  position: absolute;
  right: 50px;
}
section.about .options li:hover {
  background-color: rgba(128, 128, 128, 0.1);
}
section.about .options li:hover .aboutOption_overlay {
  animation: slide_fill 0.6s linear;
  width: 100%;
}
section.about .options li .aboutOption_overlay {
  width: 0px;
  background: rgba(128, 128, 128, 0.1);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

section.aims {
  background-color: var(--background);
  min-height: 400px;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}
section.aims .title {
  position: relative;
  width: 100%;
  min-height: 100px;
  height: auto;
  margin-top: 50px;
  color: var(--theme1);
  font-size: 48px;
  font-weight: 800;
  /* text-transform: uppercase; */
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2666666667);
}
section.aims .title::after {
  content: " ";
  height: 5px;
  position: absolute;
  top: calc(1em + 30px);
  left: calc(50% - 125px);
  border-bottom: 3px solid var(--theme1);
}
section.aims .title::after {
  width: 250px;
}
@media (max-width: 440px) {
  section.aims .title::after {
    top: calc(1em + 90px);
  }
}
section.aims .flex-container {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  padding-left: 0vw;
  justify-content: center;
}
section.aims .aim {
  width: 19vw;
  min-width: 307px;
  height: 600px;
  padding: 40px;
  color: var(--foreground);
  text-align: center;
  position: relative;
}
section.aims .aim.invert {
  background: var(--theme2);
}
section.aims .aim h3 {
  font-weight: 400;
  margin-bottom: 35px;
}
section.aims .aim h3::after {
  content: " ";
  height: 5px;
  position: absolute;
  top: calc(1em + 50px);
  left: calc(50% - 35px);
  border-bottom: 2px solid var(--theme1);
  width: 70px;
}
section.aims .aim p {
  font-weight: 200;
}

section.address {
  min-height: 360px;
  background-color: var(--theme2);
  overflow: hidden;
}
section.address .title {
  position: relative;
  width: 100%;
  height: 100px;
  font-size: 48px;
  font-weight: 800;
  padding-top: 30px;
  /* text-transform: uppercase; */
  text-align: center;
  z-index: 2;
  margin-bottom: 40px;
  color: var(--background);
}
section.address .title::after {
  content: " ";
  height: 5px;
  position: absolute;
  top: calc(1em + 60px);
  left: calc(50% - 125px);
  border-bottom: 2px solid var(--background);
  width: 250px;
}
@media (max-width: 900px) {
  section.address .title::after {
    border-bottom-color: var(--theme1);
  }
}
@media (max-width: 900px) {
  section.address .title {
    color: var(--theme1);
  }
}
section.address .flex-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: left;
  align-items: center;
  min-height: 400px;
  position: relative;
}
section.address .left {
  width: 60%;
  position: absolute;
  top: -800px;
  left: -10%;
  height: 1600px;
  border-right: 2px solid var(--background);
  transform: rotate(15deg);
  overflow: hidden;
  background: var(--theme1);
  z-index: 1;
}
section.address .left img {
  position: absolute;
  top: calc(50% - 100px);
  right: -120px;
  width: 600px;
  height: 400px;
  transform: rotate(-15deg);
}
@media (max-width: 900px) {
  section.address .left {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    height: 300px;
    padding: 0;
    border-right: none;
    border-bottom: 2px solid var(--background);
    transform: none;
    background: transparent;
  }
  section.address .left img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: none;
  }
}
section.address .right {
  width: calc(50% - 100px);
  padding-left: 25px;
  position: relative;
  height: calc(100% - 20px);
  left: calc(50% - 10px);
  top: -50px;
  z-index: 0;
  font-size: 20px;
}
section.address .right .address-string {
  font-weight: bold;
}
@media (max-width: 900px) {
  section.address .right {
    width: 100%;
    top: 0;
    left: 0;
    min-height: 300px;
    padding: 25px;
  }
}