* {
  box-sizing: border-box;
  background: none;
  border: none;
  color: inherit;
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}


@font-face {
  font-family: HelveLight;
  src: url("../fonts/HelveticaNeueLight.ttf");
}

@font-face {
  font-family: HelveMedium;
  src: url("../fonts/HelveticaNeueMedium.ttf");
}

@font-face {
  font-family: QuicksandReg;
  src: url("../fonts/QuicksandRegular.otf");
}

@font-face {
  font-family: QuicksandBold;
  src: url("../fonts/QuicksandBold.otf");
}

@font-face {
  font-family: ClearSansBold;
  src: url("../fonts/ClearSansBold.ttf");
}

@font-face {
  font-family: ClearSansReg;
  src: url("../fonts/ClearSansRegular.ttf");
}

@font-face {
  font-family: AkrobatBold;
  src: url("../fonts/AkrobatBold.otf");
}

.container {
  width: 1100px;
  margin: auto;
}

.spacer {
  min-height: 100px;
}

.mobile-handle {
  display: none;
}

#navbar {
  font-family: QuicksandBold;
  width: 100%;
  position: fixed;
  z-index: 55;
  color: white;
  transition: all .5s ease;
  top: 0;
}

#navbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 00px;
  align-items: center;
}

#navbar .logo-container {
  width: 140px;
}

#navbar .logo-container img {
  display: block;
  width: 100%;
  filter: brightness(0) invert(1);
}

#navbar .nav-ul {
  display: flex;
  text-transform: uppercase;
  font-size: 14px;
  align-items: center;
}

#navbar .nav-ul > li {
  margin: 0 25px;
  letter-spacing: 0px;
  position: relative;
  transition: all .3s ease;
  padding: 18px 0;
}

#navbar .nav-ul li:hover {
  color: rgba(0, 0, 0, 0.6);
}

#navbar .submenu {
  position: absolute;
  background: #fff;
  color: black;
  padding: 10px;
  margin-top: 10px;
  border-radius: 7px;
  display: none;
  top: 40px;
  left: -20px;
  box-shadow: 0px 2px 1px 1px rgba(0, 0, 0, 0.2);
}

#navbar .submenu > li {
  width: 200px;
  padding: 10px 0 10px 10px;
  justify-content: center;
  color: #555;
}

#navbar .submenu > li > a {
  display: flex;
  align-items: center;
}

#navbar .submenu > li > a img {
  max-width: 50px;
  display: block;
  margin-right: 10px;
}

#navbar .submenu > li:hover {
  color: #000;
}

#navbar .has-submenu:hover > .submenu {
  display: block;
}

#navbar .nav-function {
  margin-left: 25px;
}

#navbar .nav-function .function-button {
  border: 1px solid white;
  padding: 10px 15px;
  border-radius: 80px;
  transition: all .3s ease;
}

#navbar .nav-function .function-button:hover {
  border: 1px solid rgba(0, 0, 0, 0.6);
  color: rgba(0, 0, 0, 0.6);
}

#navbar.white {
  background: white;
  color: black;
  border-bottom: 1px solid #eee;
  box-shadow: 0px 2px 20px 3px rgba(0, 0, 0, 0.24);
}

#navbar.white > li:hover {
  color: #74cfc1;
}

#navbar.white .logo-container img {
  filter: brightness(1) invert(0);
}

#navbar.white .function-button {
  border: 1px solid black;
  padding: 10px 15px;
}

#navbar.entry {
  top: -81px;
}

ul.slick-dots {
  display: flex;
  justify-content: center;
  width: 100%;
}

ul.slick-dots li.slick-active {
  background: black;
}

ul.slick-dots li {
  width: 8px;
  cursor: pointer;
  height: 8px;
  background: #eee;
  border-radius: 50%;
  margin: 10px 10px;
}

ul.slick-dots button {
  display: none;
}

#indexSlider {
  transition: all .3s ease;
}

#indexSlider .container {
  position: relative;
  height: 100%;
}

#indexSlider .slick-dots {
  position: absolute;
  bottom: 50px;
}

#indexSlider .slick-dots li {
  opacity: 0.6;
}

#indexSlider img {
  max-width: 100%;
  display: block;
  width: 100%;
}

#indexSlider .title {
  font-family: ClearSansBold;
  line-height: 1.2;
  padding-bottom: 10px;
  text-transform: uppercase;
}

#indexSlider .slide-items {
  position: relative;
  height: 35vw;
  background: #5cc9b9;
}

#indexSlider .slide-items img {
  opacity: 0;
  transform: scale(0.8);
  transition: all 1.5s ease .3s;
}

