/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700');

* {
    font-family: 'Roboto', sans-serif;
}

.button {
  text-transform: uppercase;
  padding: 10px 20px;
  margin: 10px;
  line-height: 20px;
  border-radius: 30px;
  font-weight: 100;
  overflow: hidden;
}

.bt-white {
  color: #fff;
  border: 2px solid white;
  display: block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.bt-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.bt-white:hover,
.bt-white:focus,
.bt-white:active {
  color: #46995a;
  text-decoration: none;
}

.bt-white:hover:before,
.bt-white:focus:before,
.bt-white:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}

.header-search {
  color: #777;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid #777;
  font-weight: 100;
}

#hamburger {
  position: relative;
}

#hamburger span {
  width: 35px;
  height: 4px;
  margin: 5px 0;
  display: block;
  background: #46995a;
}

#cross {
  position: relative;
  width: 35px;
  height: 35px;
}

#cross span {
  position: absolute;
  left: 15px;
  height: 35px;
  width: 2px;
  background-color: #fffffff5;
}

#cross span:nth-child(1) {
  transform: rotate(45deg);
}

#cross span:nth-child(2) {
  transform: rotate(-45deg);
}



/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}


/* ==========================================================================
   Author's custom styles
   ========================================================================== */

.off-canvas {
  opacity: 1;
  min-height: 100%;
  min-width: 100%;
  position: fixed;
  z-index: -1;
}

.off-canvas .wrapper {
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  width: 100%;
  height: inherit;
  background: #408a53;
}

/*.canvas header:before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  left: 0px;
  height: 3px;
  background: linear-gradient(90deg,#05AAA3 0%,#72DE93 56.73%,#92ED8D 100%);
}*/

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  position: relative;
}

header {}

header .top-bar {
  padding: 30px 0px 10px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}

header .top-bar figure.logo {
  width: 250px;
  margin: 0px auto;
  padding: 10px 10px 5px;
}

header .top-bar figure.logo a {
    display: block;
}

header .top-bar figure.logo img {
  display: block;
  margin: 0px auto;
  height: 30px;
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

header .top-bar nav {
  display: none;
  float: right;
  padding-top: 20px;
  margin-right: 5%
}

header .top-bar nav ul {
  float: right;
  list-style: none;
  padding: 0px;
  clear: both;
}

header .top-bar nav ul li {
    float: left;
}

header .top-bar nav ul li a {
  position: relative;
  margin: 0;
  padding: 0 17px;
  font-size: 18px;
  letter-spacing: .02px;
  line-height: 19px;
  opacity: 1;
  color: #fff;
}

header .top-bar nav ul li a:before {
  content: "";
  position: absolute;
  width: calc(100% - 34px);
  left: 17px;
  height: 2px;
  bottom: -5px;
  background-color: #fffffff5;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

header .top-bar nav ul li a:hover {
  color: #fff;
  text-decoration: none;
}

header .top-bar nav ul li a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

header .top-bar .header-search {
  margin-top: 8px;
  float: right;
  width: 250px;
}

header .nav-down {
  position: fixed !important;
  transition: top .2s ease-in-out;
  background: #fff;
  padding: 5px 0px 5px;
  -webkit-box-shadow: 0px 10px 10px -8px rgba(150,150,150,0.6);
  -moz-box-shadow: 0px 10px 10px -8px rgba(150,150,150,0.6);
  box-shadow: 0px 10px 10px -8px rgba(150,150,150,0.6);
}

header .nav-down nav ul li a {
  color: #000;
}

header .nav-down nav ul li a:before {
  background-color: #000;
}

header .nav-down nav ul li a:hover {
  color: #000;
}

header .nav-up {
  transition: top .3s ease-in-out;
  background: #fff;
  position: fixed !important;
  top: -120px !important;
}

.transparent {
}


footer {}

footer section {}

footer section.contact-now {
  position: relative;
  /*background-image: url("https://www.toptal.com/designers/subtlepatterns/patterns/congruent_pentagon.png");*/
  background-repeat: repeat;
}

footer section.contact-now .wrapper {
  padding: 40px 0px;
  width: 100%;
  height: inherit;
  background: rgb(26,116,47);
  background: linear-gradient(90deg, rgba(26,116,47,0.8) 0%, rgba(26,129,50,0.8) 22%, rgba(27,143,54,0.8) 47%, rgba(48,145,70,0.8) 68%, rgba(66,147,85,0.8) 100%);
}

footer section.contact-now h2 {
  text-align: center;
  font-weight: 100;
  color: #fff;
}

footer section.contact-now .button-container {
  display: table;
  margin: 0px auto;
}

footer section.quick-links {
  padding: 30px 0px;
  background: rgb(85, 85, 85);
}

footer section.quick-links h3 {
  color: #fff;
  font-weight: 300;
  font-size: 24px;
}

footer section.quick-links ul {
  list-style: none;
  padding: 0px;
  margin: 0px 0px 20px;
}

footer section.quick-links ul li {}

footer section.quick-links ul li a {
  color: #fff;
  font-weight: 100;
}

footer section.footer-bar {
  background: rgb(51, 51, 51);
}

footer section.footer-bar p {
  text-align: center;
  color: #777;
  padding: 0px;
  margin: 0px;
  line-height: 40px;
  font-weight: 100;
}


/* ==========================================================================
   Homepage
   ========================================================================== */


#intro {
  width: inherit;
  height: inherit;
  position: relative;
}

#intro .typed-message {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: #f5f6f7;
  width: 100%;
  height: 200px;
  z-index: 77;
  box-shadow: 0 2px 10px 0 rgba(134,141,155,0.2);
}

