* {
  margin: 0; padding: 0;
  font: inherit;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  background: #b5eac9;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #777;
}
.container {
  width: 960px;
  margin: auto;
}
a {
  color: #45ADCE;
}
a:hover {
  color: #3F93AD;
}
h1 {
  line-height: 1.5em;
  font-size: 3.1em;
  font-weight: 300;
  color: #206b45;
}
h2 {
  font-size: 2em;
  line-height: 1.4em;
  color: #206b45;
  font-weight: 300;
  margin-bottom: 10px;
}
ul {
  margin-bottom: 20px;
}
li {
  margin-left: 40px;
}
p {
  margin-bottom: 15px;
}
strong {
  font-weight: 900;
}
#site-header {
  width: 100%;
  height: 115px;
  background: #00a651;
  z-index: 5000;
  padding-top: 20px;
}
#site-header .logo {
  float: left;
  height: 75px;
}
#site-header .telephone {
  color: #fff;
  float: right;
  line-height: 75px;
  font-size: 2em;
}
#home #site-header {
  position: fixed;
  top: 0;
  background: transparent;
}

/* banner */
#banner {
  position: fixed;
  width: 100%;
  height: 700px;
  background: #00a651;
  padding-top: 50px;
}
  #banner .container {
    position: relative;
  }
#banner-image {
  display: none;
  position: absolute;
  top: 0; left: 0;
  width: 960px;
  height: 600px;
  overflow: hidden;
}
  #banner-cutout {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 600px;
    background: url(../img/banner-cutout.png) center no-repeat;
    z-index: 100;
  }
  #banner img {
    position: absolute;
    opacity: 0;
    -webkit-transition: all 1s linear;
       -moz-transition: all 1s linear;
        -ms-transition: all 1s linear;
            transition: all 1s linear;


  -webkit-animation: bltr 10s linear 0s infinite alternate;
     -moz-animation: bltr 10s linear 0s infinite alternate;
      -ms-animation: bltr 10s linear 0s infinite alternate;
          animation: bltr 10s linear 0s infinite alternate;
  }
  #banner img.alternate {
    -webkit-animation: brtl 10s linear 0s infinite alternate;
       -moz-animation: brtl 10s linear 0s infinite alternate;
        -ms-animation: brtl 10s linear 0s infinite alternate;
            animation: brtl 10s linear 0s infinite alternate; 
  }
  #banner img.active {
    opacity: 1;
  }

#banner-text {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 500;
  text-align: center;  
}
  #banner-text h1 {
    font-size: 3.1em;
    font-weight: 300;
    color: #ebd109;
    margin-top: 250px;
    margin-bottom: 10px;
  }
  #banner-text p {
    font-size: 1.25em;
    color: #b5eac9;
    padding: 0 100px;
  }
  .button {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 15px;
    background: #ebd109;
    color: #206b45 !important;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.25em;
    border-radius: 4px;
    border: none;
    border-top: 1px solid #FAE439;
    border-bottom: 2px solid #C9B30E;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-shadow: 0 1px 0 #F0DD50;
    cursor: pointer;
  }
  .button:hover {
    background: #F0DD50;
  }

#content {
  position: relative;
  z-index: 10;
  background: #b5eac9;
}

/* home */
#home #content {
  position: absolute;
  top: 700px;
  width: 100%;
  height: 750px;
  z-index: 1000;
}
#home #services {
  margin-top: 50px;
  overflow: auto;
}
#home #services .box {
  width: 50%;
  float: left;
  padding: 45px 20px 20px 120px;
  min-height: 150px;
  background: pink;
}
  #home #services #residential {
    background: url(../img/services-termite.png) 20px center no-repeat;
  }
  #home #services #commercial {
    background: url(../img/services-cockroach.png) left center no-repeat;
  }

#call-to-action {
  font-size: 1.6em;
  text-align: center;
  font-weight: 900;
  padding: 30px 0;
  color: #52A270;
  border-top: 1px solid #B3D8C0;
  border-bottom: 1px solid #B3D8C0;
  margin-top: 50px;
}
  #call-to-action p {
    margin: 0;
  }
  #call-to-action span {
    color: #45815C;
  }
  #call-to-action a {
    font-size: 0.8em;
  }

#home #about {
  margin-top: 25px;
}
#social {
  margin-top: 45px;
}
#members {
  float: right;
  margin-top: 6px;
}



/* contact-us */
#contact-us h1 {
  margin-bottom: 20px;
  border-bottom: 2px solid #8CDBB3;
}
#contact-us #content {
  padding: 50px 0;
}
#contact-us form div {
  margin-bottom: 20px;
}
#contact-us input[type="text"],
#contact-us input[type="email"],
#contact-us textarea {
  display: block;
  height: 40px;
  line-height: 40px;
  font-size: 1.5em;
  padding: 0 10px;
  width: 50%;
  color: #777;
}
#contact-us textarea {
  height: 120px;
}
#contact-us .pest div {
  line-height: 40px;
  font-size: 1.5em;
}
  #contact-us .pest input {
    margin-right: 15px;
  }
