﻿/* -------------------------------- 

Primary style

-------------------------------- */
*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  background-size: 100% auto;
  background-attachment: fixed;
  background-repeat: repeat-y;
  margin: 0;
  color: #fff;
  overflow-x: hidden;
}
/* body::after {
  clear: both;
  content: "";
  display: table;
} */

/*//////////////////////////////////
    HEADER ELEMENTS
/////////////////////////////////*/
/* LOGO */
.siteLogo {
  display: block;
  position: fixed;
  z-index: 31;
  top: 10px;
  left: 16px;
  width: 15vw;
  max-width: 100px;
}
/* HEART ANIMATION */
.humanHeart_Container {
  display: block;
  position: fixed;
  z-index: 31;
  width: 2.3vw;
  max-width: 40px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .humanHeart_Container {
    top: 64px;
    left: 152px;
  }
}

@media screen and (min-width: 541px) and (max-width: 767px) {
  .humanHeart_Container {
    /*top: 60px;
        left: 132px;*/
    top: 54px;
    left: 95px;
  }
}
@media screen and (min-width: 431px) and (max-width: 540px) {
  .humanHeart_Container {
    top: 54px;
    left: 110px;
  }
}
@media screen and (min-width: 390px) and (max-width: 430px) {
  .humanHeart_Container {
    top: 54px;
    left: 100px;
  }
}
@media screen and (min-width: 0) and (max-width: 389px) {
  .humanHeart_Container {
    top: 54px;
    left: 84px;
  }
}

.humanHeart {
  position: relative;
  width: 14px;
  height: 13px;
  background-color: red;
  transform: rotate(-45deg);
  animation: beat 1.2s infinite ease-in-out;
}

.humanHeart::before,
.humanHeart::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 13px;
  background-color: red;
  border-radius: 50%;
}

.humanHeart::before {
  top: -7px;
  left: 0;
}

.humanHeart::after {
  left: 7px;
  top: 0;
}

@keyframes beat {
  0%,
  100% {
    transform: rotate(-45deg) scale(1);
  }

  50% {
    transform: rotate(-45deg) scale(1.2);
  }
}
/*END HEART ANIMATION */

/* COMMAND BAR: DONATE */
.siteCommandBarContainer {
  display: block;
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-repeat: repeat-x;
  padding-top: 6px;
  padding-right: 8px;
  text-align: right;
  border-bottom: 3pt solid #ac944e;
}

.siteCommandBarWrapper {
  display: block;
  width: 100%;
  height: 40px;
  text-align: right;
}
/*END COMMAND BAR */
/*=================================
    END HEADER ELEMENTS
==================================*/

/*//////////////////////////////////
    PAGE ELEMENTS: GLOBAL
/////////////////////////////////*/
.sitePageContentBoundary {
  display: block;
  position: absolute;
  z-index: 0;
  top: 98px;
  width: 100%;
  height: auto;
  min-height: 86.5vh;
}
/* Parent Topic */
.sitePageParentTopic {
  display: block;
  margin-top: 20px;
  color: #fff;
  font-family: Arial;
  font-size: 16px;
  font-weight: 500;
}
/* Page Title */
.sitePageTitleBlock {
  display: block;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 36px;
  font-size: 24px;
  line-height: 30px;
  height: 26px;
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
}
/* Last Updated Footer */
.sitePageLastUpdatedBlock {
  display: block;
  margin: 100px auto 0;
  width: 100%;
  text-align: center;
  font-size: 12px;
}
.sitePageLastUpdatedBlock a {
  color: #fff;
  text-decoration: underline;
}
/*=================================
    END PAGE ELEMENTS: GLOBAL
==================================*/