#indexSlider .slide-items .text-container {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all .5s ease .1s;
}

#indexSlider .slide-items.slick-active img {
  opacity: 1;
  transform: scale(1);
}

#indexSlider .slide-items.slick-active .text-container {
  transform: translateY(0px);
  opacity: 1;
}

#indexSlider #slide-1 .text-container {
  color: white;
  position: absolute;
  top: 30%;
  left: 0%;
  width: 500px;
}

#indexSlider #slide-1 .text-container .title {
  padding-right: 20px;
  font-size: 49px;
}

#indexSlider #slide-1 img {
  position: absolute;
  bottom: -20vw;
  left: 50%;
  transform: translateX(-50%);
}

#indexSlider #slide-2 {
  background: #39addd;
}

#indexSlider #slide-2 .text-container {
  color: white;
  position: absolute;
  top: 30%;
  left: 0%;
  width: 500px;
}

#indexSlider #slide-2 .text-container .title {
  padding-right: 20px;
  font-size: 49px;
}

#indexSlider #slide-2 img {
  position: absolute;
  bottom: -20vw;
  left: 50%;
  transform: translateX(-50%);
}

#indexSlider #slide-3 {
  background: #884fb4;
}

#indexSlider #slide-3 .text-container {
  color: white;
  position: absolute;
  top: 30%;
  left: 0%;
  width: 500px;
}

#indexSlider #slide-3 .text-container .title {
  padding-right: 20px;
  font-size: 49px;
}

#indexSlider #slide-3 img {
  position: absolute;
  bottom: -20vw;
  left: 50%;
  transform: translateX(-50%);
}

#indexSlider.entry .slide-items {
  position: relative;
  height: 45vw;
  background: #5cc9b9;
}

#indexSlider.entry .slide-items img {
  opacity: 0;
  transform: scale(0.8);
  transition: all 1.5s ease .3s;
}

#indexSlider.entry .slide-items .text-container {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all .5s ease .1s;
}

.gradient-title {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#87d7c8+1,4abdd9+100 */
  background: #87d7c8;
  /* Old browsers */
  background: -moz-linear-gradient(top, #87d7c8 1%, #4abdd9 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #87d7c8 1%, #4abdd9 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #87d7c8 1%, #4abdd9 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#87d7c8', endColorstr='#4abdd9',GradientType=0 );
  /* IE6-9 */
  font-size: 30px;
  line-height: 40px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 89%;
  margin: 0 auto 20px;
  text-align: center;
  font-family: ClearSansBold;
}

.subcaption {
  text-align: center;
  opacity: 0.85;
  font-size: 16px;
  font-family: ClearSansReg;
}

.section-title {
  text-align: center;
  opacity: 0.9;
  font-size: 27px;
  font-family: ClearSansReg;
  transition: all 1.3s ease;
}

#indexSection-1 {
  font-family: ClearSansBold;
  text-align: center;
  padding: 20px 0;
  margin: 20px 0;
}

#indexSection-1 .gradient-title {
  position: relative;
  top: 0px;
  opacity: 1;
  transition: all .5s ease;
}

#indexSection-1 .subcaption {
  position: relative;
  top: 0px;
  opacity: 1;
  transition: all .5s ease .2s;
}

#indexSection-1 .flex {
  display: flex;
}

#indexSection-1 .flex .flex-module {
  width: 25%;
  padding: 50px 20px 0;
}

#indexSection-1 .flex .caption {
  padding: 10px 0;
  text-transform: uppercase;
}

#indexSection-1 .flex .cap-desc {
  font-family: ClearSansBold;
  font-size: 12px;
  opacity: 0.8;
}

#indexSection-1.entry .gradient-title {
  position: relative;
  top: 50px;
  opacity: 0;
  transition: all .5s ease;
}

#indexSection-1.entry .subcaption {
  position: relative;
  top: 50px;
  transition: all .5s ease .2s;
  opacity: 0;
}

#indexSection-1a {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#5ecbb5+0,4abed8+100 */
  background: #5ecbb5;
  /* Old browsers */
  background: -moz-linear-gradient(top, #5ecbb5 0%, #4abed8 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #5ecbb5 0%, #4abed8 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #5ecbb5 0%, #4abed8 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5ecbb5', endColorstr='#4abed8',GradientType=0 );
  /* IE6-9 */
  color: white;
  padding: 60px 0;
}

#indexSection-1a .flex {
  display: flex;
  margin: 40px 0;
}

#indexSection-1a .flex img {
  display: block;
  margin: auto;
}

#indexSection-1a .flex .flex-module {
  position: relative;
  width: 25%;
  background: white;
  padding: 25px 0;
  text-align: center;
  margin: 0px 2px;
  color: black;
}

