html { background: #254D17; }

body, h1, h2, h3, h4, h5, h6, p, a, ul, ol, li, small {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent; }

html, body {
  margin:0;
  min-height:100vh;  /* Crucial! So that nested elements do not extend past body */
  min-width:100%;
  font-size: 16px;
  list-style: inside;
}

body {
  background: #254D17;
  background-image: url(/images/chaleer6bg.jpg);
  background-repeat: no-repeat;
  background-size: cover; 
  background-attachment: fixed;
  -webkit-text-size-adjust: none; /* stop font resizeing with screen */
  font-family: 'Merriweather', sans-serif;
}

@view-transition {
  navigation: auto;
}
::view-transition-group(root) {
  animation-duration: 1s;
}

/* For Mobile under 768px */

.banner {
  background-image: linear-gradient(to bottom right, #18310E, #087300);
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 10;
}

.banner-content {
  position: absolute;
  height: 64px;
  margin-top: 52px;
  margin-left:130px;
}
@media only screen and (min-device-width: 768px){
.banner {
  height: 70px;
}
.banner-content {
  height: 32px;
  margin-top: 32px;
  margin-left:110px;
}}


.banner-content a {
  font-family: 'proxima-nova', helvetica, sans-serif;
  color: #E4E4E4;
  text-decoration: none;
  font-size: 64px;
  font-weight: 500;
  line-height: 0px;
}

@media only screen and (min-device-width: 768px){
.banner-content a {
  font-size: 42px;
  font-weight: 500;
}}

.title {
  font-size: 4rem;
  letter-spacing: 1.5px;
}
h1 {
  font-size: 3.2rem;
	font-weight: 800;
  margin-top: 0px;
  letter-spacing: 1.5px;
}
h2 {
  font-size: 2.6rem;
	font-weight: 500;
  margin-top: 40px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
h3 {
  font-size: 2.3rem;
	font-weight: 500;
  margin-top: 25px;
  margin-bottom: 10px;
}
@media only screen and (min-device-width: 768px){
.title {
  font-size: 2.4rem;
}
h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 0px;
}
h2 {
  font-size: 1.3rem;
	font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.1rem;
	font-weight: 500;
  margin-top: 15px;
  margin-bottom: 10px;
}}

p {
  margin-bottom: 1.5em; /* Crucial! makes empty line between paras */
}
p, li, table {              /* Contents text size */
  font-size: 2.2rem;
  letter-spacing: 0.6px;
  font-kerning: none;
  line-height: 50px;
  font-weight: 200;
  text-align: left;
}

ul {
  margin-top: 20px;
}
li {
  margin-bottom: 0.5rem;
}
.caption-pages {
  font-size: 2.1rem;
  letter-spacing: .7px;
  text-align: center;
  font-style: italic;
}
.caption img {
  margin-bottom:20px;
}

@media only screen and (min-device-width: 768px){
p {
  margin-bottom: 1em; /* Crucial! makes empty line between paras */
  text-align: justify;
  text-justify: auto;
}
p, ul, li, table {
  font-size: 1rem;
  letter-spacing: .4px;
  line-height: 26px;
  font-weight: 400;
  /font-stretch: expanded;
}
ul {
  margin-top: 10px;
}
.caption-pages {
  font-size: 1rem;
  letter-spacing: .6px;
}}

.toTop {
  display: flex;
  position: fixed;
  bottom: 150px;
  right: 60px;
  width: 100px;
  height: 100px;
  rotate: 90deg;
  justify-content: center;
  align-items: center;
  border: solid 6px #8B8282;
  outline: 8px solid #2A2A2A;
  border-radius: 50%;
  color: #8B8282;
  cursor: pointer;
  font-size: 3rem;
  -webkit-text-stroke: 5px #2A2A2A;
  opacity: 0;
  transition: 0.5s ease-in;
  & div { height: 68px; }
}

.show-totop {
  opacity: 1;
  transition: 0.5s ease-out;
}

@media only screen and (min-device-width: 1200px) {
.toTop {
  width: 60px;
  height: 60px;
  border: solid 2px #8B8282;
  outline: 5px solid #2A2A2A;
  font-size: 1.8rem;
  -webkit-text-stroke: 3px #2A2A2A;
  & div { height: 41px; }
}

.toTop-pages {
  border: solid 2px #E2DEDE;
  padding: 14px 16px 18px 16px;
}
.toTop:hover {
  background: rgba(31,99,7,0.9);
  }
.toTop-pages:hover {
  background: rgba(31,99,7,0.7);
  outline: 3px solid #E2DEDE;
  }}
  
@media only screen and (max-device-width: 1200px) and (orientation: landscape){
.toTop {
  width: 65px;
  height: 65px;
  border: solid 2px #8B8282;
  outline: 5px solid #2A2A2A;
  font-size: 1.8rem;
  -webkit-text-stroke: 3px #2A2A2A;
  & div { height: 41px; }
}}

footer {
  background-image: linear-gradient(to bottom right, #1A400C, #087300);
  position: relative;
  bottom: 0px;
  width: 100%;
  height: 180px;
  padding: 80px 0 35px 0;
  z-index: 10;
  }
footer, footer a {
  text-align: center;
  color: #E4E4E4;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 46px;
  text-decoration: none;
}

@media only screen and (min-device-width: 768px){
footer {
  clear: both;
  height: 50px;
  padding: 20px 0 25px 0;
}
footer, footer a {
  font-size: 1.1em;
  font-weight: 500;
  line-height: 18px;
}}

::selection {
  color: #FFFFFF;
  background: #4C7A1E; /* WebKit/Blink Browsers */
}
::-moz-selection {
  color: #FFFFFF;
  background: #4C7A1E; /* Gecko Browsers */
}

.kbfocus:focus {
  outline: 3px ridge #AFAFAF;
  border-radius: 5px;
  opacity: 1;
}