#intro .typed-message:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: solid 7px white;
  top: -20px;
  left: -20px;
  background: white;
  z-index: -132;
  box-shadow: 0 2px 10px 0 rgba(134,141,155,0.2);
}
  
#intro .typed-message h1 {
  color: #3d5443;
  font-weight: 100;
  font-size: 2.7em;
  line-height: 1.7em;
  text-align: center;
  margin-top: -10px;;
}

.typed_wrap h1 {
  display: inline;
}

#typed::after {
  content: '|';
  display: inline;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

.typed-cursor{
   opacity: 0;
  display: none;
}

#typed-md {
  display: none;
}

@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}


/* ==========================================================================
   Contact Page
   ========================================================================== */

#contact {
    background: #fff;
}

#contact section {}

#contact section.intro {
background: rgb(26,116,47);
background: linear-gradient(90deg, rgba(26,116,47,0.8) 0%, rgba(26,129,50,0.8) 22%, rgba(27,143,54,0.8) 47%, rgba(48,145,70,0.8) 68%, rgba(66,147,85,0.8) 100%);
}

#contact section.intro .wrapper {
  width: 100%;
}

#contact section.intro .wrapper .container {
  position: relative;
  padding: 3em 0px;
}

#contact section.intro .wrapper .title-box {
  text-align: center;
  font-weight: 100;
  color: #fff;
  padding: 0px 2em;
}

#contact section.intro .wrapper .title-box h2 {
  font-size: 50px;
  font-weight: 100;
  color: #fff;
}

#contact section.maincontent {
  padding: 50px 0px;
}

#contact section#contact-form {
  padding: 0px 0px 50px;
}

.map-canvas {
  height: 400px;
  width: 100%;
}

.eq-wrap {
  display: block;
}

.equal-h {
  width: 100%;
}

.address-box {
  text-align: center;
}

.form-box {
  max-width: 400px;
  width: 100%;
  display: block;;
  margin: 0 auto 40px;
}

.form-box input {
  margin-bottom: 14px;
  border: none;
  background: #e0e0e0;
  width: 100%;
  height: 40px;
  border-radius: 4px;
  padding-left: 8px;
  color: #000;
}