#indexSection-1a .flex .flex-module .float-desc {
  font-family: ClearSansReg;
  font-size: 13px;
  padding: 20px;
  color: white;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+2,000000+100&1+0,1+25,0.7+100 */
  background: -moz-linear-gradient(top, black 0%, black 2%, black 25%, rgba(0, 0, 0, 0.7) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, black 0%, black 2%, black 25%, rgba(0, 0, 0, 0.7) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, black 0%, black 2%, black 25%, rgba(0, 0, 0, 0.7) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#b3000000',GradientType=0 );
  /* IE6-9 */
  position: absolute;
  top: 100%;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: all .5s ease;
}

#indexSection-1a .flex .flex-module:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: white;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotateZ(45deg);
  transition: all .3s ease;
}

#indexSection-1a .flex .flex-module:hover .float-desc {
  opacity: 1;
  max-height: 400px;
}

#indexSection-1a .flex .flex-module:hover:after {
  background: black;
}

#indexSection-1a .flex .subtitle {
  font-family: QuicksandReg;
  padding: 20px 0 0;
  opacity: 0.7;
}

.title {
  font-size: 35px;
  font-family: AkrobatBold;
  margin: 10px 0;
}

#indexProductHighlight {
  padding: 40px 0;
}

#indexProductHighlight .product-flex {
  width: 70%;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
}

#indexProductHighlight .product-flex .product-module {
  width: 20%;
  text-align: center;
  transition: all .5s ease;
  left: 0;
  opacity: 1;
  position: relative;
}

#indexProductHighlight .product-flex .product-module .image-box {
  width: 100%;
}

#indexProductHighlight .product-flex .product-module .image-box img {
  width: 50%;
  margin: auto;
}

#indexProductHighlight .product-flex .product-module .subtitle {
  font-family: ClearSansReg;
  font-size: 15px;
  opacity: 0.8;
  height: 40px;
}

#indexProductHighlight .product-flex .product-module .button {
  font-family: ClearSansReg;
  color: white;
  margin-top: 20px;
}

#indexProductHighlight .product-flex .product-module .button a {
  display: block;
  border: 1px solid #4993c4;
  background: #4993c4;
  padding: 5px 10px 9px;
  border-radius: 30px;
  font-size: 15px;
  width: 80%;
  margin: auto;
  transition: all .3s ease;
}

#indexProductHighlight .product-flex .product-module .button:hover a {
  color: #4993c4;
  background: white;
}

#indexProductHighlight.entry .product-module {
  left: 100px;
  opacity: 0;
}

#indexSection-2 {
  padding: 40px 0;
}

#indexSection-2 .gradient-title {
  opacity: 1;
  transition: all .5s ease;
  position: relative;
  top: 0;
}

#indexSection-2 .flex {
  justify-content: space-between;
  padding: 40px 0;
  align-items: center;
}

#indexSection-2 .flex .flex-module {
  width: 200px;
  transition: all .3s ease;
  opacity: 1;
  left: 0;
  position: relative;
  height: 100px;
  outline: none;
  margin: 0 10px;
}

#indexSection-2 .flex .flex-module img {
  width: 100px;
  display: block;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: grayscale(1);
  transition: all .3s ease;
}

#indexSection-2 .flex .flex-module:hover img {
  filter: grayscale(0);
}

#indexSection-2.entry .gradient-title {
  opacity: 0;
  top: 50px;
}

#indexSection-2.entry .flex-module {
  left: 100px;
  opacity: 0;
}

#indexSection-3 {
  padding: 40px 0;
  background: #f5f5f5;
}

#indexSection-3 .w30 {
  width: 150px;
  margin: auto;
}

#indexSection-3 .testimonial-slide {
  padding: 40px 0;
  text-align: center;
}

#indexSection-3 .slide-module {
  width: 320px;
  display: inline-block;
  text-align: center;
  font-family: QuicksandReg;
  margin: 0 30px;
  outline: none;
}

#indexSection-3 .slide-module .avatar-box {
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  transition: all .3s ease;
}

#indexSection-3 .slide-module .avatar-box img {
  width: 100%;
  display: block;
}

#indexSection-3 .slide-module .name {
  font-family: QuicksandBold;
  opacity: 0.8;
  margin: 20px 0 5px;
  text-transform: uppercase;
}

#indexSection-3 .slide-module .subtitle {
  border-bottom: 1px solid #aaa;
  margin: 0 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 14px;
}

#indexSection-3 .slide-module .review-text {
  font-style: italic;
  opacity: 0.7;
  line-height: 20px;
  font-size: 14px;
}

