@import "fonts.css";

@import "fontello.css";

@import "royalslider.css";
.progress-bar-filled {
  -webkit-animation: progressBar 1.3s;
  animation: progressBar 1.3s;
}
@-webkit-keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.scale-In {
  -webkit-animation: scaleIn 1s;
  animation: scaleIn 1s;
}
@-webkit-keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.scale-InOut {
  -webkit-animation: scaleInOut 1s;
  animation: scaleIn 1s;
}
@-webkit-keyframes scaleInOut {
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes scaleInOut {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.rotate-LR {
  -webkit-animation: rotateLR 1s;
  animation: rotateLR 1s;
}
@-webkit-keyframes rotateLR {
  25% {
    -webkit-transform: rotate(45deg);
  }
  75% {
    -webkit-transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes rotateLR {
  25% {
    transform: rotate(45deg);
  }
  75% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.rotate-In {
  -webkit-animation: rotateIn 1s;
  animation: rotateIn 1s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotateY(-90deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
  }
}
@keyframes rotateIn {
  0% {
    transform: rotateY(-90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
.rotate-InX {
  -webkit-animation: rotateInX 1s;
  animation: rotateInX 1s;
}
@-webkit-keyframes rotateInX {
  0% {
    -webkit-transform: rotate(-15deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes rotateInX {
  0% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.fadeIn {
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeOut {
  -webkit-animation: fadeOut 1s;
  animation: fadeOut 1s;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeUp {
  -webkit-animation: fadeUp 1s;
  animation: fadeUp 1s;
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown {
  -webkit-animation: fadeDown 1s;
  animation: fadeDown 1s;
}
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeL {
  -webkit-animation: fadeL 1s;
  animation: fadeL 1s;
}
@-webkit-keyframes fadeL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeL {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeR {
  -webkit-animation: fadeR 1s;
  animation: fadeR 1s;
}
@-webkit-keyframes fadeR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeR {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*=====================================
=            Big Animation            =
=====================================*/
.fadeIn-Big {
  -webkit-animation: fadeIn 2s;
  animation: fadeIn 2s;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeOut-Big {
  -webkit-animation: fadeOut 2s;
  animation: fadeOut 2s;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeUp-Big {
  -webkit-animation: fadeUp 2s;
  animation: fadeUp 2s;
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown-Big {
  -webkit-animation: fadeDown 2s;
  animation: fadeDown 2s;
}
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeL-Big {
  -webkit-animation: fadeL 2s;
  animation: fadeL 2s;
}
@-webkit-keyframes fadeL {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@keyframes fadeL {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeR-Big {
  -webkit-animation: fadeR 2s;
  animation: fadeR 2s;
}
@-webkit-keyframes fadeR {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@keyframes fadeR {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*=====================================
=            Isotope 	              =
=====================================*/
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/*======= Animations 2 =======*/
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
/*======= Typography =======*/
.ll {
  font-family: 'Lato';
  font-weight: 300;
}
.lr {
  font-family: 'Lato';
  font-weight: 400;
}
.lb {
  font-family: 'Lato';
  font-weight: 700;
}
/*======= Colors =======*/
/*======= Unique Colors =======*/
/*======================*/
html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}
body {
  min-height: 100%;
}
.container {
  -webkit-backface-visibility: hidden;
}
/*===== Space blocks =====*/
.spacing-block {
  display: block;
  width: 100%;
  height: 100px;
}
.line-block {
  height: 100px;
  position: relative;
  overflow: hidden;
}
.line-block .wrapper {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  height: 100%;
}
.line-block .wrapper .line {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  background: #eeeeee;
}
.line-block .wrapper .icon {
  display: block;
  width: 46px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 50%;
  margin-left: -23px;
  font-size: 20px;
  text-align: center;
  line-height: 20px;
  color: #dedede;
  background: #fff;
}
/*===== Line Separator =====*/
.line-separator {
  height: 1px;
  background: #eeeeee;
}
/*======= Back to top button ======*/
.back-to-top {
  display: block;
  position: fixed;
  height: 30px;
  bottom: -80px;
  right: 50px;
  background: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  border-radius: 3px;
  z-index: 9999;
  font-size: 20px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.back-to-top:hover {
  background: #4eb25c;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
/*======= Buttons =======*/
.btn {
  font-size: 13px;
  line-height: 20px;
  font-family: 'Lato';
  font-weight: 400;
  border: none;
  border-radius: 5px;
  border-bottom: 2px solid #d5d5d5;
  padding: 6px 20px 5px;
  color: #fff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.btn i {
  font-size: 13px;
  line-height: 18px;
}
.btn:focus {
  outline: none;
}
.btn:hover {
  color: #fff;
}
.btn.btn-lg {
  font-size: 17px;
  line-height: 20px;
  padding: 10px 25px;
  border-radius: 10px;
}
.btn.btn-sm {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  padding: 1px 15px 1px;
  border-radius: 5px;
}
.btn.btn-sm i {
  font-size: 12px;
  line-height: 16px;
}
.btn.btn-xs {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  padding: 2px 10px;
  border-radius: 4px;
}
.btn.btn-default {
  color: #fff;
  background-color: #bbbbbb;
  border-color: #a2a2a2;
}
.btn.btn-default:hover {
  background-color: #aeaeae;
  border-color: #959595;
}
.btn.btn-primary {
  background-color: #4eb25c;
  border-color: #3e8f49;
}
.btn.btn-primary:hover {
  background-color: #46a153;
  border-color: #367d40;
}
.btn.btn-primary:focus,
.btn .btn-primary:active {
  background-color: #3e8f49;
  border-color: #2f6b37;
}
.btn.btn-success {
  background-color: #58b25e;
  border-color: #449349;
}
.btn.btn-success:hover {
  background-color: #4ca552;
  border-color: #3c8240;
}
.btn.btn-info {
  background-color: #3498db;
  border-color: #217dbb;
}
.btn.btn-info:hover {
  background-color: #258cd1;
  border-color: #1d6fa5;
}
.btn.btn-warning {
  background-color: #fbad2f;
  border-color: #f29705;
}
.btn.btn-warning:hover {
  background-color: #fba316;
  border-color: #d98804;
}
.btn.btn-danger {
  background-color: #f45252;
  border-color: #f12222;
}
.btn.btn-danger:hover {
  background-color: #f23a3a;
  border-color: #d30d0d;
}
.btn.btn-link {
  color: #4eb25c;
  border: none;
}
.btn.btn-link:hover {
  color: #676767;
  border: none;
}
.btn.btn-grey {
  background-color: #686868;
  border-color: #4f4f4f;
}
.btn.btn-grey:hover {
  background-color: #5b5b5b;
  border-color: #424242;
}
.btn.btn-orange {
  background-color: #ef7b45;
  border-color: #eb5a16;
}
.btn.btn-orange:hover {
  background-color: #ed6a2e;
  border-color: #d55012;
}
.btn.btn-purple {
  background-color: #a085c6;
  border-color: #8562b6;
}
.btn.btn-purple:hover {
  background-color: #9274be;
  border-color: #7751ad;
}
.btn.btn-brown {
  background-color: #aa9570;
  border-color: #917c56;
}
.btn.btn-brown:hover {
  background-color: #a08960;
  border-color: #816e4d;
}
.btn.btn-gradient-blue {
  font-size: 14px;
  line-height: 20px;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.15);
  /* drop shadow */

  padding: 10px 15px;
  border-radius: 9px;
  border-bottom: 3px solid #199fca;
  background-color: #4cc3e9;
  background-image: -moz-linear-gradient(bottom, #4cc3e9 0%, #80cfe9 100%);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #4cc3e9 0%, #80cfe9 100%);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #4cc3e9 0%, #80cfe9 100%);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #4cc3e9 0%, #80cfe9 100%);
  /* gradient overlay */

  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -ms-transition: all 0s linear;
  -o-transition: all 0s linear;
  transition: all 0s linear;
}
.btn.btn-gradient-blue:hover {
  background-color: #35bbe6;
  background-image: -moz-linear-gradient(bottom, #35bbe6 0%, #80cfe9 100%);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #35bbe6 0%, #80cfe9 100%);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #35bbe6 0%, #80cfe9 100%);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #35bbe6 0%, #80cfe9 100%);
  /* gradient overlay */

  border-color: #168db3;
}
.btn.btn-gradient-green {
  font-size: 14px;
  line-height: 20px;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.15);
  /* drop shadow */

  padding: 10px 22px;
  border-radius: 9px;
  border-bottom: 3px solid #769e1a;
  background-color: #9dc90b;
  background-image: -moz-linear-gradient(bottom, #9dc90b 0%, #c7e17b 100%);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #9dc90b 0%, #c7e17b 100%);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #9dc90b 0%, #c7e17b 100%);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #9dc90b 0%, #c7e17b 100%);
  /* gradient overlay */

  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -ms-transition: all 0s linear;
  -o-transition: all 0s linear;
  transition: all 0s linear;
}
.btn.btn-gradient-green:hover {
  background-color: #8ab10a;
  background-image: -moz-linear-gradient(bottom, #8ab10a 0%, #c7e17b 100%);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #8ab10a 0%, #c7e17b 100%);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #8ab10a 0%, #c7e17b 100%);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #8ab10a 0%, #c7e17b 100%);
  /* gradient overlay */

  border-color: #658817;
}
.btn.square {
  border-radius: 0;
}
/*======= Page Header =======*/
.page-header {
  margin-top: 0;
  margin-bottom: 0;
  padding: 27px 0;
  display: block;
  width: 100%;
  background: #f8f8f8;
  border-bottom: 1px solid #eeeeee;
}
@media only screen and (min-width: 768px) {
  .page-header {
    margin-top: 98px;
  }
}
.page-header h4 {
  font-family: 'Lato';
  font-weight: 400;
  color: #717171;
  font-size: 16px;
  line-height: 20px;
  margin-top: 0;
  margin-bottom: 0;
  float: left;
}
.page-header ul.breadcrumbs-custom {
  background: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  float: right;
  list-style: none;
  list-style-type: none;
}
.page-header ul.breadcrumbs-custom li {
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 20px;
  color: #717171;
  cursor: default;
  letter-spacing: .1px;
  padding-left: 1px;
}
.page-header ul.breadcrumbs-custom li a {
  text-decoration: none;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 20px;
  color: #717171;
  letter-spacing: .1px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.page-header ul.breadcrumbs-custom li a:hover {
  color: #4eb25c;
}
/*======= Navigation =======*/
.nav-container {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #eeeeee;
  width: 100%;
  position: relative;
  background: #fff;
  z-index: 20001;
}
@media only screen and (min-width: 768px) {
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
  }
}
.nav-container nav.navbar {
  background: #fff;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
}
.nav-container nav.navbar .navbar-header a.navbar-brand {
  padding: 0;
  margin: 0;
  text-decoration: none;
}
.nav-container nav.navbar .navbar-header a.navbar-brand .logo-icon {
  display: inline-block;
  width: 100px;
  height: 63px;
  margin-top: 10px;
  margin-bottom: 30px;
  float: left;
  background: url(../img/home/logo100.png) center center no-repeat;
}
.nav-container nav.navbar .navbar-header a.navbar-brand .logo-text {
  display: inline-block;
  margin-left: 9px;
}
.nav-container nav.navbar .navbar-header a.navbar-brand .logo-text h3 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin-top: 26px;
  margin-bottom: -6px;
  color: #676767;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-header a.navbar-brand .logo-text span {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 12px;
  color: #cacaca;
  margin-top: 0;
}
.nav-container nav.navbar .navbar-header a.navbar-brand:hover .logo-text h3 {
  color: #4eb25c;
}
@media only screen and (max-width: 767px) {
  .nav-container nav.navbar .navbar-header a.navbar-brand {
    padding-left: 15px;
  }
}
.nav-container nav.navbar .navbar-header button {
  border-color: #dddddd;
  background-color: #fff;
  margin-top: 30px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-header button span {
  background: #676767;
  height: 3px;
}
.nav-container nav.navbar .navbar-header button:hover {
  border-color: #676767;
}
.nav-container nav.navbar .navbar-collapse > ul > li {
  overflow: visible;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a {
  font-family: 'Lato';
  font-weight: 400;
  text-transform: uppercase;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 22px;
  padding: 36px 0 36px 15px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a i.icon-front {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #4cc3e9;
  margin-right: 6px;
  margin-top: -2px;
  border-radius: 50%;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  color: #4cc3e9 !important;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a i.icon-front.blue {
  border-color: #4cc3e9;
  color: #4cc3e9 !important;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a i.icon-front.purple {
  border-color: #a085c6;
  color: #a085c6 !important;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a i.icon-front.orange {
  border-color: #ff6b24;
  color: #ff6b24 !important;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a i.icon-front.green {
  border-color: #83c129;
  color: #83c129 !important;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a i.icon-front.redish {
  border-color: #c71c77;
  color: #c71c77 !important;
}
@media only screen and (max-width: 992px) {
  .nav-container nav.navbar .navbar-collapse > ul > li > a i.icon-front {
    display: none;
  }
}
.nav-container nav.navbar .navbar-collapse > ul > li > a i.more {
  font-size: 14px;
  line-height: 20px;
  color: #676767;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a.selected {
  color: #676767;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a.selected i {
  color: #a3a3a3;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a:hover {
  color: #676767;
}
.nav-container nav.navbar .navbar-collapse > ul > li > a:hover i {
  color: #a3a3a3;
}
@media only screen and (min-width: 992px) {
  .nav-container nav.navbar .navbar-collapse > ul > li > a {
    padding: 36px 15px 36px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .nav-container nav.navbar .navbar-collapse > ul > li > a {
    margin-bottom: 0 ;
    padding: 0 15px;
  }
}
.nav-container nav.navbar .navbar-collapse > ul > li:last-child > a {
  padding-right: 0;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul {
  position: absolute;
  display: none;
  list-style: none;
  list-style-type: none;
  padding: 0;
  border: 1px solid #f1f1f1;
  border-top: none;
  box-shadow: none;
  left: 50%;
  margin-left: -80px;
  width: 100%;
  min-width: 160px;
  background: #fff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li {
  width: 100%;
  background: #fff;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: flipInX;
  -webkit-animation-name: flipInX;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li a {
  font-family: 'Lato';
  font-weight: 400;
  display: block;
  width: 158px;
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 15px;
  border-bottom: 1px solid #f1f1f1;
  background: #fff;
  color: #a3a3a3;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (max-width: 767px) {
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li a {
    width: 100%;
    max-width: 200px;
  }
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li a i {
  color: #a3a3a3;
  padding-right: 5px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li a i.more {
  padding-right: 0;
  padding-left: 5px;
  color: #a3a3a3;
  float: right;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li a:hover {
  background: #fafafa;
  color: #676767;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li a:hover i {
  color: #4eb25c;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li:first-child a {
  border-top: none;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul {
  position: absolute;
  display: none;
  list-style: none;
  list-style-type: none;
  padding: 0;
  border: 1px solid #f1f1f1;
  border-top: none;
  box-shadow: none;
  left: 100%;
  top: 0;
  width: 100%;
  min-width: 160px;
  background: #fff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul.left {
  left: 0;
  margin-left: -160px;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li {
  width: 100%;
  background: #fff;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: flipInX;
  -webkit-animation-name: flipInX;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li a {
  font-family: 'Lato';
  font-weight: 400;
  display: block;
  width: 158px;
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 15px;
  border-bottom: 1px solid #f1f1f1;
  background: #fff;
  color: #a3a3a3;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li a i {
  color: #a3a3a3;
  padding-right: 5px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li a:hover {
  background: #fafafa;
  color: #676767;
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li a:hover i {
  color: #4eb25c;
}
@media only screen and (max-width: 767px) {
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul {
    position: relative;
    display: block;
    padding-top: 0;
    padding-left: 15px;
    border: none;
    box-shadow: none;
    left: 0;
    margin-left: 0;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul.left {
    left: 0;
    margin-left: 0;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li {
    width: 100%;
    animation-name: none;
    -webkit-animation-name: none;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li a {
    display: block;
    font-size: 12px;
    padding: 5px 15px;
    border-bottom: none ;
    background: #fff;
    color: #676767;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li > ul li a:hover {
    padding-left: 15px;
  }
}
.nav-container nav.navbar .navbar-collapse > ul > li > ul li:hover > ul {
  display: block;
}
@media only screen and (max-width: 767px) {
  .nav-container nav.navbar .navbar-collapse > ul > li > ul {
    position: relative;
    display: block;
    padding-top: 0;
    border: none;
    box-shadow: none;
    left: 0;
    margin-left: 0;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li {
    width: 100%;
    animation-name: none;
    -webkit-animation-name: none;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li a {
    display: block;
    font-size: 12px;
    padding: 5px 15px;
    border-bottom: none ;
    background: #fff;
    color: #676767;
  }
  .nav-container nav.navbar .navbar-collapse > ul > li > ul li a:hover {
    padding-left: 15px;
  }
}
.nav-container nav.navbar .navbar-collapse > ul > li:hover > ul {
  display: block;
}
/*======= Revolution Slider ======*/
.tp-banner-container {
  max-height: 879px !important;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .tp-banner-container {
    margin-top: 98px;
  }
}
.tp-banner-container .tp-banner {
  max-height: 879px !important;
}
.tp-banner-container .tp-banner ul {
  width: auto !important;
  overflow: hidden !important;
}
.tp-banner-container .tp-banner ul li .custom-cap {
  background: rgba(255, 255, 255, 0.8);
  color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(238, 238, 238, 0.8);
  border-radius: 1px;
}
.tp-banner-container .tp-banner ul li .custom-cap span.colored {
  color: rgba(78, 178, 92, 0.8);
}
.tp-banner-container .tp-banner ul li .custom-cap.cap-1 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  padding: 20px 30px;
}
.tp-banner-container .tp-banner ul li .custom-cap.cap-2 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  padding: 10px 30px;
}
.tp-banner-container .tparrows {
  width: 28px !important;
  height: 46px !important;
}
.tp-banner-container .tparrows.tp-leftarrow {
  left: 0 !important;
}
.tp-banner-container .tparrows.tp-rightarrow {
  right: 0 !important;
}
.tp-banner-container .tp-bannertimer {
  visibility: hidden !important;
}
/*======= Boxes =======*/
.boxes .row .media {
  display: block;
  margin-top: 50px;
  padding-left: 10px;
  padding-right: 10px;
}
.boxes .row .media .boxes-icon {
  display: block;
  width: 53px;
  height: 53px;
  background: #4eb25c;
  border-radius: 5px;
  margin: 0 auto 20px;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.boxes .row .media .boxes-icon i {
  font-size: 25px;
  line-height: 53px;
  color: #fff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.boxes .row .media .media-body h4.media-heading {
  font-family: 'Lato';
  font-weight: 400;
  color: #4eb25c;
  margin-bottom: 14px;
  text-align: center;
}
.boxes .row .media .media-body p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 0;
}
.boxes .row .media:hover .boxes-icon {
  background: #fff;
  -webkit-box-shadow: inset 0 0 0 2px #4eb25c;
  -moz-box-shadow: inset 0 0 0 2px #4eb25c;
  box-shadow: inset 0 0 0 2px #4eb25c;
}
.boxes .row .media:hover .boxes-icon i {
  color: #4eb25c;
}
/*======= Portfolio Home =======*/
.portfolio-home .heading-category p {
  margin-bottom: 70px;
}
.portfolio-home .projects .project {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .portfolio-home .projects .project {
    max-width: 360px;
    margin: 0 auto 30px;
  }
}
.portfolio-home .projects .project .wrapper {
  position: relative;
  overflow: hidden;
}
.portfolio-home .projects .project .wrapper .info {
  position: absolute;
  display: block;
  bottom: 0;
  margin-bottom: -50px;
  height: 50px;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.portfolio-home .projects .project .wrapper .info .arrow {
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 20px solid rgba(255, 255, 255, 0.75);
}
.portfolio-home .projects .project .wrapper .info .title {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  color: #383838;
  line-height: 50px;
}
.portfolio-home .projects .project .wrapper .info .title i {
  font-size: 18px;
  line-height: 50px;
  color: #4eb25c;
  padding-right: 10px;
}
.portfolio-home .projects .project .wrapper:hover .info {
  margin-bottom: 0;
}
/*======= Portfolio Single =======*/
@media screen and (max-width: 991px) {
  .portfolio-single .content {
    margin-top: 20px;
  }
}
.portfolio-single .content h3 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #717171;
  margin: 0;
}
.portfolio-single .content p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #a3a3a3;
  margin-top: 20px;
  margin-bottom: 0;
}
.portfolio-single .content .info ul {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.portfolio-single .content .info ul li {
  border-bottom: 1px solid #e0e0e0;
  display: block;
}
.portfolio-single .content .info ul li:last-child {
  border: none;
}
.portfolio-single .content .info ul li span.title {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #6a6a6a;
  text-transform: uppercase;
  padding-top: 20px;
}
.portfolio-single .content .info ul li span.name {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #a3a3a3;
  line-height: 16px;
  padding-top: 5px;
}
.portfolio-single .content .client {
  display: block;
}
.portfolio-single .content .client .inner {
  margin-top: 20px;
  padding: 25px;
  border: 1px solid #eeeeee;
  background: #fcfcfc;
}
.portfolio-single .content .client .inner .client-container {
  width: 100%;
  max-width: 110px;
  float: left;
}
.portfolio-single .content .client .inner .client-container span.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #717171;
  margin-top: 10px;
  margin-bottom: 8px;
}
.portfolio-single .content .client .inner .client-container span.job {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #4eb25c;
}
.portfolio-single .content .client .inner .testimonial {
  overflow: hidden;
}
.portfolio-single .content .client .inner .testimonial p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #b4b4b4;
  line-height: 16px;
  margin-top: 0;
  margin-bottom: 15px;
}
.portfolio-single .content .client .inner .testimonial p span.rating {
  white-space: nowrap;
}
.portfolio-single .content .client .inner .testimonial p span.rating i {
  font-size: 15px;
  color: #ffc80b;
  margin-right: -3px;
}
/*======= Product Presentation Home =======*/
.product-presentation-home .post-media h3 {
  margin-top: 0;
  font-family: 'Lato';
  font-weight: 400;
  color: #676767;
}
.product-presentation-home .post-media p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #a3a3a3;
  margin-top: 20px;
}
.product-presentation-home .post-media .list ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  padding-bottom: 15px;
}
.product-presentation-home .post-media .list ul li {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  height: 18px;
  color: #6a6a6a;
  margin-top: 20px;
}
.product-presentation-home .post-media .list ul li i {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #4eb25c;
  font-size: 8px;
  line-height: 16px;
  text-align: center;
  color: #4eb25c;
  float: left;
  margin-right: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.product-presentation-home .post-media .list ul li:hover i {
  background: #4eb25c;
  color: #fff;
}
.product-presentation-home .post-media a {
  margin-top: 10px;
}
/*======= Testimonials =======*/
.testimonials {
  background: url(../img/home/testimonials-bg.jpg) repeat center top;
  -webkit-background-attachment: fixed;
  -moz-background-attachment: fixed;
  -ms-background-attachment: fixed;
  -o-background-attachment: fixed;
  background-attachment: fixed;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.testimonials .container {
  padding-bottom: 115px;
  padding-top: 100px;
}
.testimonials .container ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .testimonials .container ul {
    max-width: 975px;
    margin-left: auto;
    margin-right: auto;
  }
}
.testimonials .container ul li {
  padding-top: 60px;
  position: relative;
}
.testimonials .container ul li a {
  display: block;
  text-decoration: none;
  text-align: left;
  padding-top: 1px;
  max-width: 400px;
  margin: 0 auto;
}
.testimonials .container ul li a img {
  display: block;
  border-radius: 50%;
  float: left;
  margin-right: 15px;
}
.testimonials .container ul li a p.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #21252b;
  margin-top: 16px;
}
.testimonials .container ul li a p.name span.rating {
  color: #ffc600;
  padding-left: 30px;
  white-space: nowrap;
}
.testimonials .container ul li a p.name span.rating i {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  width: 14px;
}
.testimonials .container ul li a p.name span.rating i.disabled {
  color: #dddddd;
}
.testimonials .container ul li a p.site {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #828c8f;
}
.testimonials .container ul li a p.site span.colored {
  color: #4eb25c;
}
.testimonials .container ul li a:focus {
  outline: none;
}
.testimonials .container ul li span.arrow {
  display: none;
  position: absolute;
  top: -3px;
  left: 50%;
  margin-left: -11px;
  width: 22px;
  height: 18px;
  background: url(../img/home/arrow-testimonial.png) center center no-repeat;
}
.testimonials .container ul li.testimonial-selected span.arrow {
  display: block;
}
@media only screen and (max-width: 767px) {
  .testimonials .container ul li.testimonial-selected span.arrow {
    display: none;
  }
}
.testimonials .container .box-testimonial {
  padding: 40px 30px;
  background: #f8fafa;
  max-width: 945px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e6ebeb;
}
.testimonials .container .box-testimonial .testimonial {
  padding: 0;
  text-align: center;
}
.testimonials .container .box-testimonial .testimonial p {
  font-family: 'Lato';
  font-weight: 300;
  font-style: italic;
  color: #555c63;
  font-size: 17px;
  line-height: 18px;
  margin-top: 0;
  margin-bottom: 20px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.testimonials .container .box-testimonial .testimonial p i {
  color: #d6dfdf;
}
.testimonials .container .box-testimonial .testimonial p i.reflected {
  display: inline-block;
  -webkit-transform: scalex(-1);
  -moz-transform: scalex(-1);
  -o-transform: scalex(-1);
}
.testimonials .container .box-testimonial .testimonial .autor-testimonial {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  color: #a3a3a3;
}
.testimonials .container .box-testimonial .testimonial .autor-testimonial span.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  color: #4eb25c;
  text-decoration: none;
}
.testimonials .container .box-testimonial .testimonial .autor-testimonial span.site {
  text-decoration: underline;
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 14px;
}
.testimonials .container .box-testimonial .testimonial .autor-testimonial span.rating {
  white-space: nowrap;
  float: right;
  padding-right: 10px;
}
.testimonials .container .box-testimonial .testimonial .autor-testimonial span.rating i {
  font-size: 15px;
  color: #ffc80b;
  margin-right: -8px;
}
/*======= Skills =======*/
.team-skills-container .skills-members {
  padding-bottom: 30px;
}
.team-skills-container .skills-members h3 {
  font-family: 'Lato';
  font-weight: 400;
  color: #676767;
  margin-bottom: 20px;
  margin-top: 0;
}
.team-skills-container .skills-members p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 20px;
}
.team-skills-container .skills-bars ul.skills-ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.team-skills-container .skills-bars ul.skills-ul li .progress-bg {
  display: block;
  width: 100%;
  height: 23px;
  margin-bottom: 14px;
  background: #72c17d;
}
.team-skills-container .skills-bars ul.skills-ul li .progress-bg .progress-max {
  display: block;
  position: relative;
  height: 23px;
}
.team-skills-container .skills-bars ul.skills-ul li .progress-bg .progress-max .progress-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #4eb25c;
  top: 0;
  left: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.team-skills-container .skills-bars ul.skills-ul li .progress-bg .progress-max p {
  font-family: 'Lato';
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 15px;
  line-height: 23px;
  color: #fff;
  font-size: 14px;
}
/*======= Team =======*/
.team-2 .heading-category h2 {
  margin-top: 0;
}
.team-2 .members .member {
  margin-top: 45px;
  max-width: 293px;
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.team-2 .members .member .info {
  padding: 15px 0;
  max-width: 263px;
}
.team-2 .members .member .info h5 {
  font-family: 'Lato';
  font-weight: 400;
  color: #6a6a6a;
  font-size: 12px;
  line-height: 16px;
  margin-top: 0;
  margin-bottom: 0;
}
.team-2 .members .member .info p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 8px;
  line-height: 10px;
  color: #a3a3a3;
  margin-top: 10px;
}
.team-2 .members .member .info p span.website {
  color: #4eb25c;
}
.team-2 .members .member:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
/*======= About Us =======*/
.about-us .content h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #676767;
  margin-top: 0;
}
.about-us .content .paragraph p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  color: #a3a3a3;
  line-height: 20px;
  padding-top: 10px;
}
.about-us .content .skills-bars ul.skills-ul {
  list-style: none;
  padding: 0;
  padding-top: 19px;
  margin-bottom: 0;
}
.about-us .content .skills-bars ul.skills-ul li .progress-bg {
  display: block;
  width: 100%;
  height: 20px;
  margin-bottom: 12px;
  background: #72c17d;
}
.about-us .content .skills-bars ul.skills-ul li .progress-bg .progress-max {
  display: block;
  position: relative;
  height: 20px;
}
.about-us .content .skills-bars ul.skills-ul li .progress-bg .progress-max .progress-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #4eb25c;
  top: 0;
  left: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.about-us .content .skills-bars ul.skills-ul li .progress-bg .progress-max p {
  font-family: 'Lato';
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 15px;
  line-height: 20px;
  color: #fff;
  font-size: 12px;
}
.about-us .content .skills-bars ul.skills-ul li:last-child .progress-bg {
  margin-bottom: 0;
}
/*======= Pricing Tables =======*/
.pricing-tables .wrapper {
  padding: 0 1px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.pricing-tables .wrapper ul {
  list-style-type: none;
  list-style: none;
  padding: 30px 15px;
  background: #4eb25c;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pricing-tables .wrapper ul {
    margin-top: 50px;
  }
}
.pricing-tables .wrapper ul.starter {
  background: #72c17d;
}
.pricing-tables .wrapper ul.premium {
  background: #3e8f49;
}
.pricing-tables .wrapper ul.developer {
  background: #2f6b37;
}
.pricing-tables .wrapper ul li {
  text-align: center;
  font-family: 'Lato';
  font-weight: 400;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
}
.pricing-tables .wrapper ul li i.icon {
  display: block;
  font-size: 40px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  line-height: 90px;
  text-align: center;
  color: #fff;
  background: #80d28c;
  margin: 0 auto;
}
.pricing-tables .wrapper ul li h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  margin-top: 20px;
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
}
.pricing-tables .wrapper ul li span.price {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
}
.pricing-tables .wrapper ul li:nth-child(3) {
  margin-top: 15px;
}
.pricing-tables .wrapper ul li a {
  border: 1px solid #fff;
  border-radius: 0;
  font-size: 11px;
  text-transform: uppercase;
  line-height: 11px;
  padding: 8px 20px;
  margin-top: 25px;
  margin-bottom: 10px;
}
.pricing-tables .wrapper ul li a:hover {
  text-decoration: underline;
}
.pricing-tables .wrapper:hover {
  opacity: .9;
}
/*======== Simple slider =========*/
.simple-carousel {
  padding: 0;
}
.simple-carousel .carousel-control {
  background: none;
  background-image: none;
  opacity: 1;
  width: 18px;
  height: 100%;
}
.simple-carousel .carousel-control span {
  position: absolute !important;
  display: block;
  top: 50%;
  margin-top: -17.5px;
  height: 35px;
  width: 18px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  opacity: 1;
  text-shadow: none;
}
.simple-carousel .carousel-control:focus {
  outline: none;
}
.simple-carousel .carousel-control.right {
  right: 15px;
}
.simple-carousel .carousel-control.right span {
  background: url(../img/elements/right-arrow.png) -18px 0 no-repeat;
}
.simple-carousel .carousel-control.right span:hover {
  background-position: 0 0;
}
.simple-carousel .carousel-control.left {
  left: 15px;
}
.simple-carousel .carousel-control.left span {
  background: url(../img/elements/left-arrow.png) 0 0 no-repeat;
}
.simple-carousel .carousel-control.left span:hover {
  background-position: -18px 0;
}
/*======= Bullets carousel*/
#bullets-carousel {
  margin-top: 20px;
}
#bullets-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: -40px;
}
#bullets-carousel .carousel-indicators li {
  border: none;
  background: #d9d9d9;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0;
  margin-left: 3px;
  margin-right: 3px;
}
#bullets-carousel .carousel-indicators li.active {
  border: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0;
  margin-left: 3px;
  margin-right: 3px;
  background: #a0a0a0;
}
/*====== Blog ======*/
.blog .row {
  /*=== Sidebar ===*/

}
.blog .row .blog-article {
  /*=== Blog Single ===*/

}
@media screen and (min-width: 1200px) {
  .blog .row .blog-article {
    padding-right: 50px;
  }
}
.blog .row .blog-article .article .blog-img img {
	padding-right: 10px;
}
@media screen and (min-width: 992px) {
  .blog .row .blog-article .article .blog-img img {
    float: left;
  }
}
@media screen and (min-width: 768px) {
  .blog .row .blog-article .article .blog-article-content {
    overflow: hidden;
  }
}
.blog .row .blog-article .article .blog-article-content a {
  text-decoration: none;
}
.blog .row .blog-article .article .blog-article-content a h3 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 20px;
  color: #676767;
  margin: 20px 0 0 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-article .article .blog-article-content a h3:hover {
  color: #4eb25c;
}
.blog .row .blog-article .article .blog-article-content ul.article-info {
  list-style: none;
  list-style-type: none;
  padding: 20px 0 0 0;
  margin: 0;
}
.blog .row .blog-article .article .blog-article-content ul.article-info li {
  display: inline-block;
  margin-right: 15px;
}
.blog .row .blog-article .article .blog-article-content ul.article-info li a {
  text-decoration: none;
  color: #a3a3a3;
  font-size: 12px;
  font-family: 'Lato';
  font-weight: 400;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-article .article .blog-article-content ul.article-info li a i {
  color: #4eb25c;
}
.blog .row .blog-article .article .blog-article-content ul.article-info li a:hover {
  color: #4eb25c;
}
.blog .row .blog-article .article .blog-article-content p {
  font-family: 'Lato';
  font-weight: 6;
  color: #a3a3a3;
  font-size: 16px;
  line-height: 22px;
  margin-top: 20px;
}
.blog .row .blog-article .article-pagination {
  margin-top: 0;
}
.blog .row .blog-article .article-pagination ul {
  padding: 0;
  list-style-type: none;
  list-style: none;
}
.blog .row .blog-article .article-pagination ul li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 0;
}
.blog .row .blog-article .article-pagination ul li a {
  display: block;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  line-height: 28px;
  width: 30px;
  height: 30px;
  border: 1px solid #d9d9d9;
  color: #4eb25c;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-article .article-pagination ul li a.selected {
  background: #4eb25c;
  color: #fff;
  border-color: #4eb25c;
}
.blog .row .blog-article .article-pagination ul li a:hover {
  background: #4eb25c;
  color: #fff;
  border-color: #4eb25c;
}
.blog .row .blog-article.single .article {
  /* Comment form */

}
.blog .row .blog-article.single .article .blog-img img {
  float: left;
  padding-right: 30px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .blog .row .blog-article.single .article .blog-article-content {
    overflow: visible;
  }
}
.blog .row .blog-article.single .article .blog-article-content a h3 {
  margin: -5px 0 0 0;
}
.blog .row .blog-article.single .article .blog-article-content p span.highlight {
  color: #717171;
}
.blog .row .blog-article.single .article .blog-article-content ul.list {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}
.blog .row .blog-article.single .article .blog-article-content ul.list li {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #a3a3a3;
  line-height: 25px;
}
.blog .row .blog-article.single .article .blog-article-content ul.list li i {
  color: #6fe0a4;
  margin-right: 10px;
}
.blog .row .blog-article.single .article ul.tags {
  padding: 10px 0 20px 0;
  margin: 40px 0 0 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
@media screen and (min-width: 992px) {
  .blog .row .blog-article.single .article ul.tags {
    padding-right: 50px;
  }
}
.blog .row .blog-article.single .article ul.tags li {
  display: block;
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  padding: 10px 20px;
  margin-right: 10px;
  margin-top: 10px;
  background: #6fe0a4;
  color: #fff;
}
.blog .row .blog-article.single .article ul.tags li:first-child {
  font-size: 14px;
  color: #717171;
  padding-left: 0;
  background: none;
}
.blog .row .blog-article.single .article .comments .comment {
  border: 1px solid #f5f5f5;
  padding: 20px;
  margin-top: 30px;
}
.blog .row .blog-article.single .article .comments .comment img {
  display: block;
  float: left;
  padding: 0 20px 0 0;
}
.blog .row .blog-article.single .article .comments .comment .info {
  display: block;
  padding-bottom: 10px;
}
.blog .row .blog-article.single .article .comments .comment .info .name {
  display: block;
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #808080;
  line-height: 16px;
}
.blog .row .blog-article.single .article .comments .comment .info .date {
  display: block;
  float: right;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #808080;
}
.blog .row .blog-article.single .article .comments .comment .message {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #bbbbbb;
  line-height: 14px;
}
.blog .row .blog-article.single .article .contact-form h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #808080;
}
.blog .row .blog-article.single .article .contact-form form .form-group .form-control:focus,
.blog .row .blog-article.single .article .contact-form form .form-group .form-control:hover {
  border-color: #4eb25c;
  -webkit-box-shadow: 0 0 5px rgba(78, 178, 92, 0.5);
  box-shadow: 0 0 5px rgba(78, 178, 92, 0.5);
}
.blog .row .blog-article.single .article .contact-form form .form-group textarea,
.blog .row .blog-article.single .article .contact-form form .form-group input {
  border-radius: 1px;
}
.blog .row .blog-sidebar {
  background: #fcfcfc;
  border: 1px solid #f0f0f0;
  padding: 50px 15px;
}
@media screen and (min-width: 1200px) {
  .blog .row .blog-sidebar {
    padding: 50px;
  }
}
.blog .row .blog-sidebar .search-widget {
  position: relative;
  height: 46px;
  width: 100%;
  border-bottom: 2px solid #f2f2f2;
  overflow: hidden;
}
.blog .row .blog-sidebar .search-widget form.search {
  position: relative;
  width: 100%;
  border-radius: 0;
  height: 46px;
  overflow: hidden;
  padding-right: 46px;
}
.blog .row .blog-sidebar .search-widget form.search input[type="text"] {
  position: relative;
  border: none;
  background: none;
  width: 100%;
  color: #a3a3a3;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  padding: 12px 5px 12px 10px;
}
.blog .row .blog-sidebar .search-widget form.search input[type="text"]:focus {
  outline: none;
}
.blog .row .blog-sidebar .search-widget form.search button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: #f2f2f2;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-sidebar .search-widget form.search button[type="submit"] i {
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #7fcff7;
  border-radius: 50%;
  color: #7fcff7;
  font-size: 13px;
  line-height: 24px;
  margin: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-sidebar .search-widget form.search button[type="submit"]:hover i {
  color: #676767;
  border-color: #676767;
}
.blog .row .blog-sidebar .search-widget form.search button[type="submit"]:focus {
  outline: none;
}
.blog .row .blog-sidebar .categories .heading {
  margin-top: 55px;
}
.blog .row .blog-sidebar .categories .heading i {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 22px;
  color: #43d788;
  border: 1px solid #43d788;
  border-radius: 50%;
  margin-right: 15px;
  float: left;
}
.blog .row .blog-sidebar .categories .heading h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #676767;
  margin: 0;
  text-transform: uppercase;
}
.blog .row .blog-sidebar .categories ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 15px 0 0 0;
}
.blog .row .blog-sidebar .categories ul li {
  border-bottom: 1px solid #f2f2f2;
}
.blog .row .blog-sidebar .categories ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  margin-top: 10px;
}
.blog .row .blog-sidebar .categories ul li a span.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #a3a3a3;
  line-height: 34px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-sidebar .categories ul li a span.value {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #a3a3a3;
  line-height: 34px;
  float: right;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blog .row .blog-sidebar .categories ul li a:hover span.value,
.blog .row .blog-sidebar .categories ul li a:hover span.name {
  color: #4eb25c;
}
.blog .row .blog-sidebar .featured-posts .heading {
  margin-top: 55px;
}
.blog .row .blog-sidebar .featured-posts .heading i {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 22px;
  color: #43d788;
  border: 1px solid #43d788;
  border-radius: 50%;
  margin-right: 15px;
  float: left;
}
.blog .row .blog-sidebar .featured-posts .heading h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #676767;
  margin: 0;
  text-transform: uppercase;
}
.blog .row .blog-sidebar .featured-posts ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.blog .row .blog-sidebar .featured-posts ul li {
  border-bottom: 1px solid #f2f2f2;
  padding: 25px 0 15px 0;
}
.blog .row .blog-sidebar .featured-posts ul li img {
  float: left;
  padding-right: 10px;
}
.blog .row .blog-sidebar .featured-posts ul li span.title {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #7b7b7b;
}
.blog .row .blog-sidebar .featured-posts ul li span.date {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 10px;
  line-height: 20px;
  color: #a3a3a3;
  margin-bottom: 10px;
}
.blog .row .blog-sidebar .about .heading {
  margin-top: 55px;
}
.blog .row .blog-sidebar .about .heading i {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 22px;
  color: #43d788;
  border: 1px solid #43d788;
  border-radius: 50%;
  margin-right: 15px;
  float: left;
}
.blog .row .blog-sidebar .about .heading h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #676767;
  margin: 0;
  text-transform: uppercase;
}
.blog .row .blog-sidebar .about .content {
  margin-top: 20px;
}
.blog .row .blog-sidebar .about .content .autor {
  float: right;
  width: 80px;
  text-align: center;
  margin-left: 5px;
}
.blog .row .blog-sidebar .about .content .autor img {
  margin: 0 auto;
}
.blog .row .blog-sidebar .about .content .autor span.name {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #a3a3a3;
  margin-top: 6px;
}
.blog .row .blog-sidebar .about .content .autor span.function {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 9px;
  line-height: 12px;
  color: #43d788;
}
.blog .row .blog-sidebar .about .content .autor .rating {
  position: relative;
  display: block;
  white-space: nowrap;
  margin: 0 auto;
  text-align: center;
}
.blog .row .blog-sidebar .about .content .autor .rating i {
  display: block;
  float: left;
  font-size: 15px;
  color: #ffc80b;
  width: 14px;
  margin-top: 10px;
}
.blog .row .blog-sidebar .about .content p {
  overflow: hidden;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #a3a3a3;
  margin-top: 5px;
}
.blog .row .blog-sidebar .about .content p a {
  text-decoration: none;
  color: #43d788;
  white-space: nowrap;
}
/*====== Contact ======*/
.contact .contact-form form .form-group .form-control {
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.contact .contact-form form .form-group .form-control::-moz-placeholder {
  color: #676767;
}
.contact .contact-form form .form-group .form-control:-moz-placeholder {
  color: #676767;
}
.contact .contact-form form .form-group .form-control:-ms-input-placeholder {
  color: #676767;
}
.contact .contact-form form .form-group .form-control::-webkit-input-placeholder {
  color: #676767;
}
.contact .contact-form form .form-group .form-control:focus {
  border-color: #cccccc;
  -webkit-box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
}
.contact .contact-form form .form-group .form-control:hover {
  border-color: #cccccc;
  -webkit-box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
}
.contact .contact-form form .form-group textarea,
.contact .contact-form form .form-group input {
  border-radius: 1px;
  border-color: #efefef;
  background: #f8f8f8;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  color: #676767;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
}
.contact .contact-form form button {
  border: 1px solid #efefef;
  border-radius: 1px;
  background: #f8f8f8;
  color: #676767;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
}
.contact .contact-form form button:hover {
  border-color: #cccccc;
  -webkit-box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
}
@media screen and (max-width: 767px) {
  .contact .content {
    margin-top: 50px;
  }
}
.contact .content h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 18px;
  color: #676767;
  margin: 0;
}
.contact .content p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #a3a3a3;
  margin-top: 20px;
  margin-bottom: 0;
}
.contact .content .adress {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #a3a3a3;
  border-bottom: 1px solid #e0e0e0;
  margin-top: 15px;
}
.contact .content .adress span.title {
  color: #6a6a6a;
}
.contact .content .phone {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #a3a3a3;
  border-bottom: 1px solid #e0e0e0;
  margin-top: 15px;
}
.contact .content .phone span.title {
  color: #6a6a6a;
}
/*======= Heading category =======*/
.heading-category h3 {
  font-family: 'Lato';
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  color: #676767;
}
.heading-category p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  margin: 20px auto 0;
  text-align: center;
  color: #a3a3a3;
  clear: both;
}
@media only screen and (min-width: 992px) {
  .heading-category p {
    max-width: 900px;
  }
}
.heading-category p span.colored {
  color: #4eb25c;
}
/*======= Footer =======*/
.footer {
  position: relative;
  background: #f8f8f8;
  bottom: 0;
  margin-top: 0;
  -webkit-backface-visibility: hidden;
  border-top: 1px solid #eeeeee;
  padding-bottom: 40px;
}
.footer .container .contact {
  margin-top: 40px;
}
.footer .container .contact h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}
.footer .container .contact p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  line-height: 18px;
  font-size: 13px;
}
.footer .container .contact ul {
  padding: 0;
  list-style: none;
}
.footer .container .contact ul li {
  margin-top: 25px;
  border-bottom: 1px solid #ededed;
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 13px;
  line-height: 20px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.footer .container .contact ul li span.heading {
  font-family: 'Lato';
  font-weight: 400;
  color: #6a6a6a;
  margin-bottom: 5px;
}
.footer .container .contact ul li:last-child {
  border-bottom: none;
}
.footer .container .contact ul li:hover {
  color: #4eb25c;
}
.footer .container .contact .social-media ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}
.footer .container .contact .social-media ul li {
  display: inline-block;
  margin: 5px 5px 0 0;
}
.footer .container .contact .social-media ul li a {
  display: block;
  text-decoration: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #bbbbbb;
  outline: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.footer .container .contact .social-media ul li a i {
  display: block;
  line-height: 20px;
  font-size: 10px;
  color: #fff;
  height: 20px;
  width: 20px;
  margin: 0;
  text-align: center;
  padding: 0;
}
.footer .container .contact .social-media ul li a:hover {
  background: #676767;
}
.footer .container .latest-works {
  margin-top: 40px;
}
@media only screen and (min-width: 992px) {
  .footer .container .latest-works {
    padding-left: 80px;
  }
}
.footer .container .latest-works h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}
.footer .container .latest-works ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
}
.footer .container .latest-works ul li {
  margin-top: 23px;
}
.footer .container .latest-works ul li a {
  text-decoration: none;
}
.footer .container .latest-works ul li a i {
  display: block;
  width: 28px;
  height: 25px;
  background: #4eb25c;
  font-size: 13px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  margin-right: 10px;
  float: left;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.footer .container .latest-works ul li a span.title {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  color: #a3a3a3;
  margin-bottom: -3px;
}
.footer .container .latest-works ul li a span.date {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 10px;
  line-height: 10px;
  color: #a3a3a3;
}
.footer .container .latest-works ul li a:hover i {
  background: #3e8f49;
}
.footer .container .tag-cloud {
  margin-top: 40px;
}
@media only screen and (min-width: 992px) {
  .footer .container .tag-cloud {
    padding-right: 50px;
  }
}
.footer .container .tag-cloud h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}
.footer .container .tag-cloud p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  line-height: 18px;
  font-size: 13px;
}
.footer .container .tag-cloud ul {
  padding: 0;
  margin: 0;
  margin-top: 20px;
  list-style: none;
  list-style-type: none;
}
.footer .container .tag-cloud ul li {
  float: left;
}
.footer .container .tag-cloud ul li a {
  text-transform: uppercase;
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  text-decoration: none;
  color: #fff;
  background: #cdcdcd;
  padding: 5px;
  margin: 0 3px 3px 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.footer .container .tag-cloud ul li a:hover {
  background: #4eb25c;
}
.footer .container .about-footer {
  margin-top: 40px;
}
.footer .container .about-footer .about-footer-container h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}
.footer .container .about-footer .about-footer-container p {
  font-family: 'Lato';
  font-weight: 400;
  line-height: 20px;
  font-size: 13px;
  color: #a3a3a3;
  margin-top: 20px;
}
.footer .container .about-footer .about-footer-container p span.highlight {
  color: #6a6a6a;
}
.footer .container .about-footer .about-footer-container img {
  margin-top: 10px;
  padding-left: 10px;
}
@media only screen and (min-width: 768px) {
  .footer .container .about-footer .about-footer-container img {
    float: right;
  }
}
.footer .container .about-footer .about-footer-container .services p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #a3a3a3;
  margin-top: 15px;
}
.footer .container .about-footer .about-footer-container .services p span.title {
  color: #6a6a6a;
}
.footer .container .about-footer .about-footer-container .services p a {
  text-decoration: none;
  color: #4eb25c;
}
.footer .container .about-footer .about-footer-container .services p a:hover {
  color: #676767;
}