#contact-us label {
  font-weight: 900;
  color: #333;
}
#nospam {
  display: none !important;
}


/* residential & commercial & about-us */
#residential #content,
#commercial #content,
#about-us #content {
  padding: 40px 0;
  background: url(../img/bg-ants.png) right bottom no-repeat;
}
#residential #call-to-action,
#commercial #call-to-action,
#about-us #call-to-action {
  border-bottom: 0;
}
#residential h1,
#commercial h1,
#about-us h1 {
  margin-bottom: 20px;
  border-bottom: 2px solid #8CDBB3;
}


#about-us h3 {
  font-weight: bold;
  color: #333;
}
#about-us address {
  margin-bottom: 15px;
}
.chandigarh {
  margin-top: 50px;
}
.chandigarh img {
  float: right;
}
.chandigarh div {

}
#about-us .regional {
  overflow: auto;
  margin: 50px 0 100px;
}
#about-us .regional div {
  float: left;
  width: 50%;
}

/* site footer */
#site-footer {
  width: 100%;
  height: auto;
  padding: 50px 0;
  background: #fff;
}
  #site-footer nav {
    text-align: center;
    color: #eee;
  }
  #site-footer nav a {
    padding: 0 20px;
    color: #999;
    text-decoration: none;
  }
  #site-footer nav a:hover {
    color: #777;
  }
  #site-footer small {
    text-align: center;
    color: #999;
    font-size: 0.8em;
    display: block;
    margin-top: 20px;
  }
#home #site-footer {
  position: absolute;
  top: 1450px;
}
#contact-us.message #site-footer {
  position: absolute;
  bottom: 0;
}


/* animations */
@-webkit-keyframes bltr { from { bottom: 0; left: -50px } to { bottom: -300px; left: -400px }  }
   @-moz-keyframes bltr { from { bottom: 0; left: -50px } to { bottom: -300px; left: -400px }  }
    @-ms-keyframes bltr { from { bottom: 0; left: -50px } to { bottom: -300px; left: -400px }  }
        @keyframes bltr { from { bottom: 0; left: -50px } to { bottom: -300px; left: -400px }  }

@-webkit-keyframes brtl { from { bottom: 0; right: -50px } to { bottom: -300px; right: -400px }  }
   @-moz-keyframes brtl { from { bottom: 0; left: -50px } to { bottom: -300px; left: -400px }  }
    @-ms-keyframes brtl { from { bottom: 0; left: -50px } to { bottom: -300px; left: -400px }  }
        @keyframes brtl { from { bottom: 0; left: -50px } to { bottom: -300px; left: -400px }  }

@media screen and (max-width: 960px) {
  body {
    font-size: 12px;
    line-height: 20px;
    height: auto !important;
    overflow: hidden;
  }
  .container {
    width: 90%;
    margin: auto;
  }
  #home #site-header, #site-header {
    position: static;
    background: #00a651;
    padding-top: 10px;
    height: 75px;
  }
    #site-header a {
      width: 50%;
    }
    .logo img {
      width: 200px;
    }
    #site-header .telephone {
      font-size: 1.1em;
      text-align: right;
      line-height: 60px;
    }
  #banner {
    position: static !important;
    padding: 0;
    height: auto;
    padding-bottom: 20px;
  }
  #banner-image {
    display: none !important;
  }
    #banner-text {
      position: static;
      padding-top: 10px;
    }
    #banner-text h1 {
      line-height: 1em;
      margin-top: 0;
    }
    #banner-text p {
      padding: 0;
    }
    #banner-text .button {
      margin: 0;
    }

  #content {
    position: static !important;
    height: auto !important;
    padding: 20px 0 !important;
  }
  #home #services { margin: 0; }
  #home #services .box {
    width: 100%;
    padding-left: 80px;
  }
  #home #services #residential {
    background-size: 40px !important;
  }
  #home #services #commercial {
    background-size: 80px !important;
  }
  #call-to-action {
    margin: 0;
  }
  #call-to-action span {
    display: block;
  }
  #social > img {
    display: block; margin: 10px auto; float: none;
  }
  .fb-like-box.fb_iframe_widget {
    width: 100%; margin-top: 20px;
  }
  #site-footer {
    position: static !important;
  }
  #site-footer nav a {
    padding: 0 10px;
  }
  #contact-us input[type="text"], #contact-us input[type="email"], textarea {
    width: 100% !important;
  }
}