#indexSection-3 .slide-module .review-text:before {
  content: "\201C";
}

#indexSection-3 .slide-module .review-text:after {
  content: "\201D";
}

#indexSection-3 .slide-module:hover .avatar-box {
  border: 3px solid #74CFC1;
}

#indexDemo {
  padding: 100px 0 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#5cc9b9+0,ffffff+58 */
  background: #5cc9b9;
  /* Old browsers */
  background: -moz-linear-gradient(top, #5cc9b9 0%, white 58%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #5cc9b9 0%, white 58%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #5cc9b9 0%, white 58%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5cc9b9', endColorstr='#ffffff',GradientType=0 );
  /* IE6-9 */
}

#indexDemo .centered-preview {
  display: block;
  margin: auto;
  margin-bottom: 100px;
}

#indexDemo .flex {
  font-family: ClearSansReg;
  display: flex;
  justify-content: space-evenly;
  padding: 40px 0;
  width: 55%;
  margin: auto;
}

#indexDemo .flex img {
  vertical-align: middle;
  margin-right: -5px;
  transform: scale(0.7);
}

.slide-button {
  padding: 9px 35px;
  border-radius: 30px;
  font-family: ClearSansReg;
  border: 1px solid white;
  margin-top: 40px;
  display: block;
  width: 200px;
  text-align: center;
  outline: none;
}

#contactUs {
  background: #5cc9b9;
  text-align: center;
  font-family: ClearSansReg;
  color: white;
  padding: 45px 0;
  margin-top: 40px;
  font-size: 30px;
}

#contactUs .title {
  font-family: ClearSansReg;
  font-size: 30px;
}

#contactUs .flex {
  font-family: ClearSansReg;
  display: flex;
  justify-content: space-evenly;
  padding: 20px 0 0;
  width: 45%;
  margin: auto;
  font-size: 14px;
}

#contactUs .flex img {
  vertical-align: middle;
  margin-right: 10px;
}

#moduleBelt {
  background: #333;
  padding: 80px 0 130px;
  background-image: url("../img/dummy/dummy-7.png");
  color: white;
}

#moduleBelt .section-title {
  padding: 0px 0 30px;
}

#moduleBelt .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#moduleBelt .flex-module {
  width: 50%;
  position: relative;
  left: 0;
  border-radius: 5px;
  display: flex;
  transition: all 1.3s ease;
  margin: 20px 0;
}

#moduleBelt .flex-module .img-box {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 5px;
  position: relative;
}

#moduleBelt .flex-module img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  transition: all .3s ease;
}

#moduleBelt .flex-module .desc {
  color: white;
  font-family: ClearSansReg;
  transition: all .3s ease;
  padding-left: 10px;
  width: 70%;
  padding-left: 20px;
}

#moduleBelt .flex-module .desc .desc-paragraph {
  font-size: 14px;
}

#moduleBelt.entry .flex-module {
  left: 50px;
  opacity: 0;
}

#whySysad {
  padding: 40px 0;
  font-family: ClearSansReg;
}

#whySysad .flex-module {
  display: flex;
  align-items: center;
  padding: 30px 0;
}

#whySysad .flex-module .w50 {
  width: 50%;
  padding: 0 20px;
}

#whySysad .flex-module .w50 img {
  display: block;
  margin: auto;
}

#whySysad .flex-module.rev {
  flex-direction: row-reverse;
}

#whySysad * {
  transition: all .3s ease;
  top: 0;
  opacity: 1;
  position: relative;
}

#whySysad.entry * {
  opacity: 0;
  position: relative;
  top: 20px;
}

#featureBelt {
  padding: 50px;
  display: none;
  font-family: ClearSansReg;
}

#featureBelt .section-title {
  padding-bottom: 30px;
}

#featureBelt .flex {
  display: flex;
  justify-content: space-between;
  margin: 0px 0;
}

#featureBelt .flex .flex-module {
  width: 20%;
  text-align: center;
  padding: 0 30px;
  font-size: 14px;
  cursor: pointer;
  line-height: 18px;
  position: relative;
  top: 0;
  left: 0;
  opacity: 1;
}

#featureBelt .flex .flex-module img {
  display: block;
  margin: 20px auto;
  filter: grayscale(1);
  transition: all .3s ease;
}

#featureBelt .flex .flex-module:hover img {
  filter: grayscale(0);
}

#featureBelt.entry .flex-module {
  left: -30px;
  opacity: 0;
}

#conceptBelt {
  display: flex;
  font-family: ClearSansReg;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 40px;
}

#conceptBelt .flex-module {
  left: 0;
  height: 200px;
  width: 33.4%;
  position: relative;
  transition: all .3s ease;
}