/*//////////////////////////////////
    about PAGE
/////////////////////////////////*/
/* Content Container */
.aboutContentContainer {
  display: block;
  width: 100%;
  text-align: center;
}
/* Detail Container */
.aboutContent {
  background-color: transparent !important;
  border: none !important;
  box-shadow: unset !important;
  /* font-family:Delius !important;  */
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 500 !important;
}
.itemContentContainer {
  display: block;
  width: 100%;
  background-size: 100% 98%;
  background-repeat: no-repeat;
}
.itemContentWrapper {
  display: block;
  width: 100%;
  padding: 32px 8px 52px 30px;
  color: #000;
  font-size: 18px;
  line-height: 22px;
}
.itemContentWrapper h2 {
  font-weight: bold;
  color: #000 !important;
  /* margin-bottom:2px; */
}
.itemContentText {
  height: 200px;
  padding-right: 4px;
  padding-bottom: 30px;
}

.itemContentQuote {
  list-style-type: none;
  margin-top: -15px;
  margin-left: 10px;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  line-height: 22px;
}
div .aboutScroll {
  overflow-y: scroll;
  /* scrollbar-color: #461e0a #e0c085; */
  scrollbar-color: #461e0a #ca803f;
}
.StdContent {
  height: auto;
  font-size: 20px;
  line-height: 23px;
  font-weight: 400;
}
.TallContent {
  height: auto;
  max-height: 290px;
  overflow-y: scroll;
  padding-right: 4px;
  padding-bottom: 30px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

/*=================================
    ABOUT PAGE TIMELINE VIDEOS
==================================*/
.it-content video {
  display: block;
  width: 98%;
  margin: 0 auto;
}
.it-miniboxHeader {
  max-width: 350px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media screen and (max-width: 390px) {
  .it-miniboxHeader {
    width: 260px;
  }
}
.aboutVideoTitle {
  display: block;
  width: 98%;
  margin: 0 auto 8px;
  color: #fff;
  text-align: center;
}
.aboutVideoText {
  display: block;
  width: 98%;
  padding: 10px 10px 0 0;
  margin: 0 auto;
  height: auto;
  max-height: 160px;
  overflow-y: auto;
  color: #fff;
}
/*=========================================
    SITE CONTENT TAB MENU
=========================================*/
.site-Content-Tab {
  display: block;
  width: 180px;
  padding: 6px 12px;
  border: 1pt solid black;
  border-radius: 8px 8px 0 0;
  background-color: #5cad9d;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: black;
}
.site-Content-TabContentBlock {
  display: table;
  width: 100%;
  margin-bottom: 60px;
  padding: 24px 12px;
  border: 1pt solid #444;
  border-radius: 16px 16px 0 0;
}
/*============================================*/
.site-Content-Tabs {
  overflow: hidden;
  border: none;
  margin-left: 10px;
  /* background-color: #f1f1f1; */
}

/* Style the buttons inside the site-Content-Tabs */
.site-Content-Tabs button {
  display: inline-block;
  border: 1pt solid black;
  border-radius: 8px 8px 0 0;
  outline: none;
  cursor: pointer;
  background-color: #51998b;
  transition: 0.3s;
  text-align: center;
  font-weight: 600;
  color: black;
}
@media screen and (min-width: 412px) {
  .site-Content-Tabs button {
    width: 160px;
    padding: 6px 12px;
    font-size: 20px;
    margin-left: 20px;
  }
}
@media screen and (min-width: 411px) {
  .site-Content-Tabs button {
    width: 130px;
    padding: 6px 10px;
    font-size: 16px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 410px) {
  .site-Content-Tabs button {
    width: 125px;
    padding: 6px 8px;
    font-size: 14px;
    margin-left: 14px;
  }
}
/* Change background color of buttons on hover */
.site-Content-Tabs button:hover {
  background-color: #7ae5d0;
  color: #000;
}

/* Create an active/current tablink class */
.site-Content-Tabs button.active {
  background-color: #7ae5d0;
  color: #000;
}
.tabs-Update {
  display: block;
  width: 98%;
  max-width: 684px;
  margin: 8% auto 0;
}
.tab-Bugs-Report {
  width: 152px !important;
  text-align: right !important;
  padding-right: 16px !important;
  background-size: 24px !important;
  background-position: 16px 2px !important;
  background-repeat: no-repeat;
}