.form-box textarea {
  width: 100%;
  min-height: 200px;
  background: #e0e0e0;
  padding: 10px;
  border-radius: 4px;
  border: none;
}



/* ==========================================================================
   Clients
   ========================================================================== */

#clients {
  background: #fff;
}

#clients section {}

#clients section.intro {
  background: rgb(26,116,47);
  background: linear-gradient(90deg, rgba(26,116,47,0.8) 0%, rgba(26,129,50,0.8) 22%, rgba(27,143,54,0.8) 47%, rgba(48,145,70,0.8) 68%, rgba(66,147,85,0.8) 100%);
}

#clients section.intro .wrapper {
  width: 100%;
}

#clients section.intro .wrapper .container {
  position: relative;
  padding: 3em 0px;
}

#clients section.intro .wrapper .title-box {
  text-align: center;
  font-weight: 100;
  color: #fff;
  padding: 0px 2em;
}

#clients section.intro .wrapper .title-box h2 {
  font-size: 50px;
  font-weight: 100;
  color: #fff;
}

#clients section.maincontent {}

#clients section.maincontent:before {
  content: "";
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: -10;
  position: absolute;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  opacity: 0.1;
}

#clients .about-our-clients {
  margin-top: 50px;
}

#clients section.maincontent #clients-post {
  margin-bottom: 20px;
}

#clients section.maincontent #clients-post figure {}

#clients section.maincontent #clients-post figure img {}

#clients section.maincontent #clients-post article {}

#clients section.maincontent #clients-post article h3 {
  text-align: center;
  font-weight: 300;
  font-size: 22px;
}

#clients section.maincontent #clients-post article p {
  text-align: center;
  font-weight: 100;
  margin: 0px;
}

#clients section.maincontent #clients-post article a {
  text-align: center;
  font-weight: 300;
}

.client-info h3 {
    font-weight: 200;
}

.client-info p {
  font-size: 0.8em;
  display: block;
}

.client-info a {
  display: none !important;
}

.client-info:hover a {
  display: block !important;
  text-align: center;
  color: green;
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================================================
   Plan
   ========================================================================== */

#plan {
  background: #fff;
}

#plan section {
  padding: 25px 0px;
}


#plan section.intro {
  /*background-image: url(https://www.toptal.com/designers/subtlepatterns/patterns/circles-and-roundabouts.png);*/
  background-repeat: repeat;
}

#plan section.intro .wrapper {
  width: 100%;
}

#plan section.intro .wrapper .container {
  position: relative;
  padding: 3em 0px;
}

#plan section.intro .wrapper .title-box {
  text-align: center;
  font-weight: 100;
  color: #fff;
  padding: 0px 2em;
}

#plan section.intro .wrapper .title-box h2 {
  font-size: 40px;
  font-weight: 100;
  color: #fff;
}

#plan section.maincontent {
  text-align: center;
}

#plan section.plan-cards {
  background: #f5f6f7;
}

.plan-cards .flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.plan-cards .flex-wrap .flex-item {
  width: 90%;
  margin: 2em auto;
}

.card-item {
  position: relative;
  background-color: #fff;
  box-shadow: 0 2px 10px 0 rgba(134,141,155,0.2);
  transition: transform 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
}

.card-item:hover {
  transform: translateY(-32px);
}

.card-item:before {
  content: "";
  height: 3px;
  width: 0%;
  top: 0px;
  position: absolute;
  background: linear-gradient(90deg,#0E351F 0%, #046635 15%, rgb(0%, 63%, 36%) 100%);
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.card-item:hover::before {
  width: 100%;
}

.card-header {
  padding: 20px 10px;
  background: #fff;
  text-align: center;
}

.card-header > h2 {
  font-weight: 800;
  font-size: 18px;
  padding: 30px 0px 10px;
  text-transform: uppercase;
}

.card-header > p {
  font-weight: 100;
}

.card-header .card-pricing {
  display: table;
  margin: 0 auto;
}

.card-header .card-pricing h4 {
  font-size: 50px;
  font-weight: 300;
  display: inline-block;
}

.card-header .card-pricing p {
  display: inline-block;
}

.card-header button {
  margin-top: 15px;
}

.card-body {
  background-color: #FCFCFC;
}

.body-wrapper {
  padding: 20px;
}

.card-body ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.card-body ul li {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 100;
}

.card-footer {
  background-color: #FCFCFC;
}

.card-footer a {
  text-align: center;
  display: block;
  color: #408a53;
  font-weight: 100;
  text-transform: uppercase;
}


/* ==========================================================================
   about-us
   ========================================================================== */

#about-us {
  background: #fff;
}

#about-us section {
    padding: 25px 0px 25px;
}