#conceptBelt .flex-center {
  width: 23vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  text-align: left;
  color: white;
  font-size: 40px;
  align-items: center;
}

#conceptBelt .flex-center .subcaption {
  text-align: left;
  font-size: 15px;
}

#conceptBelt .flex-center .title {
  margin-top: 0;
}

#conceptBelt .flex-center .group {
  padding-left: 20px;
}

#conceptBelt .flex-center img {
  transform: scale(0.8);
}

#conceptBelt #fm1 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b15172+0,ee6c6f+100 */
  background: #b15172;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #b15172 0%, #ee6c6f 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #b15172 0%, #ee6c6f 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #b15172 0%, #ee6c6f 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b15172', endColorstr='#ee6c6f',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

#conceptBelt #fm2 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#852a7c+1,de3190+100 */
  background: #852a7c;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #852a7c 1%, #de3190 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #852a7c 1%, #de3190 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #852a7c 1%, #de3190 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#852a7c', endColorstr='#de3190',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

#conceptBelt #fm3 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#5883b9+1,2b8e9f+100 */
  background: #5883b9;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #5883b9 1%, #2b8e9f 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #5883b9 1%, #2b8e9f 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #5883b9 1%, #2b8e9f 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5883b9', endColorstr='#2b8e9f',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

#conceptBelt #fm4 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#46b98a+53,d6db4c+100 */
  background: #46b98a;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #46b98a 53%, #d6db4c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #46b98a 53%, #d6db4c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #46b98a 53%, #d6db4c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#46b98a', endColorstr='#d6db4c',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

#conceptBelt #fm5 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#46b98a+53,d6db4c+100 */
  background: #e2de4c;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #e2de4c 53%, #69a13b 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #e2de4c 53%, #69a13b 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #e2de4c 53%, #69a13b 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2de4c', endColorstr='#69a13b',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

#conceptBelt .flex-module:hover {
  z-index: 5;
}

#conceptBelt.entry .flex-module {
  top: 50px;
  opacity: 0;
}

.entry .section-title {
  opacity: 0;
}

.w70 {
  width: 70%;
}

.w60 {
  width: 60%;
}

.w50 {
  width: 50%;
}

.w40 {
  width: 40%;
}

.w30 {
  width: 30%;
}

#mainBelt {
  padding-top: 150px;
  font-family: QuicksandReg;
}

#mainBelt .module-icon {
  background: white;
  height: 65px;
  width: 65px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  borra: 3px;
  border-radius: 3px;
  margin-right: 10px;
}

#mainBelt .container {
  display: flex;
  align-items: center;
}

#mainBelt .container img {
  max-height: 100%;
}

#mainBelt .top {
  font-family: AkrobatBold;
  display: flex;
  align-items: center;
  font-size: 40px;
  color: rgba(0, 0, 0, 0.6);
  transition: all .5s ease .1s;
  margin-bottom: 20px;
}

#mainBelt .top img {
  display: block;
  transform: scale(0.7);
}

#mainBelt .top .shadow-img {
  transform: scale(1);
  width: 80px;
  margin-right: 20px;
  filter: drop-shadow(-3px 3px 3px rgba(0, 0, 0, 0.1));
}

#mainBelt .top .caption {
  border-left: 1px solid #333;
  padding-left: 15px;
  margin-left: 15px;
  font-size: 19px;
  height: 40px;
  line-height: 40px;
}

#mainBelt .middle {
  font-size: 32px;
  padding: 40px 0;
  font-family: QuicksandReg;
  color: rgba(0, 0, 0, 0.8);
  transition: all .5s ease .2s;
}

#mainBelt .middle .highlight {
  font-family: QuicksandBold;
  color: #9bc15f;
}

#mainBelt .bottom {
  font-family: QuicksandReg;
  margin-bottom: 100px;
  transition: all .5s ease .3s;
  line-height: 1.7;
}

#mainBelt .w40 img {
  transition: all .8s ease;
}

#mainBelt .top, #mainBelt .middle, #mainBelt .bottom {
  top: 0;
  position: relative;
}

#mainBelt .white {
  color: white !important;
}

#mainBelt .white .caption {
  border-left: 1px solid white;
}

#mainBelt.entry .top, #mainBelt.entry .middle, #mainBelt.entry .bottom {
  top: 50px;
  opacity: 0;
}

#mainBelt.entry .w40 img {
  opacity: 0;
  transform: translateX(50px);
}

#mainBelt.sysadmodule {
  padding-top: 130px;
}

#mainBelt.sysadmodule .bottom {
  margin-bottom: 46px;
}

