body {
  padding: 0;
  margin: 0;
  background: #fff;
  font-size: 13px;
  line-height: 20px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lato Bold', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 12px;
}
a {
  transition: all .2s;
  -moz-transition: all .2s;
  -webkit-transition: all .2s;
}
a:hover,
a:active,
a:focus {
  outline: 0;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .feature-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 22px;
  }
}
.btn {
  border-radius: 30px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  background: none;
  border-width: 2px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn:hover,
.btn:focus,
.btn:active {
  outline: 0;
  background: none;
}
.btn:after {
  height: 100%;
  width: 0;
  content: "";
  top: 0;
  position: absolute;
  left: 0;
  z-index: -1;
  transition: width 0.1s linear;
  -moz-transition: width 0.1s linear;
  -webkit-transition: width 0.1s linear;
}
.btn:hover:after {
  width: 100%;
}
.btn-primary {
  color: #0099cc;
  border-color: #0099cc;
}
.btn-primary:after {
  background: #0099cc;
}
.main-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 10px 0;
  transition: background 0.1s;
  -moz-transition: background 0.1s;
  -webkit-transition: background 0.1s;
}
.logo {
  position: relative;
  display: block;
}
.logo img {
  transition: all 0.1s;
  -moz-transition: all 0.1s;
  -webkit-transition: all 0.1s;
  height: 46px;
}
.logo .logo-color {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.main-nav .nav {
  text-align: right;
}
.main-nav .nav li {
  display: inline-block;
}
.main-nav .nav li > a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border: 2px solid transparent;
  padding: 5px 15px;
  margin: 5px 0;
}
.main-nav .nav li > a:hover,
.main-nav .nav li > a:focus {
  background: none;
  border-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.9);
}
.main-nav .nav li.active a {
  border-color: transparent;
  color: #fff;
}
.slideshow {
  position: relative;
  z-index: 1;
}
.slide-item {
  height: 600px;
  padding-top: 70px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .slide-item {
    height: 340px;
  }
}
@media (min-width: 640px) and (max-width: 767px) {
  .slide-item {
    height: 440px;
  }
}
.slide-item .slide-bg {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.slide-item .container {
  position: relative;
  z-index: 3;
}
.slide-item.slide1 {
  background: url(../img/slide-bg-1.jpg) no-repeat top center / 100% auto;
}
.slide-item.slide1 .slide-bg {
  background: url(../img/blue-trans-bg.png) repeat 0 0;
}
.slide-item.slide2 {
  background: url(../img/slide-bg-2.jpg) no-repeat top center / 100% auto;
}
.slide-item.slide2 .slide-bg {
  background: url(../img/yellow-trans-bg.png) repeat 0 0;
}
.slide-item.slide3 {
  background: url(../img/slide-bg-3.jpg) no-repeat top center / 100% auto;
}
.slide-item.slide3 .slide-bg {
  background: url(../img/pink-trans-bg.png) repeat 0 0;
}
.slide-item.slide4 {
  background: url(../img/slide-bg-4.jpg) no-repeat top center / 100% auto;
}
.slide-item.slide4 .slide-bg {
  background: url(../img/gray-trans-bg.png) repeat 0 0;
}
@media screen and (max-width: 767px) {
  .slide-item {
    background-size: auto 100% !important;
  }
}
.carousel .item {
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  -ms-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}
.carousel .active.left {
  left: 0;
  opacity: 0;
  z-index: 2;
}
.carousel .next {
  left: 0;
  opacity: 1;
  z-index: 1;
}
.carousel-control.left,
.carousel-control.right {
  width: 20px;
  background: url(../img/black-trans-bg-1.png) repeat;
  height: 60px;
  line-height: 60px;
  text-align: center;
  top: 45%;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  z-index: 4;
  filter: none;
}
.carousel-control.left {
  left: 20px;
}
.carousel-control.right {
  right: 20px;
}
.carousel-control:hover {
  background: url(../img/black-trans-bg-2.png) repeat;
}
.masshead {
  margin: 100px 0;
}
@media screen and (max-width: 767px) {
  .masshead {
    margin: 30px 0;
  }
}
.masshead-title {
  font-size: 48px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .masshead-title {
    font-size: 24px;
  }
}
.masshead-intro {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}
.masshead-action {
  margin: 30px 0;
}
.masshead-action .btn {
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border: 3px solid #fff;
  color: #fff;
  background: none;
  box-shadow: none;
  font-size: 20px;
  font-family: Lato;
  text-transform: uppercase;
  padding: 13px 30px;
  position: relative;
}
.btn:after,
.masshead-action .btn:after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  width: 0;
  z-index: -1;
  background: url(../img/black-trans-bg-3.png) repeat;
}
.btn-primary:after {
  background: url(../img/blue-trans-bg.png) repeat;
}
.btn:hover:after,
.masshead-action .btn:hover:after {
  width: 100%;
}
.main-section {
  padding: 40px 0;
}
.section-body {
  font-size: 20px;
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  .section-body {
    font-size: 16px;
    line-height: 22px;
  }
}
.main-section.has-mask {
  background: url(../img/white-bg-mask.png) no-repeat top center;
  position: relative;
  margin-top: -70px;
  z-index: 2;
  padding-top: 100px;
  text-align: center;
}
.main-section.gray-bg {
  background: #f5f5f5;
}
.main-section.features-section .section-body {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .main-section.features-section .section-body img {
    width: 70px;
    height: auto;
  }
}
.main-section.features-section .section-body .section-actions {
  display: none;
}
.main-section.environment-section {
  font-size: 15px;
  line-height: 25px;
}
.main-section.environment-section .row {
  margin: 30px 0;
}
.main-section.environment-section .col-sm-6 .media {
  margin-right: -44px;
}
@media screen and (max-width: 767px) {
  .main-section.environment-section .col-sm-6 .media {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .main-section.environment-section .col-sm-6 .media > .pull-right {
    float: left !important;
    margin-left: 0;
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .main-section.environment-section .col-sm-6 .media > .media-body.text-right {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .main-section.environment-section .col-sm-6 .media .media-heading {
    font-size: 18px;
  }
}
.main-section.environment-section .col-sm-6.col-sm-offset-6 .media {
  margin-right: 0;
  margin-left: -44px;
}
@media screen and (max-width: 767px) {
  .main-section.environment-section .col-sm-6.col-sm-offset-6 .media {
    margin-left: 0;
  }
}
.footer {
  background: #2c3e50 url(../img/footer-map-bg.jpg) no-repeat top center;
  padding: 40px 0;
  color: #838b99;
  font-size: 14px;
  background-size: 100% 100%;
}
.footer a {
  color: #838b99;
}
.footer a:hover {
  color: #fff;
}
.footer .box-address {
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
}
.footer-social {
  text-align: right;
}
.footer-social a {
  width: 50px;
  height: 50px;
  display: inline-block;
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  margin-right: -3px;
}
.footer-social a.facebook {
  background: #3468af;
}
.footer-social a.twitter {
  background: #4fc4f6;
}
.footer-social a.gplus {
  background: #e64c65;
}
.footer-social a.mail {
  background: #50597b;
}
.footer-social a:hover {
  background: #000;
}
.footer-links {
  padding: 40px 0;
}
.footer-link-title {
  color: #fff;
  margin-bottom: 30px;
}
.footer-link-ct {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
}
.footer-link-ct a {
  display: block;
}
.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  margin: 0;
}
#sticker.main-nav.fixed-nav {
  background: url(../img/black-trans-bg.png) repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
#sticker.main-nav.fixed-nav .logo .logo-white {
  opacity: 0;
}
#sticker.main-nav.fixed-nav .logo .logo-color {
  opacity: 1;
}
/* Goto Top */
.go-top,
.go-top:visited {
  position: fixed;
  bottom: 3em;
  right: 2em;
  text-decoration: none;
  background: #0099cc;
  color: #fff;
  font-size: 20px;
  display: none;
  z-index: 999;
  width: 44px;
  line-height: 44px;
  height: 44px;
  text-align: center;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  outline: 0;
}
.go-top:hover {
  background: #0084b0;
  color: #fff;
  outline: 0;
}
/* Subpages */
/* ----------------------------------- */
.wrapper.sub-page .main-nav {
  background: rgba(0, 0, 0, 0.1);
}
.ie8 .wrapper.sub-page .main-nav {
  background: url(../img/black-trans-bg-1.png) repeat;
}
.sub-page-masshead {
  padding: 100px 0 60px 0;
  color: #fff;
}
.sub-mashead-intro {
  font-family: Lato;
  font-size: 18px;
}
.sub-page-masshead.blue {
  background: #0099cc;
}
.sub-page-masshead.pink {
  background: #CB268C;
}
.sub-page-masshead.yellow {
  background: #f4ae08;
}
.sub-page-masshead.gray {
  background: #3E3D3F;
}
.sub-mashead-action {
  margin-top: 30px;
}
.sub-mashead-action .btn {
  color: #fff;
  background: url(../img/white-trans-bg-2.png) repeat;
  border: 0;
}
.sub-mashead-action .btn:hover {
  background: url(../img/white-trans-bg-1.png) repeat;
}
/* About Page */
/* ----------------------------------- */
.block-about {
  padding: 40px 0;
}
.block-about-img {
  position: relative;
  overflow: hidden;
}
.block-about-img:after {
  content: "";
  background: url(../img/black-trans-bg-3.png) repeat;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -webkit-transition: all 0.2s ease-out 0s;
}
.block-about-img:hover:after {
  /*opacity: 1;
  filter: alpha(opacity=100);*/
}
.block-about-img img {
  max-width: 100%;
}
.block-about-img .btn {
  position: absolute;
  top: 45%;
  left: 28%;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
}
.block-about-img:hover .btn {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
}
.block-about-content {
  font-size: 15px;
  line-height: 1.4;
}
.block-about-content h3 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.block-title {
  margin-top: 0;
}
.show-team {
  border: solid 1px #eeeeee;
  border-left: 5px solid #0099cc;
  margin: 40px 0;
  padding: 28px;
}
.show-team .info-team {
  float: left;
  width: 65%;
  color: #888;
  font-size: 16px;
}
.show-team a.btn {
  float: right;
  margin-top: 0;
}
.staff-items {
  margin: 40px 0;
}
.staff-intro {
  /*font-size: 16px; change by Robert as Terry want - 27-Apr-15*/
  font-size: 14px;
  line-height: 1.4;
}
.staff-img {
  position: relative;
  overflow: hidden;
}
.staff-img img {
  max-width: 100%;
}
.staff-follow {
  text-align: left;
  font-family: Lato;
  color: #888;
  font-size: 11px;
  text-transform: uppercase;
}
.staff-follow .staff-social a {
  color: #888;
  display: inline-block;
  width: 16px;
  text-align: center;
  height: 16px;
}
.staff-follow .staff-social a:hover {
  color: #333;
}
.staff-item-detail .name {
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  margin: 0;
}
.staff-item-detail .role {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
  margin: 0;
}
.staff-item-detail .descr {
  font-size: 14px;
  line-height: 1.4;
}
/* Services Page */
/* ----------------------------------- */
.block-portfolio .item,
.block-service .item {
  padding: 20px;
  border: 3px solid transparent;
}
.block-portfolio .item:hover,
.block-service .item:hover {
  border-color: #eee;
}
.service-title {
  font-size: 18px;
  margin: 0;
}
.service-title a {
  color: #333;
}
.service-intro {
  position: relative;
  overflow: hidden;
  margin: 20px 0;
}
.service-image:after {
  content: "";
  background: url(../img/black-trans-bg-3.png) repeat;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
}
.service-intro .service-image img {
  max-width: 100%;
}
.service-action {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  height: 50px;
  text-align: center;
}
.block-portfolio .item .btn,
.block-service .item .btn {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
}
.block-portfolio .item:hover .btn,
.block-service .item:hover .btn {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/*
stop hover remove as client want, on 23-feb-15 : Robert
.block-service .item:hover .service-image:after,
.block-portfolio .item:hover .service-image:after{
  opacity: 1;
  filter: alpha(opacity=100);
}
*/
/* Portfolio Page */
/* ----------------------------------- */
.sub-folio .item .service-action {
  top: 35%;
}
#map {
  width: 100%;
  height: 300px;
}
.block-contact {
  padding: 40px 0;
}
.form-contact {
  margin-top: 20px;
}
/* IE Fix */
.ie8 .main-nav .nav li > a {
  color: #ddd;
}
.ie8 .main-nav .nav li > a:hover {
  border-color: #fff;
}
.ie8 .main-nav .nav li.active a {
  color: #fff;
}
.btn-offcanvas-hide {
  background: #252525;
  border: 0;
  color: #fff;
  width: 34px;
  height: 34px;
  top: 0;
  left: 0;
}
.btn-offcanvas-hide:hover,
.btn-offcanvas-hide:focus {
  background: #333;
  color: #fff;
}
.btn-offcanvas-toggle {
  background: none;
  border-color: #fff;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .masshead {
    margin: 30px 0;
  }
  .slide-item {
    height: 400px;
  }
}
@media screen and (max-width: 979px) {
  body {
    background: #000;
  }
  .wrapper {
    background: #fff;
  }
  .main-nav .sidebar-offcanvas .nav li {
    display: block;
  }
  .main-nav .sidebar-offcanvas .nav li a:hover {
    border-color: transparent;
  }
  .main-nav,
  .wrapper.sub-page .main-nav {
    position: relative;
    background: #333;
    z-index: 1000;
  }
  .wrapper.sub-page .main-nav {
    background: #333;
  }
  .sub-page-masshead {
    padding: 40px 0;
  }
  .sub-mashead-title {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .main-section.has-mask {
    background: none;
  }
  .main-nav {
    position: fixed;
  }
  .main-nav .nav li > a {
    border: 0;
    border-bottom: 1px solid #222;
    border-radius: 0;
  }
  .main-nav .sidebar-offcanvas .nav li a:hover {
    border-color: #222;
  }
  .main-nav .nav li.active a {
    border-color: #222;
    color: #fff;
  }
  .sub-page-masshead {
    padding: 50px 0;
  }
  .sub-mashead-action {
    float: none !important;
    margin-top: 0;
  }
  .sub-mashead-action .btn {
    margin-bottom: 20px;
  }
  .block-about-content {
    margin: 30px 0;
  }
  .show-team .info-team {
    width: 100%;
    margin-bottom: 20px;
  }
  .show-team a.btn {
    float: none;
  }
  .staff-item,
  .staff-img,
  .staff-item-detail .name {
    text-align: center;
  }
  .staff-follow {
    display: none;
  }
  .staff-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
  }
  .staff-item:hover .staff-img img {
    margin-top: 0;
  }
  .staff-item:last-child {
    border: 0;
  }
  .footer-links {
    display: none;
  }
  .footer .box-address,
  .footer-social {
    text-align: center;
    margin-bottom: 20px;
  }
  .form-group .form-control {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 979px) {
  body {
    padding-top: 70px;
  }
}
