@import url('https://fonts.googleapis.com/css?family=Exo:400,900');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600');

/* TEXT */
h1, h2, h3, h4, h5 {
  font-family: 'Exo', sans-serif;
  font-size: 5em;
  font-weight: 900;
  line-height: 100px;
  padding: 0;
  margin: 0;
  color: white;
  font-style: italic;
  text-transform: uppercase;
}
h2 {
  font-size: 4em;
  line-height: 70px;
}
h3 {
  font-size: 2.5em;
  line-height: 70px;
}
h4 {
  font-size: 1.75em;
  line-height: 50px;
}
h5 {
  font-size: 1.5em;
  line-height: 30px;
}
p, a {
  font-family: 'Open Sans', sans-serif;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: white;
  text-decoration: none;
}
p.bigger, a.bigger {
  font-size: 18px;
  line-height: 24px;
}
.underline {
  text-decoration: underline;
}
.llgreen {
  color: rgb(23, 188, 146);
}
.lldarkgreen {
  color: rgb(7, 84, 59);
}
.llmidgreen {
  color: rgb(9, 108, 76);
}

/* GLOBAL */
html, body {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
.overlay.llgreen {
  background: rgba(23, 188, 146, 0.5);
}
.overlay.gray {
  background: rgba(60,60,60, 0.85);
}
.overlay.black {
  background: rgba(0,0,0, 0.85);
}
.overlay.shade {
  background: none;
  background-image:
    radial-gradient(
      rgba(0,0,0,0),
      rgba(0,0,0,1)
    );
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}
section {
  position: relative;
  float: left;
  width: calc(100% - 40px);
  height: auto;
  min-height: 220px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  top: 0;
  left: 0;
  overflow: hidden;
}
.sectitle, .seccontent {
  position: relative;
  float: left;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  text-align: left;
}
.sectitle h4 {
  line-height: 30px;
  color: rgb(60,60,60);
}
.sectitle .underlinedeco {
  position: absolute;
  width: 30px;
  height: 3px;
  top: calc(100% + 2px);
  left: calc(50% + 6px);
  background: rgb(23, 188, 146);
}
.seccontent {
  width: 100%;
  height: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}
.seccontent p {
  color: rgb(60,60,60);
}
/* INTRO SECTION */
#intro {
  height: calc(100vh - 80px);
  background-image: url('../../img/bg/bg10.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}
#intro .pagetitle {
  position: absolute;
  width: calc(100% - 40px);
  height: auto;
  bottom: 20%;
  left: 0;
  padding-left: 20px;
  padding-right: 20px;
}
#intro p {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
}
/* ----- */

/* FAQ */
#faqs {}
#faqs .faqcategory {
  position: relative;
  float: left;
  width: calc(100% - 20px);
  height: auto;
  top: 0;
  left: 0;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 40px;
  padding-top: 40px;
  border-bottom: 1px solid rgb(23, 188, 146);
}
.faqcategory .categoryheader {
  position: relative;
  float: left;
  width: calc(100% - 0px);
  height: 60px;
  top: 0;
  left: 0;
  cursor: pointer;
}
.categoryheader .expand, .categoryheader .cattitle {
  position: relative;
  float: left;
  width: auto;
  height: 100%;
  top: 0;
  left: 0;
}
.categoryheader h5 {
  color: rgb(60,60,60);
  font-size: 20px;
  line-height: 60px;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.faqcategory .categoryheader:hover > .expand h5,
.faqcategory .categoryheader:hover > .cattitle h5 {
  color: rgb(23, 188, 146);
}
.questions {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  display: none;
}
.questionsentry {
  position: relative;
  float: left;
  width: calc(100% - 40px);
  height: auto;
  padding-left: 40px;
  top: 0;
  left: 0;
}
.question, .answer {
  position: relative;
  float: left;
  width: calc(100% - 40px);
  height: auto;
  padding-left: 40px;
}
.question {
  margin-top: 20px;
  height: auto;
}
.question p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: rgb(23, 188, 146);
}
.answer p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  color: rgb(80,80,80);
}
/* ----- */



/* CONTACT */
#contactfaq .seccontent {
  padding-bottom: 100px;
  border-bottom: 1px solid rgb(60,60,60);
}
.contactformcontainer {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  margin-top: 40px;
}
.contactformcontainer input, .contactformcontainer textarea {
  position: relative;
  float: left;
  width: calc(100% - 74px);
  height: 40px;
  top: 0;
  left: 0;
  padding-left: 20px;
  padding-right: 40px;
  margin: 5px;
  border: none;
  border: 2px solid rgb(120,120,120);
  background: none;
}
.contactformcontainer textarea {
  height: 160px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 16px;
}
.contactformcontainer input[placeholder] {
  color: rgb(60,60,60);
}
input:focus, textarea:focus {
  border-color: rgb(23, 188, 146);
}
#submit {
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 16px;
  text-transform: uppercase;
  width: calc(100% - 10px);
  border-color: rgb(23, 188, 146);
  color: rgb(23, 188, 146);
  cursor: pointer;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
#submit:hover {
  background: rgb(23, 188, 146);
  color: white;
  border-color: rgb(23, 188, 146);
}
#submit[disabled] {
  border-color: rgb(180,180,180);
  color: rgb(180,180,180);
}
#submit[disabled]:hover {
  background: white;
  border-color: rgb(180,180,180);
  color: rgb(180,180,180);
}
.formnote {
  position: relative;
  float: left;
  width: calc(100% - 10px);
  height: auto;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 12px;
  line-height: 15px;
  color: rgb(215, 0, 106);
  font-weight: 400;
}
/* --------- */



/* FOR ALL */
#forall {
  background-image: url('../../img/bg/bg20.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 0;
  margin-top: 80px;
}
#forall .getstarted {
  position: relative;
  float: left;
  width: 100%;
  text-align: center;
}
.getstarted h3 {
  line-height: 50px;
}
#forall .bigger {
  margin-top: 20px;
  font-family: 'Exo', sans-serif;
}
.joinnow {
  position: relative;
  float: left;
  width: auto;
  height: auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid white;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 40px;
  cursor: pointer;
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}
.joinnow:hover {
  background: white;
}
.joinnow h4 {
  line-height: 34px;
}
.joinnow:hover > h4 {
  color: rgb(23, 188, 146);
}
/* -------- */



/* CHATBOX */
.chatboxbutton {
  position: fixed;
  left: 0;
  bottom: 100px;
  width: 38px;
  height: 38px;
  border: 2px solid rgb(23, 188, 146);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}
.chatboxbutton p {
  font-size: 10px;
  text-align: center;
  line-height: 54px;
  color: rgb(23, 188, 146);
}
.chatboxbutton:hover {
  background: rgb(23, 188, 146);
  border-color: rgb(23, 188, 146);
}
.chatboxbutton:hover > p {
  color: white;
}
/* ------- */

.removeable {
  display: none;
}