#clientBanner {
  padding-top: 100px;
  min-height: 50vh;
  background: #39addd;
}

#clientSection-1 {
  font-family: ClearSansReg;
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}

#clientSection-1 img {
  display: block;
}

#clientSection-1 .paragraph {
  padding-right: 50px;
}

#clientSection-1 .container {
  display: flex;
  align-items: center;
}

#clientSection-1 * {
  transition: all .5s ease;
  top: 0;
  opacity: 1;
  position: relative;
}

#clientSection-1.entry * {
  opacity: 0;
  top: 50px;
}

.p-title {
  font-family: ClearSansBold;
  font-size: 30px;
  opacity: 0.8;
  padding-bottom: 30px;
}

.paragraph {
  font-family: ClearSansReg;
  font-size: 15px;
}

#supportBanner {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4ba88e+0,39addd+100 */
  background: #4ba88e;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #4ba88e 0%, #39addd 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #4ba88e 0%, #39addd 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #4ba88e 0%, #39addd 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4ba88e', endColorstr='#39addd',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  min-height: 400px;
  padding-top: 150px;
  color: white;
}

#supportBanner * {
  opacity: 0;
  transform: translateY(50px);
  transition: all .3s ease;
}

#supportBanner .group {
  width: 60%;
  margin: auto;
}

#supportBanner .group .section-title {
  padding-bottom: 10px;
  position: relative;
  top: 0;
}

#supportBanner .group .subcaption {
  font-size: 15px;
}

#supportBanner .flex {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
}

#supportBanner .flex .flex-module {
  background: white;
  color: black;
  font-family: ClearSansReg;
  width: 23%;
  padding: 20px 15px;
  border-radius: 10px;
  transition: all .3s ease;
  position: relative;
  left: 0;
  top: 0;
}

#supportBanner .flex .flex-module .image-box {
  width: 100%;
  margin: auto;
  padding: 10px 40px 0;
  min-height: 140px;
}

#supportBanner .flex .flex-module .image-box img {
  display: block;
  margin: auto;
  transform: scale(0.9);
}

#supportBanner .dropdown-parent {
  display: none;
}

#supportBanner .request-button {
  width: 100% !important;
  padding: 10px !important;
  transition: all .8s ease !important;
}

#supportBanner.active * {
  opacity: 1;
  transform: translateY(0);
}

.border-button {
  border: 1px solid white;
  padding: 10px;
  font-family: ClearSansReg;
  display: block;
  width: 180px;
  text-align: center;
  margin: 30px auto;
  border-radius: 5px;
}

#supportBanner.entry .section-title {
  top: 5px;
}

#supportBanner.entry .flex-module {
  opacity: 0;
  left: 50px;
}

.dropdown-parent {
  padding: 10px 0 0;
  max-height: 50px;
  overflow: hidden;
  transition: all .5s ease;
  font-family: ClearSansReg;
}

.dropdown-parent ul {
  padding-left: 10px;
  opacity: 0.9;
}

.dropdown-parent .dropdown-handle {
  font-family: ClearSansBold;
  font-size: 15px;
  border-bottom: 1px solid #aaa;
  padding: 7px 0px;
  cursor: pointer;
  position: relative;
}

.dropdown-parent .dropdown-handle:after {
  content: "";
  height: 6px;
  width: 6px;
  border-right: 1px solid black;
  border-top: 1px solid black;
  display: block;
  position: absolute;
  right: 10px;
  transform: rotateZ(135deg);
  top: 14px;
  transition: all .3s ease;
}

.dropdown-parent .dropdown-list {
  padding: 3px 0;
  font-size: 13px;
}

.dropdown-parent .dropdown-list li {
  padding: 7px 0;
}

.dropdown-parent.active {
  max-height: 200px;
}

.dropdown-parent.active .dropdown-handle:after {
  top: 19px;
  transform: rotateZ(-45deg);
}

#aboutBanner {
  padding: 130px 0 80px;
  text-align: center;
}

#aboutBanner .title {
  text-transform: uppercase;
}

#aboutBanner .paragraph {
  width: 70%;
  margin: 40px auto;
  line-height: 1.5;
}

#aboutBanner * {
  position: relative;
  top: 0px;
  opacity: 1;
  transition: all .3s ease;
}

#aboutBanner.entry * {
  top: 20px;
  opacity: 0;
}

#aboutSection-1 {
  padding: 50px 0;
}

#aboutSection-1 .container {
  display: flex;
  align-items: center;
}

#aboutSection-1 .w60 {
  padding-left: 40px;
}

#aboutSection-1 img {
  transition: all .5s ease 0s;
  top: 0;
  position: relative;
}

