@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);
}
.gray {
  color: rgb(60,60,60);
}
.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.5);
}
.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% - 210px);
  height: auto;
  min-height: 220px;
  padding-left: 100px;
  padding-right: 110px;
  padding-top: 100px;
  padding-bottom: 100px;
  top: 0;
  left: 0;
  overflow: hidden;
}
.sectitle, .seccontent {
  position: relative;
  float: left;
  width: auto;
  height: 40px;
  top: 0;
  left: 0;
  text-align: left;
}
.sectitle h4 {
  color: rgb(60,60,60);
}
.sectitle .underlinedeco {
  position: absolute;
  width: 60px;
  height: 3px;
  top: calc(100% + 2px);
  left: calc(50% + 20px);
  background: rgb(23, 188, 146);
}
.seccontent {
  width: 100%;
  height: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}
.seccontent p {
  color: rgb(60,60,60);
}
.secitem {
  position: relative;
  float: left;
  margin-left: 20px;
  margin-right: 20px;
  width: calc((100% / 3) - 40px);
  height: auto;
  top: 0;
  left: 0;
}
/* INTRO SECTION */
#intro {
  background-image: url('../../img/bg/bg3.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}
#intro h2, #intro p {
  position: relative;
  top: 160px;
}
#intro p {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
}
/* ----- */


/* WELCOME */
#plan {
  padding-bottom: 0;
}
#plan .seccontent {
  width: 100%;
  padding-bottom: 100px;
  border-bottom: 1px solid rgb(120,120,120);
}
#plan .about {
  position: relative;
  float: left;
  width: calc(60% - 60px);
  height: auto;
  top: 0;
  left: 0;
  margin-right: 60px;
}
.descbutton {
  position: relative;
  float: left;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  border: 2px solid rgb(23, 188, 146);
  cursor: pointer;
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}
.descbutton p {
  line-height: 40px;
  color: rgb(23, 188, 146);
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}
.descbutton p span {
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}
.descbutton:hover {
  background: rgb(23, 188, 146);
}
.descbutton:hover > p, .descbutton:hover > p span {
  color: white;
}
#plan .pic {
  position: relative;
  float: left;
  width: 40%;
  height: 300px;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.pic.weightloss {
  background-image: url('../../img/weightloss.jpeg');
}
.pic.weightloss.two {
  background-image: url('../../img/weightloss2.jpg');
}
.pic.weightmaintenance {
  background-image: url('../../img/weightmaintenance.jpeg');
}
.pic.weightmaintenance.two {
  background-image: url('../../img/weightmaintenance2.jpg');
}
.pic.weightgain {
  background-image: url('../../img/weightgain.jpeg');
}
.pic.weightgain.two {
  background-image: url('../../img/weightgain2.jpg');
}
#plan .pic .underlinedeco {
  position: absolute;
  width: 100px;
  height: 3px;
  top: calc(100% + 10px);
  left: calc(50% + 40px);
  background: rgb(23, 188, 146);
}
/* ----- */


/* FOR ALL */
#forall {
  background-image: url('../../img/bg/bg1.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;
}
#forall .bigger {
  margin-top: 20px;
  font-family: 'Exo', sans-serif;
}
#forall form {
  position: relative;
  float: left;
  width: 500px;
  height: auto;
  top: 0;
  left: calc(50% - 250px);
  margin-top: 40px;
  margin-bottom: 40px;
}
#forall form select, #forall form input {
  position: relative;
  float: left;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
  border: none;
  border: 2px solid rgb(23, 188, 146);
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgb(23, 188, 146);
  background: rgba(35,35,35,0.75);
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
#forall form select {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: white;
  background: rgba(35,35,35,0.7);
  line-height: 40px;
}
.overview {
  position: relative;
  float: left;
  width: auto;
  height: auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgb(23, 188, 146);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 20px;
}
.overview p {
  font-size: 14px;
  line-height: 18px;
  color: rgb(220,220,220);
}
.overview p.smaller {
  color: rgb(220,220,220);
  font-size: 13px;
  line-height: 22px;
  border-bottom: 1px solid rgb(23, 188, 146);
  margin-bottom: 10px;
}
.overview p.discount {
  color: rgb(23, 188, 146);
  margin-top: 10px;
  font-size: 13px;
  text-transform: uppercase;
}
#forall form input.joinnow {
  font-family: 'Exo', sans-serif;
  font-size: 1.6em;
  font-weight: 900;
  line-height: 44px;
  padding: 0;
  margin: 0;
  color: rgb(23, 188, 146);
  font-style: italic;
  text-transform: uppercase;
  margin-top: 30px;
  cursor: pointer;
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
  background: rgba(0,0,0,0.45);
}
#forall form input.joinnow:hover {
  background: white;
  border-color: white;
}
#forall form input.joinnow:hover > h4 {
  color: rgb(23, 188, 146);
}
/* -------- */


/* TESTIMONIALS */
#testimonials {}
#testimonials .secitem {
  -webkit-box-shadow: 0px 5px 20px -10px rgba(0,0,0,1);
  box-shadow: 0px 5px 20px -10px rgba(0,0,0,1);
}
#testimonials .seccontent p {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
}
.quote, .picture, .name {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}
.quote {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  width: calc(100% - 80px);
  text-align: center;
}
.quote p {
  color: rgb(60,60,60);
}
.openquote, .closequote {
  position: relative;
  float: left;
  width: 100%;
  height: 34px;
  top: 0;
  left: 0;
}
.closequote {
  text-align: right;
  width: calc(100% - 22px);
  padding-right: 22px;
}
.openquote h2, .closequote h2 {
  color: rgb(60,60,60);
}
.picture, .name {
  height: 60px;
  width: 60px;
  padding: 0;
  background: rgb(60,60,60);
}
.picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.name {
  height: 60px;
  width: calc(100% - 100px);
  padding-left: 20px;
  padding-right: 20px;
  background: rgb(23, 188, 146);
}
.name p {
  font-size: 16px;
  line-height: 20px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.centercontainer {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}
.testimonialsbutton {
  position: relative;
  float: left;
  width: auto;
  height: 60px;
  top: 0;
  left: 50%;
  padding-left: 40px;
  padding-right: 40px;
  transform: translateX(-50%);
  margin-top: 80px;
  border: 3px solid rgb(60,60,60);
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}
.testimonialsbutton p {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  line-height: 60px;
  color: rgb(60,60,60);
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}
.testimonialsbutton:hover {
  background: rgb(60,60,60);
}
.testimonialsbutton:hover > p {
  color: white;
}
/* ------- */


/* FOR ALL 2 */
#forall.second {
  background-image: url('../../img/bg/bg12.jpg');
}
.joinnow2 {
  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;
}
.joinnow2:hover {
  background: white;
}
.joinnow2:hover > h4 {
  color: rgb(23, 188, 146);
}
/* --------- */