#about-us {}

#about-us section {}

#about-us .title-box {
  text-align: center;
}

#about-us .title-box h2 {
  font-size: 3.5em;
  font-weight: 100;
}

#about-us .about-us-article {
}

#about-us .about-us-article h2{
  font-weight: 200;
  font-size: 3.5em;
}


#why-us .title-box{
  padding: 30px 0px;
}

#why-us article h2{
  font-size: 2.5em;
  font-weight: 100;
}

#why-us article ul {
  list-style: none;
}

/* ==========================================================================
   particles-js
   ========================================================================== */


  .stack-slider {
    background: #f5f6f7;
  }
  
  .stack-slider figure {
    padding: 1.2em 2.5em 0.8em;
  }
  
  .stack-slider figure img {
    width: 100%;
  }
  


canvas{
  display:block;
  vertical-align:bottom;
  height: 100%;
  width: 100%
}

/* ---- stats.js ---- */

.count-particles{
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles{
  font-size: 1.1em;
}

#stats,
.count-particles{
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats{
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles{
  border-radius: 0 0 3px 3px;
}


/* ---- particles.js container ---- */

#particles-js{
  width: 100%;
  height: 100%;
  background: rgb(26,116,47);
  background: linear-gradient(90deg, rgba(26,116,47,0.8) 0%, rgba(26,129,50,0.8) 22%, rgba(27,143,54,0.8) 47%, rgba(48,145,70,0.8) 68%, rgba(66,147,85,0.8) 100%); 

}


/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 576px) { 
  body {
    font-size: 14px
  }
}

@media (min-width: 768px) {   
  #intro .typed-message {
    height: 130px;
  }
  body {
    font-size: 16px
  } 

  .bt-white {
    display: inline-block;
  }
    
  header .top-bar figure.logo {
    margin: 0px ;
    margin-left: 5%
 }
  header .top-bar nav {
    display: block;
  }

  header .top-bar figure.logo img {
    height: inherit;
  }
  .address-box {
    text-align: center;
  }

  .form-box {
    margin: 0px 0px 30px;
  }
  #typed-md {
    display: block;
  }
  #typed-sm {
    display: none;
  }

  #intro .typed-message h1 {
    font-size: 2.8em;
    line-height: 2.2em;
  }
}

@media (min-width: 992px) { 
  body {
    font-size: 18px
  } 
  .eq-wrap {
    display: flex;
  }
  .equal-h {
    width: 50%;
  }
  .address-box {
    padding-right: 40px;
    text-align: right;
}
  .plan-cards .flex-wrap .flex-item {
    width: 32%;
    margin: 0 1%;
  }
  .plan-cards .flex-wrap .flex-item:first-child, .plan-cards .flex-wrap .flex-item:last-child{
    margin: 0px;
  }
  #about-us section {
    padding: 50px 0px;
  }

  #plan section {
      padding: 80px 0px 50px;
  }
}

@media (min-width: 1200px) { 
  body {
    font-size: 20px
  } 
  #intro .typed-message {
    width: 70%;
  }
}

@media (min-width: 1600px) { 
  #intro .typed-message {
    width: 50%;
  }
  #intro .typed-message h1 {
    color: #3d5443;
    font-weight: 100;
    font-size: 2.6em;
    text-align: center;
  }
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