#aboutSection-1 .paragraph {
  transition: all .5s ease .3s;
  top: 0;
  position: relative;
}

#aboutSection-1.entry .paragraph, #aboutSection-1.entry img {
  opacity: 0;
  top: 50px;
}

#aboutSection-2 {
  padding: 50px 0 70px;
  text-align: center;
  background-image: url("../img/dummy/dummy-12.png");
  color: white;
}

#aboutSection-2 .section-title {
  padding-bottom: 20px;
}

#aboutSection-2 .paragraph {
  width: 80%;
  margin: auto;
}

#aboutSection-3.hide {
  display: none;
}

#aboutSection-3 {
  padding: 50px 0 70px;
  text-align: center;
}

#aboutSection-3 .section-title {
  padding-bottom: 20px;
  color: #39addd;
}

#aboutSection-3 .paragraph {
  width: 80%;
  margin: auto;
}

#aboutSection-3 .flex {
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}

#aboutSection-4 {
  text-align: center;
  padding: 50px 0;
  background: #e5e5e5;
}

#aboutSection-4 .section-title {
  padding: 30px 0 10px;
}

#aboutSection-4 * {
  position: relative;
  top: 0px;
  opacity: 1;
  transition: all .3s ease;
}

#aboutSection-4.entry * {
  position: relative;
  top: 30px;
  opacity: 0;
}

#aboutSection-5 {
  padding: 40px 0;
}

#aboutSection-5 .mission-module {
  display: flex;
  font-family: ClearSansReg;
  align-items: center;
  width: 530px;
  margin: 20px auto;
}

#aboutSection-5 .img {
  width: 80px;
  padding: 10px;
}

#aboutSection-5 .img img {
  width: 100%;
  display: block;
}

#aboutSection-5 .text {
  width: 450px;
  padding-left: 30px;
}

#aboutSection-5 * {
  position: relative;
  top: 0px;
  opacity: 1;
  transition: all .3s ease;
}

#aboutSection-5.entry * {
  position: relative;
  top: 30px;
  opacity: 0;
}

#footer {
  background: #323232;
  font-family: ClearSansReg;
}

#footer .footer-copyright {
  border-top: 1px solid #444;
  padding: 15px 0;
  font-size: 13px;
}

#footer .footer-copyright .footer-flex {
  padding: 0;
}

#footer .footer-copyright .footer-flex li {
  margin-bottom: 0;
  text-align: center;
}

#footer .footer-copyright .footer-flex li br {
  display: none;
}

#footer .footer-flex {
  display: flex;
  text-align: left;
  color: white;
  padding: 40px 0;
  width: 70%;
  margin: auto;
  justify-content: space-between;
}

#footer .footer-flex .title {
  color: #59b59e;
  padding-bottom: 10px;
  text-transform: uppercase;
  margin: 0;
  font-size: 16px;
}

#footer .footer-flex ul li {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 10px;
}

#helpFeature * {
  transform: translateX(50px);
  opacity: 0;
  transition: all .5s ease;
}

#helpFeature .container {
  display: flex;
  justify-content: space-between;
}

#helpFeature .title {
  font-size: 22px;
  opacity: 0.8;
  padding: 10px 0 0;
}

#helpFeature .subcaption {
  font-size: 14px;
  padding: 10px 15px;
}

#helpFeature .img-box {
  height: 100px;
  position: relative;
}

#helpFeature .img-box img {
  display: block;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#helpFeature .flex-module {
  width: 30%;
  text-align: center;
}

#helpFeature.active * {
  opacity: 1;
  transform: translate(0);
}

#contactSection {
  min-height: 80vh;
  background-image: url("../img/dummy/contact-dummy.png");
  background-size: cover;
  padding: 20vh 0 10vh;
  color: white;
  font-family: ClearSansReg;
}

#contactSection .subcaption {
  width: 60%;
  margin: auto;
}

#contactSection .contact-form {
  background: white;
  color: black;
  margin: 30px auto;
  border-radius: 10px;
  padding: 30px 40px;
  text-align: left;
  width: 60%;
  position: relative;
  transition: all .5s ease;
  top: 0;
}

#contactSection .contact-form .subcaption {
  text-align: center;
  width: 100%;
}

#contactSection .contact-form .section-title {
  text-align: center;
}

#contactSection .contact-form .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#contactSection .contact-form form {
  padding: 20px 0;
}

#contactSection .section-title {
  transition: all .5s ease .3s;
  position: relative;
  top: 0px;
}

#contactSection .subcaption {
  transition: all .5s ease .1s;
  position: relative;
  top: 0px;
}

#contactSection .gradient-button, #contactSection #supportBanner .request-button, #supportBanner #contactSection .request-button {
  top: 0px;
  position: relative;
  opacity: 1;
  transition: all .5s ease 2s;
  width: 80%;
  padding: 10px;
}

#contactSection .form-input, #contactSection .divgr {
  top: 0px;
  position: relative;
  opacity: 1;
  transition: all .5s ease .2s;
}

#contactSection.entry .section-title, #contactSection.entry .subcaption {
  top: 50px;
  opacity: 0;
}

#contactSection.entry .contact-form {
  top: 100px;
  opacity: 0;
}

#contactSection.entry .gradient-button, #contactSection.entry #supportBanner .request-button, #supportBanner #contactSection.entry .request-button, #contactSection.entry .form-input, #contactSection.entry .divgr {
  opacity: 0;
  top: 30px;
}

textarea {
  font-family: inherit;
  font-size: inherit;
}

.form-input {
  padding: 10px 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  outline: none;
  font-family: ClearSansReg;
  font-size: 14px;
}

.border-input {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 15px;
}

.half-input {
  width: 48%;
}

.full-input {
  width: 100%;
}

.gradient-button, #supportBanner .request-button {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7bd1f2+1,79cab5+100 */
  background: #7bd1f2;
  /* Old browsers */
  background: -moz-linear-gradient(left, #7bd1f2 1%, #79cab5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #7bd1f2 1%, #79cab5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #7bd1f2 1%, #79cab5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7bd1f2', endColorstr='#79cab5',GradientType=1 );
  /* IE6-9 */
  color: white;
  padding: 15px 10px;
  text-align: center;
  width: 100%;
  border-radius: 30px;
  display: block;
  width: 60%;
  margin: 20px auto 0;
  cursor: pointer;
  outline: none;
  letter-spacing: 1px;
  font-family: ClearSansBold;
  transition: all 1.3s ease;
}

.product-page {
  color: white;
  font-family: ClearSansReg;
  background-size: cover;
}

.product-page * {
  transform: translateY(50px);
  transition: all .5s ease;
  opacity: 0;
}

.product-page .container {
  display: flex;
  min-height: 100vh;
  padding: 15vh 0;
  align-items: center;
  justify-content: space-between;
}

.product-page .left {
  width: 65%;
}

.product-page .left .top {
  display: flex;
  align-items: center;
}

.product-page .left .top img {
  max-width: 80px;
}

.product-page .left .top .product-name {
  font-family: AkrobatBold;
  font-size: 40px;
  padding: 0 20px;
  border-right: 1px solid white;
  margin-right: 20px;
}

.product-page .left .top .product-caption {
  font-size: 15px;
}

.product-page .left .middle {
  padding: 50px 0;
  font-size: 35px;
  font-family: ClearSansBold;
  line-height: 1.3;
}

.product-page .left .bottom {
  padding-right: 27%;
  font-size: 18px;
}

.product-page .right {
  width: 30%;
  padding: 20px;
  background: white;
  border-radius: 10px;
  color: black;
}

.product-page .right .form-title {
  font-size: 22px;
  line-height: 1.3;
  color: #333;
}

.product-page .right .form-title u {
  text-decoration: underline;
  font-family: ClearSansBold;
}

.product-page .right .form-group {
  padding-top: 35px;
  position: relative;
  font-size: 16px;
}

.product-page .right .form-group .full-input {
  outline: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
  font-size: 16px;
  padding-left: 3px;
}

.product-page .right .form-group .place-holder {
  position: absolute;
  bottom: 6px;
  transition: all .3s ease;
  opacity: 0.5;
  font-size: 14px;
  transition-delay: 0s !important;
}

.product-page .right .form-group .place-holder.active {
  font-size: 10px;
  bottom: 28px;
}

.product-page .right .captcha-dummy {
  width: 95%;
  padding: 35px;
  background: #eee;
  margin: 20px auto;
  border: 1px solid #aaa;
}

.product-page .right .gradient-button, .product-page .right #supportBanner .request-button, #supportBanner .product-page .right .request-button {
  width: 100%;
  padding: 10px 0;
  font-family: ClearSansReg;
}

.coming-soon-extra {
  font-size: 34px;
  text-align: right;
  text-decoration: italic;
  margin-right: -27%;
  font-style: italic;
}

.product-page.active * {
  transform: translateY(0);
  opacity: 1;
}

#adoptPage {
  background-image: url("../img/adopt-landing.png");
}

#cptPage {
  background-image: url("../img/cpt-landing.png");
}

#psyPage {
  background-image: url("../img/psy-landing.png");
}

