@import "../css/fonts.css";
@import url(https://fonts.googleapis.com/css?family=Allerta);
@import "../css/fontello.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 .6s;
  animation: fadeDown .6s;
}

.fadeDown.delay-2 {
  -webkit-animation: fadeDown .9s;
  animation: fadeDown .9s;
}

.fadeDown.delay-3 {
  -webkit-animation: fadeDown 1.2s;
  animation: fadeDown 1.2s;
}

.fadeDown.delay-4 {
  -webkit-animation: fadeDown 1.5s;
  animation: fadeDown 1.5s;
}

@-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;
  }

  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;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

/*===== Info Bar =====*/
.info-bar {
  position: relative;
  width: 100%;
  z-index: 20001;
  background: #fff;
}

.info-bar .container {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 12px;
  line-height: 32px;
}

.info-bar .container .info-adress {
  color: #a3a3a3;
  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;
}

.info-bar .container .info-adress i {
  line-height: 32px;
  font-size: 12px;
  color: #45555f;
}

.info-bar .container .info-adress:hover {
  color: #4cc3e9;
}

.info-bar .container .social-media ul {
  float: none;
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

.info-bar .container .social-media ul li {
  display: inline-block;
  margin-left: 4px;
}

.info-bar .container .social-media ul li a {
  display: block;
  text-decoration: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 6px;
  background: #45555f;
  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;
}

.info-bar .container .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;
}

.info-bar .container .social-media ul li a:hover {
  background: #4cc3e9;
}

/*======= Navigation =======*/
.nav-container {
  width: 100%;
  position: relative;
  background: #2F3238;
  z-index: 20001;
}

.nav-container nav.navbar {
  background: #2F3238;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
}

.nav-container nav.navbar .navbar-header a.navbar-brand {
  padding: 0;
  margin: 0;
  text-decoration: none;
  font-family: 'Allerta', sans-serif;
  /*font-family: 'Lato';*/
  font-weight: 700;
  font-size: 25px;
  line-height: 60px;
  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;
}

.nav-container nav.navbar .navbar-header a.navbar-brand:hover {
  color: #f1f1f1;
}

@media only screen and (max-width: 991px) {
  .nav-container nav.navbar .navbar-header a.navbar-brand {
    line-height: 50px;
    padding-left: 15px;
  }
}

.nav-container nav.navbar .navbar-header button {
  border-color: #dddddd;
  background-color: #fff;
  margin-top: 8px;
  margin-bottom: 7px;
  -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: #45555f;
  height: 3px;
}

.nav-container nav.navbar .navbar-header button:hover {
  border-color: #45555f;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li {
  overflow: visible;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li.chromebugfix {
  display: inline-block;
  width: 4px;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li>a {
  font-family: 'Lato';
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  padding: 20px 0 20px 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;
  text-transform: uppercase;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li>a i {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li>a i.icon-front {
  display: none;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li>a.selected {
  color: #DE5E60;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li>a.selected i {
  color: #DE5E60;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li>a:hover {
  color: #fff;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li>a:hover i {
  color: #fff;
}

@media only screen and (min-width: 992px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav>li>a {
    padding: 20px 20px 20px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav>li>a {
    margin-bottom: 0;
    padding: 0 15px;
  }
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li:last-child>a {
  padding-right: 0;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 {
  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 1s linear;
  -moz-transition: all 1s linear;
  -ms-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.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 .navbar-nav>li .submenu-1 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 .navbar-nav>li .submenu-1 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 .navbar-nav>li .submenu-1 li a i.more {
  padding-right: 0;
  padding-left: 5px;
  color: #a3a3a3;
  float: right;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li a:hover {
  background: #fafafa;
  color: #45555f;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li a:hover i {
  color: #4cc3e9;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li:first-child a {
  border-top: none;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2 {
  position: absolute;
  display: none;
  list-style: none;
  list-style-type: none;
  padding: 0;
  border: 1px solid #f1f1f1;
  border-left: none;
  border-top: none;
  box-shadow: none;
  left: 100%;
  margin-left: -1px;
  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 .navbar-nav>li .submenu-1 li .submenu-2.left {
  left: 0;
  margin-left: -160px;
  border: 1px solid #f1f1f1;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2.left li {
  padding-left: 0;
  -webkit-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2.submenu-3 {
  display: none;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2 li {
  width: 100%;
  background: #fff;
  padding-left: 1px;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2 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-box-shadow: inset 1px 0 0 0 #f1f1f1;
  box-shadow: inset 1px 0 0 0 #f1f1f1;
  -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 .navbar-nav>li .submenu-1 li .submenu-2 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 .navbar-nav>li .submenu-1 li .submenu-2 li a:hover {
  background: #fafafa;
  color: #45555f;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2 li a:hover i {
  color: #4cc3e9;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2 li a:hover .submenu-3 {
  display: block;
}

@media only screen and (max-width: 991px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2 {
    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 .navbar-nav>li .submenu-1 li .submenu-2.left {
    left: 0;
    margin-left: 0;
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2 li {
    width: 100%;
    animation-name: none;
    -webkit-animation-name: none;
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2 li a {
    display: block;
    font-size: 12px;
    padding: 5px 15px;
    border-bottom: none;
    background: #fff;
    color: #45555f;
  }
}

@media only screen and (max-width: 991px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2.submenu-3 {
    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 .navbar-nav>li .submenu-1 li .submenu-2.submenu-3.left {
    left: 0;
    margin-left: 0;
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2.submenu-3 li {
    width: 100%;
    animation-name: none;
    -webkit-animation-name: none;
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li .submenu-2.submenu-3 li a {
    display: block;
    font-size: 12px;
    padding: 5px 15px;
    border-bottom: none;
    background: #fff;
    color: #45555f;
  }
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li:hover>.submenu-2 {
  display: block;
}

@media only screen and (max-width: 991px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 {
    position: relative;
    display: block;
    padding-top: 0;
    border: none;
    box-shadow: none;
    left: 0;
    margin-left: 0;
    animation-name: none;
    -webkit-animation-name: none;
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li {
    width: 100%;
    animation-name: none;
    -webkit-animation-name: none;
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li a {
    display: block;
    font-size: 12px;
    padding: 5px 15px;
    border-bottom: none;
    background: #fff;
    color: #45555f;
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li a:hover {
    padding-left: 15px;
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li a:before {
    content: "-";
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1 li a i {
    display: none;
  }
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big {
  left: 40px;
  width: 742px;
}

@media only screen and (min-width: 992px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big {
    left: 80px;
    width: 742px;
  }
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big li ul.big-list {
  list-style: none;
  list-style-type: none;
  padding: 0;
  display: block;
  float: left;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big li ul.big-list.first {
  padding: 0;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big li ul.big-list li a {
  border: none;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big li ul.big-list li a:hover {
  background: #fff;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big li ul.big-list li a span.colored {
  color: #4cc3e9;
}

@media screen and (max-width: 991px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big {
    left: 0;
    width: auto;
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big li ul.big-list {
    float: none;
    padding-left: 0;
  }
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big.big-2 {
  left: -45px;
  width: 767px;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big.big-2 {
    width: 960px;
    left: -195px;
  }
}

@media screen and (max-width: 991px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big.big-2 {
    left: 0;
    width: auto;
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li .submenu-1.submenu-big.big-2 li ul.big-list {
    float: none;
    padding-left: 0;
  }
}

.nav-container nav.navbar .navbar-collapse .navbar-nav>li:hover .submenu-1 {
  display: block;
}

/* --- Header 3 and 4 with front circled Icons--- */
.nav-container nav.navbar .navbar-collapse .navbar-nav {
  /* ==== Header 3 front icons ==== */

}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul {
  padding-right: 0;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
}

@media screen and (min-width: 1200px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a i {
  color: #a3a3a3;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a i.icon-front {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 10px;
  line-height: 18px;
  color: #4cc3e9;
  border-radius: 50%;
  border: 1px solid #4cc3e9;
  margin-right: 3px;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a i.icon-front.purple {
  color: #a085c6;
  border-color: #a085c6;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a i.icon-front.orange {
  color: #ff6b24;
  border-color: #ff6b24;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a i.icon-front.green {
  color: #83c129;
  border-color: #83c129;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a i.icon-front.redish {
  color: #c71c77;
  border-color: #c71c77;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a i.icon-front.yellow {
  color: #ffda3a;
  border-color: #ffda3a;
}

@media screen and (max-width: 1199px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a i.icon-front {
    display: none;
  }
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a:hover {
  color: #676767;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a:hover i {
  color: #676767;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a:hover i.icon-front {
  color: #4cc3e9;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a:hover i.icon-front.purple {
  color: #a085c6;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a:hover i.icon-front.orange {
  color: #ff6b24;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a:hover i.icon-front.green {
  color: #83c129;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a:hover i.icon-front.redish {
  color: #c71c77;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a:hover i.icon-front.yellow {
  color: #ffda3a;
}

@media screen and (max-width: 1199px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a:hover i.icon-front {
    display: none;
  }
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a.selected {
  color: #676767;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a.selected i {
  color: #676767;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a.selected i.icon-front {
  color: #4cc3e9;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a.selected i.icon-front.purple {
  color: #a085c6;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a.selected i.icon-front.orange {
  color: #ff6b24;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a.selected i.icon-front.green {
  color: #83c129;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a.selected i.icon-front.redish {
  color: #c71c77;
}

.nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a.selected i.icon-front.yellow {
  color: #ffda3a;
}

@media screen and (max-width: 1199px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li a.selected i.icon-front {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li:last-child a {
    margin-right: -28px;
  }
}

@media screen and (min-width: 1200px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav.icon-front-ul>li:last-child a {
    padding-right: 0;
  }
}

/*======= 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 =======*/
/*======= Others mixins =======*/
.lnone {
  list-style: none;
  list-style-type: none;
}

/*===== Style switcher =====*/
#style-switcher-container {
  position: fixed;
  width: 150px;
  height: 120px;
  z-index: 15000;
  left: -120px;
  top: 0;
  padding: 0;
  margin-top: 94px;
  background: none;
}

#style-switcher-container #style-switcher {
  display: block;
  position: relative;
  list-style: none;
  list-style-type: none;
  width: 120px;
  height: 120px;
  background: #45555f;
  padding: 10px;
  margin: 0;
  float: left;
  border-bottom-right-radius: 3px;
}

#style-switcher-container #style-switcher li {
  display: inline-block;
}

#style-switcher-container #style-switcher li a {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 3px;
}

#style-switcher-container #style-switcher li a.button-switcher {
  width: 100px;
  height: 25px;
  background: #667d8c;
  text-decoration: none;
  line-height: 25px;
  text-align: center;
  font-size: 12px;
  font-family: 'Lato';
  font-weight: 400;
  color: #fff;
  margin-top: 5px;
}

#style-switcher-container .switcher-toggle {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  background: #45555f;
  margin-left: 120px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

#style-switcher-container .switcher-toggle i {
  color: #4cc3e9;
  font-size: 20px;
  line-height: 30px;
  width: 30px;
  cursor: pointer;
}

/*======= Footer 1 and 3 =======*/
.footer-1 {
  position: relative;
  background: #2F3238;
  bottom: 0;
  margin-top: 0;
  -webkit-backface-visibility: hidden;
}

.footer-1 .container .contact {
  margin-top: 40px;
}

.footer-1 .container .contact h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-1 .container .contact p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  line-height: 18px;
  font-size: 13px;
}

.footer-1 .container .contact ul {
  padding: 0;
  list-style: none;
}

.footer-1 .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-1 .container .contact ul li span.heading {
  font-family: 'Lato';
  font-weight: 400;
  color: #6a6a6a;
  margin-bottom: 5px;
}

.footer-1 .container .contact ul li:last-child {
  border-bottom: none;
}

.footer-1 .container .contact ul li:hover {
  color: #4cc3e9;
}

.footer-1 .container .contact .social-media ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

.footer-1 .container .contact .social-media ul li {
  display: inline-block;
  margin: 5px 5px 0 0;
}

.footer-1 .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-1 .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-1 .container .contact .social-media ul li a:hover {
  background: #45555f;
}

.footer-1 .container .latest-works {
  margin-top: 40px;
}

@media only screen and (min-width: 992px) {
  .footer-1 .container .latest-works {
    padding-left: 80px;
  }
}

.footer-1 .container .latest-works h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-1 .container .latest-works ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
}

.footer-1 .container .latest-works ul li {
  margin-top: 23px;
}

.footer-1 .container .latest-works ul li a {
  text-decoration: none;
}

.footer-1 .container .latest-works ul li a i {
  display: block;
  width: 28px;
  height: 25px;
  background: #4cc3e9;
  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-1 .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-1 .container .latest-works ul li a span.date {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 10px;
  line-height: 10px;
  color: #a3a3a3;
}

.footer-1 .container .latest-works ul li a:hover i {
  background: #1fb4e3;
}

.footer-1 .container .tag-cloud {
  margin-top: 40px;
}

@media only screen and (min-width: 992px) {
  .footer-1 .container .tag-cloud {
    padding-right: 50px;
  }
}

.footer-1 .container .tag-cloud h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-1 .container .tag-cloud p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  line-height: 18px;
  font-size: 13px;
}

.footer-1 .container .tag-cloud ul {
  padding: 0;
  margin: 0;
  margin-top: 20px;
  list-style: none;
  list-style-type: none;
}

.footer-1 .container .tag-cloud ul li {
  float: left;
}

.footer-1 .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-1 .container .tag-cloud ul li a:hover {
  background: #4cc3e9;
}

.footer-1 .container .about-footer {
  margin-top: 0px;
}

.footer-1 .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-1 .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-1 .container .about-footer .about-footer-container p span.highlight {
  color: #6a6a6a;
}

.footer-1 .container .about-footer .about-footer-container img {
  margin-top: 10px;
  padding-left: 10px;
  border-radius: 50%;
}

@media only screen and (min-width: 768px) {
  .footer-1 .container .about-footer .about-footer-container img {
    float: right;
  }
}

.footer-1 .container .about-footer .about-footer-container .services p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #a3a3a3;
  margin-top: 15px;
}

.footer-1 .container .about-footer .about-footer-container .services p span.title {
  color: #6a6a6a;
}

.footer-1 .container .about-footer .about-footer-container .services p a {
  text-decoration: none;
  color: #4cc3e9;
}

.footer-1 .container .about-footer .about-footer-container .services p a:hover {
  color: #45555f;
}

.footer-1.footer-3 .container .flicker {
  margin-top: 40px;
}

.footer-1.footer-3 .container .flicker h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-1.footer-3 .container .flicker p {
  font-family: 'Lato';
  font-weight: 400;
  line-height: 20px;
  font-size: 13px;
  color: #a3a3a3;
  margin-top: 20px;
  max-width: 250px;
}

.footer-1.footer-3 .container .flicker ul {
  padding: 0;
  list-style-type: none;
  list-style: none;
  margin: 0;
  margin-left: -3px;
  max-width: 225px;
}

.footer-1.footer-3 .container .flicker ul li {
  float: left;
  margin: 3px;
}

.footer-1.footer-3 .container .flicker ul li a {
  text-decoration: none;
}

.footer-1.footer-3 .container .about-footer {
  margin-top: 40px;
}

.footer-1.footer-3 .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-1.footer-3 .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-1.footer-3 .container .about-footer .about-footer-container p span.highlight {
  color: #6a6a6a;
}

.footer-1.footer-3 .container .about-footer .about-footer-container img {
  margin-top: 5px;
  padding-left: 0;
  padding-right: 20px;
  border-radius: 0;
  float: left !important;
}

.footer-1.footer-3 .container .about-footer .about-footer-container .services {
  padding-top: 0;
}

.footer-1.footer-3 .container .about-footer .about-footer-container .services p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #a3a3a3;
  margin-top: 0;
  margin-bottom: 10px;
}

.footer-1.footer-3 .container .about-footer .about-footer-container .services p span.title {
  color: #6a6a6a;
}

.footer-1.footer-3 .container .about-footer .about-footer-container .services p a {
  text-decoration: none;
  color: #4cc3e9;
}

.footer-1.footer-3 .container .about-footer .about-footer-container .services p a:hover {
  color: #45555f;
}

/*======= Footer 2 =======*/
.footer-2 {
  position: relative;
  background: #f8f8f8;
  bottom: 0;
  margin-top: 0;
  -webkit-backface-visibility: hidden;
  border-top: 1px solid #eeeeee;
}

.footer-2 .container .contact {
  margin-top: 40px;
}

.footer-2 .container .contact h5 {
  font-family: 'Lato';
  font-weight: 400;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-2 .container .contact p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  line-height: 18px;
  font-size: 12px;
}

.footer-2 .container .contact ul {
  padding: 0;
  list-style: none;
  padding-top: 20px;
}

.footer-2 .container .contact ul li {
  margin-bottom: 5px;
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 12px;
  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-2 .container .contact ul li i {
  display: block;
  float: left;
  color: #828282;
  font-size: 16px;
  line-height: 20px;
  padding-right: 3px;
  -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-2 .container .contact ul li:hover {
  color: #4cc3e9;
}

.footer-2 .container .contact ul li:hover i {
  color: #4cc3e9;
}

.footer-2 .container .blog-news {
  margin-top: 40px;
}

.footer-2 .container .blog-news h5 {
  font-family: 'Lato';
  font-weight: 400;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-2 .container .blog-news .post-blog-1 {
  margin-bottom: 20px;
}

.footer-2 .container .blog-news .post-blog-1 a {
  outline: none;
}

.footer-2 .container .blog-news .post-blog-1 a img {
  margin-top: 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;
}

.footer-2 .container .blog-news .post-blog-1 a img:hover {
  opacity: 0.7;
}

.footer-2 .container .blog-news .post-blog-1 p {
  font-family: 'Lato';
  font-weight: 400;
  line-height: 18px;
  font-size: 12px;
  color: #a3a3a3;
}

.footer-2 .container .blog-news .post-blog-1 p a {
  margin-left: 10px;
  text-decoration: none;
  color: #828282;
  font-size: 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;
}

.footer-2 .container .blog-news .post-blog-1 p a:hover {
  color: #4cc3e9;
}

.footer-2 .container .flicker {
  margin-top: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

.footer-2 .container .flicker h5 {
  font-family: 'Lato';
  font-weight: 400;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-2 .container .flicker ul {
  padding: 0;
  list-style-type: none;
  list-style: none;
  margin-left: -3px;
  margin: 0;
  padding-top: 2px;
}

.footer-2 .container .flicker ul li {
  float: left;
  margin: 3px;
}

.footer-2 .container .flicker ul li a {
  text-decoration: none;
}

.footer-2 .container .about-footer {
  margin-top: 40px;
}

.footer-2 .container .about-footer .about-footer-container h5 {
  font-family: 'Lato';
  font-weight: 400;
  color: #6a6a6a;
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-2 .container .about-footer .about-footer-container a {
  outline: none;
  margin-top: 5px;
  margin-right: 15px;
  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;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-2 .container .about-footer .about-footer-container a {
    float: none;
  }
}

.footer-2 .container .about-footer .about-footer-container a:hover {
  opacity: 0.7;
}

.footer-2 .container .about-footer .about-footer-container p {
  font-family: 'Lato';
  font-weight: 400;
  line-height: 18px;
  font-size: 12px;
  color: #a3a3a3;
}

.footer-2 .container .about-footer .about-footer-container p.second {
  margin-top: 10px;
}

.footer-2 .footer-bottom {
  background: #f8f8f8;
  margin-top: 15px;
  padding: 13px 0;
}

.footer-2 .footer-bottom .container .border {
  display: block;
  height: 1px;
  background: #eeeeee;
  margin-bottom: 15px;
}

.footer-2 .footer-bottom .container p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #a3a3a3;
  line-height: 24px;
  margin-bottom: 0;
  margin-top: 0;
  float: left;
}

.footer-2 .footer-bottom .container .social-media ul {
  float: none;
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

.footer-2 .footer-bottom .container .social-media ul li {
  display: inline-block;
  margin-left: 4px;
}

.footer-2 .footer-bottom .container .social-media ul li a {
  display: block;
  text-decoration: none;
  width: 24px;
  height: 24px;
  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-2 .footer-bottom .container .social-media ul li a i {
  display: block;
  line-height: 24px;
  font-size: 12px;
  color: #fff;
  height: 24px;
  width: 24px;
  margin: 0;
  text-align: center;
}

.footer-2 .footer-bottom .container .social-media ul li a:hover {
  background: #45555f;
}

/*======= Page Header 1 =======*/
.page-header-1 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 50px;
  display: block;
  width: 100%;
  background: #f8f8f8;
  border-bottom: 1px solid #eeeeee;
}

.page-header-1 h1 {
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
  font-size: 36px;
  line-height: 36px;
  margin-top: 50px;
}

@media only screen and (max-width: 550px) {
  .page-header-1 h1 {
    font-size: 36px;
    line-height: 40px;
  }
}

.page-header-1 ul.breadcrumbs-custom {
  background: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
}

.page-header-1 ul.breadcrumbs-custom li {
  display: inline-block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #a3a3a3;
  cursor: default;
}

.page-header-1 ul.breadcrumbs-custom li a {
  text-decoration: none;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  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;
}

.page-header-1 ul.breadcrumbs-custom li a:hover {
  color: #4cc3e9;
}

.page-header-1 ul.breadcrumbs-custom li i {
  font-size: 13px;
  line-height: 16px;
  color: #4cc3e9;
  text-shadow: none;
}

/*======= Page Header 2 =======*/
.page-header-2 {
  margin-top: 0;
  margin-bottom: 0;
  padding: 40px 0;
  display: block;
  width: 100%;
  background: #f5f6f8;
  border-bottom: 1px solid #eeeeee;
}

.page-header-2 h3 {
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
  font-size: 22px;
  line-height: 22px;
  margin-top: 0;
  margin-bottom: 0;
  float: left;
}

.page-header-2 ul.breadcrumbs-custom {
  background: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  float: right;
  list-style: none;
  list-style-type: none;
}

.page-header-2 ul.breadcrumbs-custom li {
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color: #a3a3a3;
  cursor: default;
  letter-spacing: .1px;
  padding-left: 1px;
}

.page-header-2 ul.breadcrumbs-custom li a {
  text-decoration: none;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 20px;
  color: #a3a3a3;
  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-2 ul.breadcrumbs-custom li a:hover {
  color: #4cc3e9;
}

.simple-slider .carousel-control {
  width: 100px;
  text-shadow: none;
  filter: alpha(opacity=100);
  opacity: 1;
  background-image: none !important;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false) !important;
}

.simple-slider .carousel-control.left span {
  left: 0;
  margin-left: 0;
}

.simple-slider .carousel-control.right span {
  right: 0;
  margin-right: 0;
}

.simple-slider .carousel-control:hover span {
  background: #4cc3e9;
}

.simple-slider .carousel-control .glyphicon {
  width: 25px;
  height: 50px;
  font-size: 15px;
  line-height: 50px;
  color: #fff;
  background: #7d7d7d;
  margin-top: -25px;
  -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 model 1 =======*/
.boxes-1 .row .media {
  display: inline-block;
  margin-top: 100px;
}

.boxes-1 .row .media .boxes-icon {
  width: 70px;
  height: 70px;
  margin-top: 10px;
  margin-right: 25px;
  -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-1 .row .media div.media-body h4.media-heading {
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
  margin-bottom: 14px;
}

.boxes-1 .row .media div.media-body p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 15px;
  line-height: 20px;
  overflow: hidden;
  margin-bottom: 0;
}

.boxes-1 .row .media:hover .boxes-icon {
  animation-name: scaleInOut;
  -webkit-animation-name: scaleInOut;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

/*======= Boxes model 2 =======*/
.boxes-2 .row .media {
  display: block;
  margin-top: 50px;
}

.boxes-2 .row .media .boxes-icon {
  display: block;
  width: 67px;
  height: 67px;
  background: #4cc3e9;
  border-radius: 50%;
  text-align: center;
  float: left;
  margin-right: 20px;
  margin-top: 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;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .boxes-2 .row .media .boxes-icon {
    float: none;
    margin-bottom: 20px;
    margin-left: 20px;
  }
}

.boxes-2 .row .media .boxes-icon i {
  font-size: 25px;
  line-height: 67px;
  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-2 .row .media .media-body h4.media-heading {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 18px;
  color: #45555f;
  margin-bottom: 0;
}

.boxes-2 .row .media .media-body p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 10px;
}

.boxes-2 .row .media:hover .boxes-icon {
  background: #fff;
  -webkit-box-shadow: inset 0 0 0 2px #4cc3e9;
  -moz-box-shadow: inset 0 0 0 2px #4cc3e9;
  box-shadow: inset 0 0 0 2px #4cc3e9;
}

.boxes-2 .row .media:hover .boxes-icon i {
  color: #4cc3e9;
}

/*======= Boxes model 3 =======*/
.boxes-3 .service {
  margin-top: 50px;
}

.boxes-3 .service i {
  display: block;
  width: 30px;
  font-size: 30px;
  color: #4cc3e9;
  float: left;
  margin-right: 20px;
  line-height: 30px;
}

.boxes-3 .service h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: #45555f;
  margin: 0;
}

.boxes-3 .service p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #a3a3a3;
  margin-left: 50px;
  margin-top: 10px;
}

/*======= Boxes model 4 =======*/
.boxes-4 .row .media {
  display: block;
  margin-top: 50px;
  padding-left: 10px;
  padding-right: 10px;
}

.boxes-4 .row .media .boxes-icon {
  display: block;
  width: 53px;
  height: 53px;
  background: #4cc3e9;
  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-4 .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-4 .row .media .media-body h4.media-heading {
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
  margin-bottom: 14px;
  text-align: center;
}

.boxes-4 .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-4 .row .media:hover .boxes-icon {
  background: #fff;
  -webkit-box-shadow: inset 0 0 0 2px #4cc3e9;
  -moz-box-shadow: inset 0 0 0 2px #4cc3e9;
  box-shadow: inset 0 0 0 2px #4cc3e9;
}

.boxes-4 .row .media:hover .boxes-icon i {
  color: #4cc3e9;
}

/*======= Boxes model 5 =======*/
.boxes-5.BG {
  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;
  padding-top: 60px;
  padding-bottom: 110px;
}

.boxes-5 .row .media {
  display: inline-block;
  margin-top: 50px;
}

.boxes-5 .row .media .boxes-icon {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  border: 2px solid #4cc3e9;
  margin-right: 1.5em;
}

.boxes-5 .row .media .boxes-icon i {
  display: block;
  font-size: 45px;
  line-height: 73px;
  text-align: center;
  width: 73px;
  color: #4cc3e9;
}

.boxes-5 .row .media div.media-body h4.media-heading {
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
}

.boxes-5 .row .media div.media-body p {
  font-family: 'Lato';
  font-weight: 400;
  overflow: hidden;
  color: #a3a3a3;
  font-size: 16px;
  line-height: 20px;
}

/*======= Presentation 1 =======*/
.presentation-1.BG {
  width: 100%;
  background: #ffffff url(../img/elements/presentation-bg.jpg) center center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-background-attachment: fixed;
  -moz-background-attachment: fixed;
  -ms-background-attachment: fixed;
  -o-background-attachment: fixed;
  background-attachment: fixed;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 120px;
  padding-bottom: 60px;
}

.presentation-1 .post-media h3 {
  margin-top: 0;
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
}

.presentation-1 .post-media p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #a3a3a3;
  margin-top: 20px;
}

.presentation-1 .post-media .list ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  padding-bottom: 15px;
}

.presentation-1 .post-media .list ul li {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  height: 18px;
  color: #6a6a6a;
  margin-top: 20px;
}

.presentation-1 .post-media .list ul li i {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #4cc3e9;
  font-size: 8px;
  line-height: 16px;
  text-align: center;
  color: #4cc3e9;
  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;
}

.presentation-1 .post-media .list ul li:hover i {
  background: #4cc3e9;
  color: #fff;
}

.presentation-1 .post-media a {
  margin-top: 10px;
}

/*======= Presentation 2 =======*/
@media screen and (min-width: 1200px) {
  .presentation-2 .post-media {
    padding-left: 50px;
  }
}

.presentation-2 .post-media h3 {
  margin-top: 0;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 26px;
  color: #45555f;
  margin-bottom: 0;
  text-transform: uppercase;
}

@media screen and (max-width: 991px) {
  .presentation-2 .post-media h3 {
    margin-top: 30px;
  }
}

.presentation-2 .post-media p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  color: #afafaf;
  margin-top: 30px;
  margin-bottom: 0;
}

.presentation-2 .post-media a {
  display: inline-block;
  text-decoration: none;
  margin-top: 15px;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #4cc3e9;
  padding: 15px 30px;
  border: 1px solid #ededed;
  border-radius: 8px;
  background-image: -moz-linear-gradient(bottom, #f5f7f9, #fdfdfd);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #f5f7f9, #fdfdfd);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #f5f7f9, #fdfdfd);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #f5f7f9, #fdfdfd);
  /* gradient overlay */

  -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;
}

.presentation-2 .post-media a:hover {
  background-image: -moz-linear-gradient(bottom, #ebeff3, #f5f5f5);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #ebeff3, #f5f5f5);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #ebeff3, #f5f5f5);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #ebeff3, #f5f5f5);
  /* gradient overlay */

}

.presentation-2 .post-media a.clasic {
  margin-right: 5px;
}

.presentation-2 .post-media a.colored {
  border-color: #fff;
  color: #fff;
  background-image: -moz-linear-gradient(bottom, #4cc3e9, #5ac8eb);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #4cc3e9, #5ac8eb);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #4cc3e9, #5ac8eb);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #4cc3e9, #5ac8eb);
  /* gradient overlay */
}

.presentation-2 .post-media a.colored:hover {
  background-image: -moz-linear-gradient(bottom, #3ebee7, #31bae6);
  /* gradient overlay */

  background-image: -o-linear-gradient(bottom, #3ebee7, #31bae6);
  /* gradient overlay */

  background-image: -webkit-linear-gradient(bottom, #3ebee7, #31bae6);
  /* gradient overlay */

  background-image: linear-gradient(bottom, #3ebee7, #31bae6);
  /* gradient overlay */
}

/*======= Presentation 3 =======*/
.presentation-3 .img-post img {
  border-radius: 50%;
  -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;
}

.presentation-3 .img-post img:hover {
  -webkit-transform: scale(0.98);
  -moz-transform: scale(0.98);
  -ms-transform: scale(0.98);
  -o-transform: scale(0.98);
  -transform: scale(0.98);
}

.presentation-3 .post-media h2 {
  margin-top: 0;
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
}

@media only screen and (max-width: 1199px) and (min-width: 768px) {
  .presentation-3 .post-media h2 {
    margin-top: 0;
  }
}

.presentation-3 .post-media p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #a3a3a3;
  margin-top: 30px;
}

.presentation-3 .post-media .list ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  padding-bottom: 15px;
}

.presentation-3 .post-media .list ul li {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  height: 18px;
  color: #6a6a6a;
  margin-top: 20px;
}

.presentation-3 .post-media .list ul li i {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #4cc3e9;
  font-size: 8px;
  line-height: 16px;
  text-align: center;
  color: #4cc3e9;
  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;
}

.presentation-3 .post-media .list ul li:hover i {
  background: #4cc3e9;
  color: #fff;
}

.presentation-3 .post-media a {
  margin-top: 35px;
}

.presentation-3 .post-media a i {
  font-size: 17px;
  line-height: 19px;
}

@media only screen and (min-width: 768px) {
  .presentation-3.left .post-media {
    padding-left: 50px;
  }
}

@media only screen and (min-width: 768px) {
  .presentation-3.right .post-media {
    padding-right: 50px;
  }
}

.presentation-3.right .post-media h2 {
  text-align: right;
  margin-top: 40px;
}

.presentation-3.right .post-media p {
  text-align: right;
}

.presentation-3.right .post-media a {
  float: right;
}

/*======= Presentation 4 =======*/
.presentation-4.BG {
  width: 100%;
  background: #ffffff url(../img/elements/presentation-bg.jpg) center center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-background-attachment: fixed;
  -moz-background-attachment: fixed;
  -ms-background-attachment: fixed;
  -o-background-attachment: fixed;
  background-attachment: fixed;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 80px;
  padding-bottom: 80px;
}

.presentation-4 .container .product-image img {
  padding-top: 25px;
}

@media only screen and (min-width: 992px) {
  .presentation-4 .container .description-product {
    padding-left: 40px;
  }
}

.presentation-4 .container .description-product h2 {
  font-family: 'Lato';
  font-weight: 400;
  margin-top: 80px;
  color: #45555f;
  margin-bottom: 0;
}

.presentation-4 .container .description-product .media {
  margin-top: 20px;
}

.presentation-4 .container .description-product .media .boxes-icon {
  margin-right: 20px;
  margin-top: 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;
}

.presentation-4 .container .description-product .media .boxes-icon i {
  display: block;
  font-size: 21px;
  line-height: 44px;
  text-align: center;
  color: #4cc3e9;
  -webkit-text-stroke: 0.35px;
}

.presentation-4 .container .description-product .media .media-body h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  color: #2e404c;
}

.presentation-4 .container .description-product .media .media-body p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  color: #4c4c4c;
  line-height: 24px;
  margin-bottom: 20px;
}

.presentation-4 .container .description-product .media:hover .boxes-icon {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

/*======= Buttons =======*/
.buttons .buttons-wrapper a {
  margin-top: 10px;
  margin-right: 5px;
}

/*======= 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: #4cc3e9;
  border-color: #1fb4e3;
}

.btn.btn-primary:hover {
  background-color: #35bbe6;
  border-color: #19a3cf;
}

.btn.btn-primary:focus,
.btn .btn-primary:active {
  background-color: #1fb4e3;
  border-color: #1791b8;
}

.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: #4cc3e9;
  border: none;
}

.btn.btn-link:hover {
  color: #45555f;
  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;
}

/*======= Video Background =======*/
.video-background {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  background: #eeeeee;
}

.video-background .video-container {
  position: absolute;
  width: 100%;
  height: auto;
  top: -50%;
  left: 0;
}

@media only screen and (max-width: 1199px) {
  .video-background .video-container {
    top: 0;
  }
}

.video-background .video-container .videolarge {
  display: block;
  width: 100% !important;
  height: auto !important;
}

.video-background .video-container .videosmall {
  display: none;
  width: 100% !important;
  height: auto !important;
}

@media only screen and (max-width: 767px) {
  .video-background .video-container .videolarge {
    display: none;
  }

  .video-background .video-container .videosmall {
    display: block;
    width: auto !important;
    height: 100% !important;
  }
}

.video-background .description-container {
  position: relative;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}

.video-background .description-container h1 {
  font-family: 'Lato';
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.3);
  font-size: 40px;
}

.video-background .description-container p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.video-background .description-container a.btn {
  margin-top: 30px;
}

.video-background .description-container a.btn.first {
  margin-right: 15px;
}

/*===== Members 1 =====*/
.members-1.BG {
  background: #f8f8f8;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 70px;
  padding-bottom: 100px;
}

.members-1 .members .member {
  max-width: 293px;
  position: relative;
  padding-top: 31px;
}

.members-1 .members .member i.icon {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -31px;
  z-index: 5;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 6px solid #f8f8f8;
  background: #83c129;
  font-size: 22px;
  line-height: 50px;
  text-align: center;
  color: #fff;
}

.members-1 .members .member i.icon.yellow {
  background: #ffda3a;
}

.members-1 .members .member i.icon.orange {
  background: #ff6b24;
}

.members-1 .members .member i.icon.blue {
  background: #4cc3e9;
}

.members-1 .members .member .info {
  padding: 15px;
  border: 1px solid #eeeeee;
  border-top: none;
  background: #fff;
  max-width: 263px;
}

.members-1 .members .member .info h5 {
  font-family: 'Lato';
  font-weight: 700;
  color: #45555f;
  line-height: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.members-1 .members .member .info span.skills {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 10px;
  line-height: 16px;
  color: #ea6c06;
  margin-top: 0;
  margin-bottom: 0;
}

.members-1 .members .member .info p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #a3a3a3;
  margin-top: 10px;
}

.members-1 .members .member .info ul.social {
  padding: 0;
  margin: 0;
}

.members-1 .members .member .info ul.social li {
  display: inline-block;
}

.members-1 .members .member .info ul.social li a {
  display: block;
  width: 15px;
  height: 15px;
  background: #bbbbbb;
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-size: 7px;
  line-height: 15px;
  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;
}

.members-1 .members .member .info ul.social li a:hover {
  background: #45555f;
}

/*===== Members 2 =====*/
.members-2.BG {
  background: #f8f8f8;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 100px;
  padding-bottom: 120px;
}

.members-2 .heading-category h2 {
  text-transform: uppercase;
  font-size: 24px;
}

.members-2 #team-carousel {
  padding-bottom: 60px;
}

.members-2 #team-carousel .carousel-control {
  background: none;
  background-image: none;
  position: absolute;
  opacity: 1;
  width: 32px;
  height: 32px;
  top: 100%;
  border: 2px solid #b8b8b9;
  border-radius: 50%;
  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;
}

.members-2 #team-carousel .carousel-control span {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  line-height: 32px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  opacity: 1;
  text-shadow: none;
  color: #b8b8b9;
  font-size: 20px;
  background: none;
  background-image: 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;
}

.members-2 #team-carousel .carousel-control:focus {
  outline: none;
}

.members-2 #team-carousel .carousel-control.right {
  right: 50%;
  margin-right: -38px;
}

.members-2 #team-carousel .carousel-control.left {
  left: 50%;
  margin-left: -38px;
}

.members-2 #team-carousel .carousel-control:hover {
  border-color: #4cc3e9;
}

.members-2 #team-carousel .carousel-control:hover span {
  color: #4cc3e9;
}

/*======= Members 3 =======*/
.members-3 .members .member {
  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;
}

.members-3 .members .member .info {
  padding: 15px 0;
  max-width: 263px;
}

.members-3 .members .member .info h5 {
  font-family: 'Lato';
  font-weight: 400;
  color: #6a6a6a;
  font-size: 12px;
  line-height: 12px;
  margin-top: 0;
  margin-bottom: 0;
}

.members-3 .members .member .info p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  color: #a3a3a3;
  margin-top: 10px;
}

.members-3 .members .member .info p span.website {
  color: #4cc3e9;
}

.members-3 .members .member:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

/*======= Testimonials 1 =======*/
.testimonials-1 .media {
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 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;
}

@media only screen and (min-width: 1200px) {
  .testimonials-1 .media {
    padding-left: 50px;
  }
}

.testimonials-1 .media .testimonial-box {
  margin-right: 20px;
  margin-top: 10px;
  border-radius: 50%;
}

.testimonials-1 .media .testimonial-box img {
  border-radius: 50%;
  -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-1 .media .media-body p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #a3a3a3;
}

.testimonials-1 .media .media-body p a {
  text-decoration: none;
  font-family: 'Lato';
  font-weight: 400;
  color: #df6a24;
  -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-1 .media .media-body p a:hover {
  color: #4cc3e9;
}

.testimonial-author {
  text-decoration: none;
  font-family: 'Lato';
  font-weight: 400;
  color: #df6a24;
  -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;
}

.testimonial-author:hover {
  color: #4cc3e9;
  text-decoration: none;
}

.testimonials-1 .media .media-body h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 18px;
  color: #DE5E60;
  font-style: italic;
}

.testimonials-1 .media .media-body h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  color: #45555f;
}

.testimonials-1 .media:hover {
  background: #f5f5f5;
}

.testimonials-1 .media:hover .testimonial-box img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@media only screen and (min-width: 768px) {
  .testimonials-1 .testimonial-1 {
    border-bottom: 1px solid #eeeeee;
  }

  .testimonials-1 .testimonial-2 {
    border-bottom: 1px solid #eeeeee;
  }

  .testimonials-1 .testimonial-3 {
    border-right: 1px solid #eeeeee;
  }
}

/*======= Testimonials 2 =======*/
.testimonials-2.BG {
  background: #f5f6f8;
  width: 100%;
  padding: 115px 0 145px 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  text-align: center;
}

.testimonials-2 .carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: -40px;
}

.testimonials-2 .carousel .carousel-indicators li {
  border: 2px solid #a3a3a3 !important;
  background: #f5f6f8 !important;
  width: 13px !important;
  height: 13px !important;
  border-radius: 50%;
  margin: 0;
  margin-left: 3px;
  margin-right: 3px;
}

.testimonials-2 .carousel .carousel-indicators li.active {
  border: 2px solid #a3a3a3 !important;
  background: #a3a3a3 !important;
  width: 13px !important;
  height: 13px !important;
  border-radius: 50%;
  margin: 0;
  margin-left: 3px;
  margin-right: 3px;
  background: #a0a0a0;
}

.testimonials-2 .carousel .carousel-inner .item {
  text-align: center;
}

.testimonials-2 .carousel .carousel-inner .item p.testimonial {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #a3a3a3;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 9px;
  padding: 30px 50px 60px;
  margin: 40px auto -35px;
}

@media screen and (min-width: 1200px) {
  .testimonials-2 .carousel .carousel-inner .item p.testimonial {
    max-width: 975px;
    margin: 40px auto -36px;
  }
}

.testimonials-2 .carousel .carousel-inner .item .author {
  display: block;
  max-width: 150px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-2 .carousel .carousel-inner .item .author img {
  border-radius: 50%;
  margin: 0 auto 12px;
}

.testimonials-2 .carousel .carousel-inner .item .author span.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #1b1c20;
}

.testimonials-2 .carousel .carousel-inner .item .author p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #a3a3a3;
  margin: 8px 0 5px 0;
}

.testimonials-2 .carousel .carousel-inner .item .author p span.colored {
  color: #4cc3e9;
}

/*======= Testimonials 3 =======*/
.testimonials-3.BG {
  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;
  padding-top: 110px;
  padding-bottom: 110px;
}

.testimonials-3 .container ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .testimonials-3 .container ul {
    max-width: 975px;
    margin-left: auto;
    margin-right: auto;
  }
}

.testimonials-3 .container ul li {
  padding-top: 60px;
  position: relative;
}

.testimonials-3 .container ul li a {
  display: block;
  text-decoration: none;
  text-align: left;
  padding-top: 1px;
  max-width: 400px;
  margin: 0 auto;
}

.testimonials-3 .container ul li a img {
  display: block;
  border-radius: 50%;
  float: left;
  margin-right: 15px;
}

.testimonials-3 .container ul li a p.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #21252b;
  margin-top: 16px;
}

.testimonials-3 .container ul li a p.name span.rating {
  color: #ffc600;
  padding-left: 30px;
  white-space: nowrap;
}

.testimonials-3 .container ul li a p.name span.rating i {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  width: 14px;
}

.testimonials-3 .container ul li a p.name span.rating i.disabled {
  color: #dddddd;
}

.testimonials-3 .container ul li a p.site {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #828c8f;
}

.testimonials-3 .container ul li a p.site span.colored {
  color: #4cc3e9;
}

.testimonials-3 .container ul li a:focus {
  outline: none;
}

.testimonials-3 .container ul li span.arrow {
  display: none;
  position: absolute;
  top: -7px;
  left: 50%;
  margin-left: -11px;
  width: 22px;
  height: 18px;
  background: url(../img/elements/arrow-testimonial.png) center center no-repeat;
}

.testimonials-3 .container ul li.testimonial-selected span.arrow {
  display: block;
}

@media only screen and (max-width: 767px) {
  .testimonials-3 .container ul li.testimonial-selected span.arrow {
    display: none;
  }
}

.testimonials-3 .container .box-testimonial {
  background: none;
  border: none;
}

.testimonials-3 .container .box-testimonial .testimonial {
  padding: 40px 30px;
  background: #f8fafa;
  max-width: 945px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e6ebeb;
  text-align: center;
}

.testimonials-3 .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-3 .container .box-testimonial .testimonial p i {
  color: #d6dfdf;
}

.testimonials-3 .container .box-testimonial .testimonial p i.reflected {
  display: inline-block;
  -webkit-transform: scalex(-1);
  -moz-transform: scalex(-1);
  -o-transform: scalex(-1);
}

/*======= Pricing tables 1 ======*/
.pricing-tables-1 .pricing-row {
  margin-top: 10px;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group {
  margin-top: 70px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  -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-1 .pricing-row .pricing-container ul.list-group li {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 16px;
  border-color: #ebebeb;
  text-align: center;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group li:first-child {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group li:first-child .icon {
  width: 85px;
  height: 85px;
  background: #bbbbbb;
  border-radius: 50%;
  margin: -55px auto auto;
  border: 10px solid #fff;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group li:first-child .icon i {
  line-height: 65px;
  text-align: center;
  color: #fff;
  font-size: 31px;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group li:first-child .icon.standard {
  background: #4cc3e9;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group li:last-child {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group li span.bold {
  color: #848383;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group li.heading {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 24px;
  color: #a3a3a3;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group li.pricing {
  font-size: 18px;
  color: #a3a3a3;
  line-height: 18px;
  padding-top: 0;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group li.pricing span.curency {
  font-size: 25px;
  color: #a3a3a3;
  font-weight: 400;
  line-height: 35px;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group li.pricing span.value {
  font-size: 50px;
  color: #4cc3e9;
  font-weight: 400;
  line-height: 50px;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group li a.btn {
  border-radius: 8px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group li a.btn.btn-default:focus {
  background-color: #969696;
  color: #fff;
}

.pricing-tables-1 .pricing-row .pricing-container ul.list-group:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/*======= Pricing Tables 2 =======*/
.pricing-tables-2 .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-2 .wrapper ul {
  list-style: none;
  list-style-type: none;
  padding: 30px 15px;
  background: #4cc3e9;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .pricing-tables-2 .wrapper ul {
    margin-top: 50px;
  }
}

.pricing-tables-2 .wrapper ul.starter {
  background: #4cc3e9;
}

.pricing-tables-2 .wrapper ul.professional {
  background: #1fb4e3;
}

.pricing-tables-2 .wrapper ul.premium {
  background: #1791b8;
}

.pricing-tables-2 .wrapper ul.developer {
  background: #116d8b;
}

.pricing-tables-2 .wrapper ul li {
  text-align: center;
  font-family: 'Lato';
  font-weight: 400;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
}

.pricing-tables-2 .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: rgba(121, 210, 239, 0.6);
  margin: 0 auto;
}

.pricing-tables-2 .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-2 .wrapper ul li span.price {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
}

.pricing-tables-2 .wrapper ul li:nth-child(3) {
  margin-top: 15px;
}

.pricing-tables-2 .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-2 .wrapper ul li a:hover {
  text-decoration: underline;
}

.pricing-tables-2 .wrapper:hover {
  opacity: .9;
}

/*======= Skills Bars =======*/
.skills-bars .progress-container {
  margin-top: 25px;
}

.skills-bars .progress-container .info span.name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #45555f;
  float: left;
}

.skills-bars .progress-container .info span.percent {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  color: #45555f;
  float: right;
}

.skills-bars .progress-container .progress-bg {
  display: block;
  width: 100%;
  height: 11px;
  margin-top: 5px;
  background: #efefef;
}

.skills-bars .progress-container .progress-bg.round {
  border-radius: 5px;
}

.skills-bars .progress-container .progress-bg .progress-max {
  display: block;
  height: 11px;
}

.skills-bars .progress-container .progress-bg .progress-max .progress-inner {
  width: 100%;
  height: 100%;
  background: #4cc3e9;
}

.skills-bars .progress-container .progress-bg .progress-max .progress-inner.round {
  border-radius: 5px;
}

.skills-bars .progress-container .progress-bg .progress-max .progress-inner.green {
  background: #83c129;
}

.skills-bars .progress-container .progress-bg .progress-max .progress-inner.red {
  background: #f35958;
}

.skills-bars .progress-container .progress-bg .progress-max .progress-inner.yellow {
  background: #ffda3a;
}

.skills-bars .progress-container .progress-bg .progress-max .progress-inner.purple {
  background: #a085c6;
}

.skills-bars .progress-container .progress-bg .progress-max .progress-inner.orange {
  background: #ff6b24;
}

/*======= Progress Bars =======*/
.progress-bars .progress-container {
  margin-top: 10px;
}

.progress-bars .progress-container .progress-bg {
  display: block;
  width: 100%;
  height: 22px;
  background: #63cbec;
}

.progress-bars .progress-container .progress-bg .progress-max {
  position: relative;
  display: block;
  height: 22px;
}

.progress-bars .progress-container .progress-bg .progress-max span.info {
  display: block;
  position: absolute;
  left: 15px;
  top: 0;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}

.progress-bars .progress-container .progress-bg .progress-max .progress-inner {
  width: 100%;
  height: 100%;
  background: #1fb4e3;
}

/*======= Skills members team =======*/
.team-skills-container .skills-members {
  padding-bottom: 30px;
}

.team-skills-container .skills-members h3 {
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
  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: #79d2ef;
}

.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: #4cc3e9;
  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;
}

/*======= 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;
}

/*======= Clients Carousel =======*/
.clients-container #carousel-clients {
  margin-top: 60px;
}

.clients-container #carousel-clients .carousel-inner .item ul {
  list-style: none;
  text-align: center;
  padding: 0px;
  margin-bottom: 0;
}

.clients-container #carousel-clients .carousel-inner .item ul li {
  display: inline-block;
  width: 18%;
  padding-left: 1%;
  padding-right: 1%;
}

.clients-container #carousel-clients .carousel-inner .item ul li a img {
  border: 1px solid #eeeeee;
  -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;
}

.clients-container #carousel-clients .carousel-inner .item ul li:hover a img {
  border-color: #4cc3e9;
}

@media only screen and (max-width: 767px) {
  .clients-container #carousel-clients .carousel-inner .item ul li {
    width: 28% !important;
  }

  .clients-container #carousel-clients .carousel-inner .item ul li.not-show {
    display: none !important;
  }
}

.clients-container .carousel-control {
  background: none;
  background-image: none;
  opacity: 1;
  width: 18px;
  height: 100%;
  margin-top: -3px;
}

.clients-container .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;
  -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;
}

.clients-container .carousel-control:focus {
  outline: none;
}

.clients-container .carousel-control.right {
  right: 0;
}

.clients-container .carousel-control.right span {
  background: url(../img/elements/right-arrow.png) -18px 0 no-repeat;
}

.clients-container .carousel-control.right span:hover {
  background-position: 0 0;
}

.clients-container .carousel-control.left {
  left: 0;
}

.clients-container .carousel-control.left span {
  background: url(../img/elements/left-arrow.png) 0 0 no-repeat;
}

.clients-container .carousel-control.left span:hover {
  background-position: -18px 0;
}

/*======= Accordions ======*/
.accordions .panel-group .panel {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  margin-top: 10px;
}

.accordions .panel-group .panel .panel-heading {
  padding: 0;
  border-radius: 0;
}

.accordions .panel-group .panel .panel-heading h4.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  border: 1px solid #e7e7e7;
  color: #444444;
}

.accordions .panel-group .panel .panel-heading h4.panel-title>a {
  outline: none;
  text-decoration: none;
  border: none;
  display: block;
  padding: 8px 20px 8px 35px;
  color: #444444;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  background: #f9f9f9 url('../img/elements/minus.png') no-repeat 10px 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;
}

.accordions .panel-group .panel .panel-heading h4.panel-title>a.collapsed {
  color: #444444;
  display: block;
  padding: 8px 20px 8px 35px;
  background: #f9f9f9 url('../img/elements/plus.png') no-repeat 10px center;
}

.accordions .panel-group .panel .panel-heading h4.panel-title.faq>a {
  background: #f9f9f9 url('../img/elements/faq.png') no-repeat 10px center;
}

.accordions .panel-group .panel .panel-collapse .panel-body {
  border: 1px solid #e7e7e7;
  border-top: none;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #848484;
}

.accordions .panel-group .panel .panel-collapse .panel-body img {
  float: left;
  padding-right: 15px;
}

/*======= Tabs ======*/
.nav-tabs {
  border: none;
}

.nav-tabs>li {
  margin-bottom: -1px;
}

.nav-tabs>li>a {
  border-radius: 0;
  margin-right: 10px;
  background-color: #f9f9f9;
  color: #444444;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 20px;
  border: none;
  border: 1px solid #e6e6e6;
  outline: none;
}

@media screen and (max-width: 767px) {
  .nav-tabs>li>a {
    padding: 5px 5px !important;
    margin-right: 5px;
  }
}

.nav-tabs>li.active>a {
  background-color: #f9f9f9;
  color: #444444;
}

.nav-tabs>li:hover>a {
  background-color: #f9f9f9;
  border-color: #e6e6e6;
}

.tab-content {
  border: 1px solid #e6e6e6;
  padding: 15px 15px 5px 15px;
}

.tab-content .tab-pane {
  padding: 13px 0;
}

.tab-content .tab-pane .tab-icon-inner {
  margin: 10px 15px 15px 5px;
  display: block;
  float: left;
  width: 60px;
  height: 60px;
  background: #4cc3e9;
  border-radius: 50%;
  text-align: center;
}

.tab-content .tab-pane .tab-icon-inner i {
  font-size: 30px;
  line-height: 60px;
  color: #fff;
}

.tab-content .tab-pane p {
  color: #848484;
  font-size: 14px;
  line-height: 20px;
  font-family: 'Lato';
  font-weight: 400;
}

.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
  color: #444444;
  background-color: #f9f9f9;
  cursor: default;
}

.alert {
  border-radius: 10px;
}

/*======= Heading category =======*/
.heading-category h2 {
  font-family: 'Lato';
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  color: #45555f;
}

.heading-category p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  margin: 20px auto 0;
  text-align: justify;
  color: #a3a3a3;
  clear: both;
  max-width: 1100px;
}

/*======= Columns =======*/
.columns .columns-row h4 {
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
}

.columns .columns-row p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #a3a3a3;
}

/*======= List 1 =======*/
ul.list-1 {
  list-style: none;
  list-style-type: none;
  padding: 0;
  padding-bottom: 15px;
}

ul.list-1 li {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  height: 18px;
  color: #6a6a6a;
  margin-top: 20px;
}

ul.list-1 li i {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #4cc3e9;
  font-size: 8px;
  line-height: 16px;
  text-align: center;
  color: #4cc3e9;
  float: left;
  margin-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;
}

ul.list-1 li:hover i {
  background: #4cc3e9;
  color: #fff;
}

/*======= List 2 =======*/
ul.list-2 {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 15px 0 0 0;
}

ul.list-2 li {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #a3a3a3;
  line-height: 26px;
}

ul.list-2 li i {
  color: #4cc3e9;
  margin-right: 10px;
}

/*======= Portfolio 1 =======*/
.portfolio-1 {
  background: #f8f8f8;
  padding-top: 130px;
  padding-bottom: 110px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  /*======= Portfolio single 1 =======*/

  /*======= Similar projects =======*/

}

.portfolio-1 .container .portfolio {
  -webkit-backface-visibility: hidden;
}

.portfolio-1 .container .portfolio h2 {
  font-family: 'Lato';
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  color: #45555f;
}

.portfolio-1 .container .portfolio p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin-top: 20px;
  text-align: center;
  color: #a3a3a3;
  clear: both;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) {
  .portfolio-1 .container .portfolio p {
    width: 70%;
    margin: 20px auto 15px;
  }
}

.portfolio-1 .container .categories-portfolio {
  -webkit-backface-visibility: hidden;
  padding-top: 22px;
}

.portfolio-1 .container .categories-portfolio ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin-bottom: 0;
}

.portfolio-1 .container .categories-portfolio ul li {
  display: inline-block;
  margin: 0 15px;
  margin-top: 15px;
}

.portfolio-1 .container .categories-portfolio ul li a {
  position: relative;
  font-family: 'Lato';
  font-weight: 400;
  display: block;
  font-size: 11px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  padding: 3px 20px;
  background: #4cc3e9;
  min-width: 100px;
  -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-1 .container .categories-portfolio ul li a.selected span.arrow {
  position: absolute;
  display: block;
  bottom: 0;
  margin-bottom: -9px;
  margin-left: -6px;
  left: 50%;
  width: 11px;
  height: 9px;
  background: url(../img/elements/portfolio-arrow.png) center bottom no-repeat;
}

.portfolio-1 .container .categories-portfolio ul li a:hover {
  animation-name: scaleInOut;
  -webkit-animation-name: scaleInOut;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

.portfolio-1 .posts-list {
  -webkit-backface-visibility: hidden;
  /*====== Portfolio two collumns =======*/

  /*====== Portfolio three collumns =======*/

  /*====== Portfolio four collumns =======*/

}

.portfolio-1 .posts-list ul {
  list-style: none;
  list-style-type: none;
  padding-left: 0;
  width: 100%;
}

.portfolio-1 .posts-list ul li {
  padding: 10px 10px;
  margin-top: 57px;
}

@media only screen and (max-width: 767px) {
  .portfolio-1 .posts-list ul li {
    width: 50% !important;
    margin-left: -1px;
  }
}

.portfolio-1 .posts-list ul li .view {
  overflow: hidden;
  position: relative;
  text-align: center;
}

.portfolio-1 .posts-list ul li .view .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -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-1 .posts-list ul li .view .mask a {
  opacity: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  background: #4cc3e9;
  text-decoration: none;
  border: 2px solid #fff;
  left: 50%;
  top: 50%;
  margin-top: -25px;
  margin-left: -25px;
  -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;
}

.portfolio-1 .posts-list ul li .view .mask a i {
  font-size: 30px;
  line-height: 46px;
  text-align: center;
  color: #fff;
}

.portfolio-1 .posts-list ul li .view .mask a:hover {
  border-color: #4cc3e9;
  background: #fff;
  animation-name: scaleInOut;
  -webkit-animation-name: scaleInOut;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

.portfolio-1 .posts-list ul li .view .mask a:hover i {
  color: #4cc3e9;
  opacity: 1;
}

.portfolio-1 .posts-list ul li .view:hover .mask {
  background: rgba(255, 255, 255, 0.5);
}

.portfolio-1 .posts-list ul li .view:hover .mask a {
  opacity: 0.75;
  /*MORPH*/

  border-radius: 50%;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.portfolio-1 .posts-list ul li .view:hover .mask a i {
  opacity: 1;
}

.portfolio-1 .posts-list ul li .info-block {
  border: 1px solid #eeeeee;
  padding: 10px;
  max-width: 300px;
  background: #fff;
}

.portfolio-1 .posts-list ul li .info-block i {
  display: block;
  float: left;
  height: 22px;
  width: 22px;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  color: #fff;
  background: #83c129;
  border-radius: 50%;
  margin-top: 22px;
  margin-right: 15px;
}

.portfolio-1 .posts-list ul li .info-block i.yellow {
  background: #ffda3a;
}

.portfolio-1 .posts-list ul li .info-block i.orange {
  background: #ff6b24;
}

.portfolio-1 .posts-list ul li .info-block i.red {
  background: #ff0000;
}

.portfolio-1 .posts-list ul li .info-block h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 17px;
  line-height: 20px;
  color: #45555f;
  margin-top: 15px;
  margin-bottom: 0;
}

.portfolio-1 .posts-list ul li .info-block p {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12px;
  color: #4cc3e9;
  line-height: 20px;
}

.portfolio-1 .posts-list.two-columns ul {
  margin-top: 65px;
}

.portfolio-1 .posts-list.two-columns ul li {
  padding: 0 15px;
  width: 50% !important;
  margin-right: 0px;
  margin-top: 0;
  padding-bottom: 30px;
}

@media only screen and (max-width: 500px) {
  .portfolio-1 .posts-list.two-columns ul li {
    width: 100% !important;
  }
}

.portfolio-1 .posts-list.two-columns ul li .view {
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.portfolio-1 .posts-list.three-columns ul {
  margin-top: 65px;
}

.portfolio-1 .posts-list.three-columns ul li {
  padding: 0 15px;
  margin-right: 0px;
  margin-top: 0;
  padding-bottom: 30px;
}

@media only screen and (max-width: 300px) {
  .portfolio-1 .posts-list.three-columns ul li {
    width: 100% !important;
  }
}

.portfolio-1 .posts-list.three-columns ul li .view {
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.portfolio-1 .posts-list.four-columns ul {
  margin-top: 65px;
}

.portfolio-1 .posts-list.four-columns ul li {
  padding: 0 15px;
  margin-right: 0px;
  margin-top: 0;
  padding-bottom: 30px;
}

@media only screen and (max-width: 300px) {
  .portfolio-1 .posts-list.four-columns ul li {
    width: 100% !important;
  }
}

.portfolio-1 .posts-list.four-columns ul li .view {
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.portfolio-1.latest-works {
  background: #fff;
  margin-top: 60px;
  padding: 0;
  border: none;
}

.portfolio-1 .portfolio-single-description h4 {
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
  margin-bottom: 25px;
}

.portfolio-1 .portfolio-single-description .list ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  padding-bottom: 15px;
}

.portfolio-1 .portfolio-single-description .list ul li {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  height: 18px;
  color: #6a6a6a;
  margin-top: 20px;
}

.portfolio-1 .portfolio-single-description .list ul li i {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #4cc3e9;
  font-size: 8px;
  line-height: 16px;
  text-align: center;
  color: #4cc3e9;
  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;
}

.portfolio-1 .portfolio-single-description .list ul li:hover i {
  background: #4cc3e9;
  color: #fff;
}

.portfolio-1 .portfolio-single-description h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  color: #a3a3a3;
  margin: 20px 0;
}

.portfolio-1 .portfolio-single-description p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 16px;
}

.portfolio-1 .portfolio-single-description button {
  margin-top: 20px;
  padding: 5px 10px;
}

.portfolio-1 .portfolio-single-img {
  margin-top: 10px;
}

.portfolio-1 .similar-projects {
  -webkit-backface-visibility: hidden;
}

.portfolio-1 .similar-projects h4 {
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
}

.portfolio-1 .similar-projects ul {
  -webkit-backface-visibility: hidden;
  list-style: none;
  list-style-type: none;
  padding-left: 0;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .portfolio-1 .similar-projects ul li {
    width: 50% !important;
    margin-left: -1px;
    margin-bottom: 30px;
  }
}

.portfolio-1 .similar-projects ul li .view {
  overflow: hidden;
  position: relative;
  text-align: center;
}

.portfolio-1 .similar-projects ul li .view .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -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-1 .similar-projects ul li .view .mask a {
  opacity: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  background: #4cc3e9;
  text-decoration: none;
  border: 2px solid #fff;
  left: 50%;
  top: 50%;
  margin-top: -25px;
  margin-left: -25px;
  -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;
}

.portfolio-1 .similar-projects ul li .view .mask a i {
  font-size: 30px;
  line-height: 46px;
  text-align: center;
  color: #fff;
}

.portfolio-1 .similar-projects ul li .view .mask a:hover {
  border-color: #4cc3e9;
  background: #fff;
  animation-name: scaleInOut;
  -webkit-animation-name: scaleInOut;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

.portfolio-1 .similar-projects ul li .view .mask a:hover i {
  color: #4cc3e9;
  opacity: 1;
}

.portfolio-1 .similar-projects ul li .view:hover .mask {
  background: rgba(255, 255, 255, 0.5);
}

.portfolio-1 .similar-projects ul li .view:hover .mask a {
  opacity: 0.75;
  /*MORPH*/

  border-radius: 50%;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.portfolio-1 .similar-projects ul li .view:hover .mask a i {
  opacity: 1;
}

.portfolio-1 .similar-projects ul li .info-block {
  border: 1px solid #eeeeee;
  padding: 10px;
  max-width: 300px;
  background: #fff;
}

.portfolio-1 .similar-projects ul li .info-block i {
  display: block;
  float: left;
  height: 22px;
  width: 22px;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  color: #fff;
  background: #83c129;
  border-radius: 50%;
  margin-top: 22px;
  margin-right: 15px;
}

.portfolio-1 .similar-projects ul li .info-block i.yellow {
  background: #ffda3a;
}

.portfolio-1 .similar-projects ul li .info-block i.orange {
  background: #ff6b24;
}

.portfolio-1 .similar-projects ul li .info-block i.red {
  background: #ff0000;
}

.portfolio-1 .similar-projects ul li .info-block h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 17px;
  line-height: 20px;
  color: #45555f;
  margin-top: 15px;
  margin-bottom: 0;
}

.portfolio-1 .similar-projects ul li .info-block p {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12px;
  color: #4cc3e9;
  line-height: 20px;
}

.portfolio-1 .similar-projects ul li h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 17px;
  line-height: 20px;
  color: #45555f;
  margin-top: 20px;
  margin-bottom: 0;
}

.portfolio-1 .similar-projects ul li p {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12px;
  color: #4cc3e9;
  line-height: 20px;
}

/*======= Portfolio 2 =======*/
.portfolio-2 .heading-category p {
  margin-bottom: 55px;
}

.portfolio-2 .categories-portfolio ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.portfolio-2 .categories-portfolio ul li {
  display: inline-block;
  padding: 2px 1px;
}

.portfolio-2 .categories-portfolio ul li a {
  display: block;
  text-decoration: none;
  outline: none;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #989fa5;
  padding: 7px 15px;
  border: 1px solid #e6e6e6;
  border-radius: 1px;
  cursor: default;
  -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-2 .categories-portfolio ul li a.selected {
  background: #4cc3e9;
  color: #fff;
  border-color: #fff;
}

.portfolio-2 .categories-portfolio ul li a:hover {
  background: #4cc3e9;
  color: #fff;
  border-color: #fff;
}

.portfolio-2 .posts-list {
  margin-top: 60px;
}

.portfolio-2 .posts-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

.portfolio-2 .posts-list ul .element {
  display: block !important;
  padding: 2px 3px;
  margin: 0 -1px;
}

@media only screen and (max-width: 767px) {
  .portfolio-2 .posts-list ul .element {
    max-width: 360px;
    margin: 0 -1px;
  }
}

.portfolio-2 .posts-list ul .element .wrapper {
  backface-visibility: hidden;
  position: relative;
  overflow: hidden;
}

.portfolio-2 .posts-list ul .element .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-2 .posts-list ul .element .wrapper .info .title {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  color: #383838;
  line-height: 50px;
}

.portfolio-2 .posts-list ul .element .wrapper .info .title i {
  font-size: 18px;
  line-height: 50px;
  color: #4cc3e9;
  padding-right: 10px;
}

.portfolio-2 .posts-list ul .element .wrapper .info:hover {
  background: #4cc3e9;
}

.portfolio-2 .posts-list ul .element .wrapper .info:hover .title {
  color: #fff;
}

.portfolio-2 .posts-list ul .element .wrapper .info:hover i {
  color: #fff;
}

.portfolio-2 .posts-list ul .element .wrapper:hover .info {
  margin-bottom: 0;
}

/*======= Portfolio Single 2 =======*/
@media screen and (min-width: 1200px) {
  .portfolio-single-2 .description {
    padding-left: 50px;
  }
}

@media screen and (max-width: 991px) {
  .portfolio-single-2 .description {
    margin-top: 30px;
  }
}

.portfolio-single-2 .description h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 18px;
  color: #45555f;
  margin: 0;
}

.portfolio-single-2 .description p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #afafaf;
  margin: 24px 0 0 0;
}

.portfolio-single-2 .description .info ul {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-single-2 .description .info ul li {
  border-bottom: 1px solid #e0e0e0;
  display: block;
}

.portfolio-single-2 .description .info ul li:last-child {
  border: none;
}

.portfolio-single-2 .description .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-2 .description .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-2 .description .social-media ul {
  padding: 0;
  margin: 0;
  padding-top: 24px;
  list-style: none;
  list-style-type: none;
}

.portfolio-single-2 .description .social-media ul li {
  display: inline-block;
  margin: 5px 5px 0 0;
}

.portfolio-single-2 .description .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;
}

.portfolio-single-2 .description .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;
}

.portfolio-single-2 .description .social-media ul li a:hover {
  background: #45555f;
}

/*======= Portfolio 3 =======*/
.portfolio-3 .heading-category p {
  margin-bottom: 70px;
}

.portfolio-3 .projects .project {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .portfolio-3 .projects .project {
    max-width: 360px;
    margin: 0 auto 30px;
  }
}

.portfolio-3 .projects .project .wrapper {
  position: relative;
  overflow: hidden;
}

.portfolio-3 .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-3 .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-3 .projects .project .wrapper .info .title {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  color: #383838;
  line-height: 50px;
}

.portfolio-3 .projects .project .wrapper .info .title i {
  font-size: 18px;
  line-height: 50px;
  color: #4cc3e9;
  padding-right: 10px;
}

.portfolio-3 .projects .project .wrapper:hover .info {
  margin-bottom: 0;
}

/*======= Portfolio Single 3 =======*/
@media screen and (max-width: 991px) {
  .portfolio-single-3 .content {
    margin-top: 20px;
  }
}

.portfolio-single-3 .content h3 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #717171;
  margin: 0;
}

.portfolio-single-3 .content p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #a3a3a3;
  margin-top: 20px;
  margin-bottom: 0;
}

.portfolio-single-3 .content .info ul {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-single-3 .content .info ul li {
  border-bottom: 1px solid #e0e0e0;
  display: block;
}

.portfolio-single-3 .content .info ul li:last-child {
  border: none;
}

.portfolio-single-3 .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-3 .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-3 .content .client {
  display: block;
}

.portfolio-single-3 .content .client .inner {
  margin-top: 20px;
  padding: 25px;
  border: 1px solid #eeeeee;
  background: #fcfcfc;
}

.portfolio-single-3 .content .client .inner .client-container {
  width: 100%;
  max-width: 110px;
  float: left;
}

.portfolio-single-3 .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-3 .content .client .inner .client-container span.job {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #4cc3e9;
}

.portfolio-single-3 .content .client .inner .testimonial {
  overflow: hidden;
}

.portfolio-single-3 .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-3 .content .client .inner .testimonial p span.rating {
  white-space: nowrap;
}

.portfolio-single-3 .content .client .inner .testimonial p span.rating i {
  font-size: 15px;
  color: #ffc80b;
  margin-right: -3px;
}

/*====== Blog 1 ======*/
.blog-1 .row .blog-article {
  /*=== Blog Single ===*/

}

@media screen and (min-width: 1200px) {
  .blog-1 .row .blog-article {
    padding-right: 50px;
  }
}

.blog-1 .row .blog-article .article .blog-article-content a {
  text-decoration: none;
}

.blog-1 .row .blog-article .article .blog-article-content a h3 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 19px;
  color: #45555f;
  margin: 30px 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-1 .row .blog-article .article .blog-article-content a h3:hover {
  color: #4cc3e9;
}

.blog-1 .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-1 .row .blog-article .article .blog-article-content ul.article-info li {
  display: inline-block;
}

.blog-1 .row .blog-article .article .blog-article-content ul.article-info li a {
  text-decoration: none;
  color: #afafaf;
  font-size: 12px;
  padding-right: 15px;
  padding-left: 15px;
  border-right: 1px solid #dbdbdb;
  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;
}

@media screen and (max-width: 500px) {
  .blog-1 .row .blog-article .article .blog-article-content ul.article-info li a {
    border: none;
  }
}

.blog-1 .row .blog-article .article .blog-article-content ul.article-info li a i {
  color: #afafaf;
}

.blog-1 .row .blog-article .article .blog-article-content ul.article-info li a:hover {
  color: #4cc3e9;
}

.blog-1 .row .blog-article .article .blog-article-content ul.article-info li:first-child a {
  padding-left: 0;
}

.blog-1 .row .blog-article .article .blog-article-content p {
  font-family: 'Lato';
  font-weight: 400;
  color: #afafaf;
  font-size: 15px;
  line-height: 20px;
  margin-top: 20px;
}

.blog-1 .row .blog-article .article .blog-article-content a.continue-reading {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #4cc3e9;
}

.blog-1 .row .blog-article .article-pagination {
  margin-top: 0;
}

.blog-1 .row .blog-article .article-pagination ul {
  padding: 0;
  list-style-type: none;
  list-style: none;
}

.blog-1 .row .blog-article .article-pagination ul li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 0;
}

.blog-1 .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: #4cc3e9;
  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-1 .row .blog-article .article-pagination ul li a.selected {
  background: #4cc3e9;
  color: #fff;
  border-color: #4cc3e9;
}

.blog-1 .row .blog-article .article-pagination ul li a:hover {
  background: #4cc3e9;
  color: #fff;
  border-color: #4cc3e9;
}

.blog-1 .row .blog-article.single-1 .article {
  /* Comment form */

}

.blog-1 .row .blog-article.single-1 .article .blog-article-content p {
  font-size: 14px;
  line-height: 20px;
}

.blog-1 .row .blog-article.single-1 .article .blog-article-content p span.highlight {
  color: #717171;
}

.blog-1 .row .blog-article.single-1 .article .blog-article-content ul.list {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.blog-1 .row .blog-article.single-1 .article .blog-article-content ul.list li {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #a3a3a3;
  line-height: 25px;
}

.blog-1 .row .blog-article.single-1 .article .blog-article-content ul.list li i {
  color: #4cc3e9;
  margin-right: 10px;
}

.blog-1 .row .blog-article.single-1 .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-1 .row .blog-article.single-1 .article ul.tags {
    padding-right: 50px;
  }
}

.blog-1 .row .blog-article.single-1 .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: #4cc3e9;
  color: #fff;
}

.blog-1 .row .blog-article.single-1 .article ul.tags li:first-child {
  font-size: 14px;
  color: #717171;
  padding-left: 0;
  background: none;
}

.blog-1 .row .blog-article.single-1 .article .comments .comment {
  border: 1px solid #eeeeee;
  padding: 20px;
  margin-top: 30px;
}

.blog-1 .row .blog-article.single-1 .article .comments .comment img {
  display: block;
  float: left;
  padding: 0 20px 0 0;
}

.blog-1 .row .blog-article.single-1 .article .comments .comment .info {
  display: block;
  padding-bottom: 10px;
}

.blog-1 .row .blog-article.single-1 .article .comments .comment .info .name {
  display: block;
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #808080;
  line-height: 16px;
}

.blog-1 .row .blog-article.single-1 .article .comments .comment .info .date {
  display: block;
  float: right;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #808080;
}

.blog-1 .row .blog-article.single-1 .article .comments .comment .message {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #bbbbbb;
  line-height: 14px;
}

.blog-1 .row .blog-article.single-1 .article .contact-form h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #808080;
}

.blog-1 .row .blog-article.single-1 .article .contact-form form .form-group .form-control:focus,
.blog-1 .row .blog-article.single-1 .article .contact-form form .form-group .form-control:hover {
  border-color: #4cc3e9;
  -webkit-box-shadow: 0 0 5px rgba(76, 195, 233, 0.5);
  box-shadow: 0 0 5px rgba(76, 195, 233, 0.5);
}

.blog-1 .row .blog-article.single-1 .article .contact-form form .form-group textarea,
.blog-1 .row .blog-article.single-1 .article .contact-form form .form-group input {
  border-radius: 1px;
}

@media screen and (min-width: 1200px) {
  .blog-1.blog-home .row .blog-article {
    padding-right: 15px;
  }
}

.blog-1.blog-home .row .blog-article .article {
  max-width: 450px;
  margin-top: 60px;
}

.blog-1.blog-home .row .blog-article .article .blog-article-content a h3 {
  font-size: 11px;
  margin-top: 20px;
}

.blog-1.blog-home .row .blog-article .article .blog-article-content ul.article-info {
  padding: 5px 0 0 0;
}

.blog-1.blog-home .row .blog-article .article .blog-article-content ul.article-info li a {
  font-size: 7px;
  padding-right: 5px;
  padding-left: 5px;
}

.blog-1.blog-home .row .blog-article .article .blog-article-content ul.article-info li:first-child a {
  padding-left: 0;
}

.blog-1.blog-home .row .blog-article .article .blog-article-content p {
  font-size: 9px;
  line-height: 12px;
  margin-top: 10px;
  margin-bottom: 0;
}

.blog-1.blog-home .row .blog-article .article .blog-article-content a.continue-reading {
  font-size: 8px;
  line-height: 12px;
}

/*=== Blog sidebar 1 ===*/
.blog-sidebar-1 {
  background: #f8f8f8;
  border: 1px solid #f0f0f0;
  padding: 50px 15px;
}

@media screen and (min-width: 1200px) {
  .blog-sidebar-1 {
    padding: 50px;
  }
}

.blog-sidebar-1 .search-widget {
  position: relative;
  height: 46px;
  width: 100%;
  border-bottom: 2px solid #f2f2f2;
  overflow: hidden;
}

.blog-sidebar-1 .search-widget form.search {
  position: relative;
  width: 100%;
  border-radius: 0;
  height: 46px;
  overflow: hidden;
  padding-right: 46px;
}

.blog-sidebar-1 .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-sidebar-1 .search-widget form.search input[type="text"]:focus {
  outline: none;
}

.blog-sidebar-1 .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-sidebar-1 .search-widget form.search button[type="submit"] i {
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #676767;
  border-radius: 50%;
  color: #676767;
  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-sidebar-1 .search-widget form.search button[type="submit"]:hover i {
  color: #4cc3e9;
  border-color: #4cc3e9;
}

.blog-sidebar-1 .search-widget form.search button[type="submit"]:focus {
  outline: none;
}

.blog-sidebar-1 .categories .heading {
  margin-top: 55px;
}

.blog-sidebar-1 .categories .heading i {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 22px;
  color: #4cc3e9;
  border: 1px solid #4cc3e9;
  border-radius: 50%;
  margin-right: 15px;
  float: left;
}

.blog-sidebar-1 .categories .heading h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #676767;
  margin: 0;
  text-transform: uppercase;
}

.blog-sidebar-1 .categories ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.blog-sidebar-1 .categories ul li {
  border-bottom: 1px solid #f2f2f2;
}

.blog-sidebar-1 .categories ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  margin-top: 10px;
}

.blog-sidebar-1 .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-sidebar-1 .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-sidebar-1 .categories ul li a:hover span.value,
.blog-sidebar-1 .categories ul li a:hover span.name {
  color: #4cc3e9;
}

.blog-sidebar-1 .featured-posts .heading {
  margin-top: 55px;
}

.blog-sidebar-1 .featured-posts .heading i {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 22px;
  color: #4cc3e9;
  border: 1px solid #4cc3e9;
  border-radius: 50%;
  margin-right: 15px;
  float: left;
}

.blog-sidebar-1 .featured-posts .heading h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #676767;
  margin: 0;
  text-transform: uppercase;
}

.blog-sidebar-1 .featured-posts ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar-1 .featured-posts ul li {
  border-bottom: 1px solid #f2f2f2;
  padding: 25px 0 15px 0;
}

.blog-sidebar-1 .featured-posts ul li img {
  float: left;
  padding-right: 10px;
}

.blog-sidebar-1 .featured-posts ul li span.title {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #7b7b7b;
}

.blog-sidebar-1 .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-sidebar-1 .about .heading {
  margin-top: 55px;
}

.blog-sidebar-1 .about .heading i {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 22px;
  color: #4cc3e9;
  border: 1px solid #4cc3e9;
  border-radius: 50%;
  margin-right: 15px;
  float: left;
}

.blog-sidebar-1 .about .heading h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #676767;
  margin: 0;
  text-transform: uppercase;
}

.blog-sidebar-1 .about .content {
  margin-top: 20px;
}

.blog-sidebar-1 .about .content .autor {
  float: right;
  width: 80px;
  text-align: center;
  margin-left: 5px;
}

.blog-sidebar-1 .about .content .autor img {
  margin: 0 auto;
}

.blog-sidebar-1 .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-sidebar-1 .about .content .autor span.function {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 9px;
  line-height: 12px;
  color: #f27c5a;
}

.blog-sidebar-1 .about .content .autor .rating {
  position: relative;
  display: block;
  white-space: nowrap;
  margin: 0 auto;
  text-align: center;
}

.blog-sidebar-1 .about .content .autor .rating i {
  display: block;
  float: left;
  font-size: 15px;
  color: #ffc80b;
  width: 14px;
  margin-top: 10px;
}

.blog-sidebar-1 .about .content p {
  overflow: hidden;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #a3a3a3;
  margin-top: 5px;
}

.blog-sidebar-1 .about .content p a {
  text-decoration: none;
  color: #a3a3a3;
  white-space: nowrap;
}

.blog-sidebar-1 .about .content p a:hover {
  color: #f27c5a;
}

.blog-sidebar-1.blog-sidebar-home {
  border: none;
  background: none;
}

@media screen and (min-width: 1200px) {
  .blog-sidebar-1.blog-sidebar-home {
    padding: 0 15px;
  }
}

.blog-sidebar-1.blog-sidebar-home .featured-posts .heading {
  margin-top: 60px;
}

/*====== Blog 2 ======*/
.blog-2 .row .blog-article {
  margin-top: 30px;
  /*=== Blog Wide ===*/

  /*=== Blog Single ===*/

}

@media only screen and (min-width: 1200px) {
  .blog-2 .row .blog-article .hr {
    margin-right: 120px !important;
  }
}

@media only screen and (min-width: 1200px) {
  .blog-2 .row .blog-article .hr-2 {
    margin-right: 60px !important;
  }
}

.blog-2 .row .blog-article .row.mt-60 {
  margin-top: 30px;
}

.blog-2 .row .blog-article .row .blog-img img {
  margin-top: 30px;
}

.blog-2 .row .blog-article .row .blog-article-content a {
  text-decoration: none;
}

.blog-2 .row .blog-article .row .blog-article-content a h3 {
  margin-top: 30px;
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
  -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-2 .row .blog-article .row .blog-article-content a h3:hover {
  color: #4cc3e9;
}

.blog-2 .row .blog-article .row .blog-article-content ul.article-info {
  list-style: none;
  list-style-type: none;
  padding-left: 0;
  padding-top: 10px;
}

.blog-2 .row .blog-article .row .blog-article-content ul.article-info li {
  display: inline-block;
  margin-right: 15px;
}

.blog-2 .row .blog-article .row .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-2 .row .blog-article .row .blog-article-content ul.article-info li a i {
  color: #848383;
}

.blog-2 .row .blog-article .row .blog-article-content ul.article-info li a:hover {
  color: #4cc3e9;
}

.blog-2 .row .blog-article .row .blog-article-content p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 15px;
  line-height: 24px;
  margin-top: 25px;
}

@media only screen and (min-width: 1200px) {
  .blog-2 .row .blog-article .row .blog-article-content p {
    padding-right: 40px;
  }
}

.blog-2 .row .blog-article .row .article-pagination {
  margin-top: 0;
}

.blog-2 .row .blog-article .row .article-pagination ul {
  padding: 0;
  list-style-type: none;
  list-style: none;
}

.blog-2 .row .blog-article .row .article-pagination ul li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px;
}

.blog-2 .row .blog-article .row .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: #4cc3e9;
  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-2 .row .blog-article .row .article-pagination ul li a.selected {
  color: #a3a3a3;
}

.blog-2 .row .blog-article .row .article-pagination ul li a:hover {
  background: #4cc3e9;
  color: #fff;
  border-color: #4cc3e9;
}

.blog-2 .row .blog-article.wide .row {
  padding-bottom: 60px;
}

.blog-2 .row .blog-article.wide .row .blog-img img {
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-top: 10px;
}

.blog-2 .row .blog-article.wide .row .blog-article-content a h3 {
  margin-top: 25px;
}

@media only screen and (min-width: 1200px) {
  .blog-2 .row .blog-article.wide .row .blog-article-content p {
    padding-right: 120px;
  }
}

.blog-2 .row .blog-article.wide .row .blog-article-content a.btn {
  text-decoration: none;
  margin-top: 10px;
}

.blog-2 .row .blog-article.single .row .blog-article-content {
  /* Comment form */

}

.blog-2 .row .blog-article.single .row .blog-article-content p {
  margin-top: 20px;
}

@media only screen and (min-width: 1200px) {
  .blog-2 .row .blog-article.single .row .blog-article-content p {
    padding-right: 60px;
  }
}

.blog-2 .row .blog-article.single .row .blog-article-content p.single-p {
  margin: 18px 0;
}

.blog-2 .row .blog-article.single .row .blog-article-content h4 {
  font-family: 'Lato';
  font-weight: 400;
  color: #6e6e6e;
  margin-top: 20px;
}

.blog-2 .row .blog-article.single .row .blog-article-content ul.article-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
}

@media only screen and (min-width: 1200px) {
  .blog-2 .row .blog-article.single .row .blog-article-content ul.article-info {
    margin-right: 124px;
  }
}

.blog-2 .row .blog-article.single .row .blog-article-content ul.article-info li {
  display: inline-block;
  margin-right: 15px;
}

.blog-2 .row .blog-article.single .row .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-2 .row .blog-article.single .row .blog-article-content ul.article-info li a i {
  color: #848383;
}

.blog-2 .row .blog-article.single .row .blog-article-content ul.article-info li a:hover {
  color: #4cc3e9;
}

.blog-2 .row .blog-article.single .row .blog-article-content 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-2 .row .blog-article.single .row .blog-article-content ul.tags {
    padding-right: 50px;
  }
}

.blog-2 .row .blog-article.single .row .blog-article-content 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: #4cc3e9;
  color: #fff;
}

.blog-2 .row .blog-article.single .row .blog-article-content ul.tags li:first-child {
  font-size: 14px;
  color: #717171;
  padding-left: 0;
  background: none;
}

.blog-2 .row .blog-article.single .row .blog-article-content .comments .comment {
  border: 1px solid #eeeeee;
  padding: 20px;
  margin-top: 30px;
}

.blog-2 .row .blog-article.single .row .blog-article-content .comments .comment img {
  display: block;
  float: left;
  padding: 0 20px 0 0;
}

.blog-2 .row .blog-article.single .row .blog-article-content .comments .comment .info {
  display: block;
  padding-bottom: 10px;
}

.blog-2 .row .blog-article.single .row .blog-article-content .comments .comment .info .name {
  display: block;
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #808080;
  line-height: 16px;
}

.blog-2 .row .blog-article.single .row .blog-article-content .comments .comment .info .date {
  display: block;
  float: right;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #808080;
}

.blog-2 .row .blog-article.single .row .blog-article-content .comments .comment .message {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #bbbbbb;
  line-height: 14px;
}

.blog-2 .row .blog-article.single .row .blog-article-content .contact-form h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #808080;
}

.blog-2 .row .blog-article.single .row .blog-article-content .contact-form form .form-group .form-control:focus,
.blog-2 .row .blog-article.single .row .blog-article-content .contact-form form .form-group .form-control:hover {
  border-color: #4cc3e9;
  -webkit-box-shadow: 0 0 5px rgba(76, 195, 233, 0.5);
  box-shadow: 0 0 5px rgba(76, 195, 233, 0.5);
}

.blog-2 .row .blog-article.single .row .blog-article-content .contact-form form .form-group textarea,
.blog-2 .row .blog-article.single .row .blog-article-content .contact-form form .form-group input {
  border-radius: 1px;
}

.blog-2 .row .blog-article.single .row .article-pagination {
  margin-top: 0;
}

/*=== Sidebar blog 2 ===*/
.blog-sidebar-2 {
  margin-top: 50px;
  max-width: 400px;
}

.blog-sidebar-2 h4.sidebar-heading {
  font-size: 17px;
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
}

.blog-sidebar-2 hr {
  border-color: #d9d9d9;
  margin-top: 10px;
}

.blog-sidebar-2 .about p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 15px;
  line-height: 23px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.blog-sidebar-2 .top-categories h4 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-sidebar-2 .top-categories a {
  display: block;
  text-decoration: none;
  outline: none;
  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;
}

.blog-sidebar-2 .top-categories a i.right-open {
  float: right;
  padding-right: 10px;
  font-size: 20px;
  line-height: 20px;
  color: #4cc3e9;
}

.blog-sidebar-2 .top-categories a span.text {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #a3a3a3;
  text-decoration: none;
}

.blog-sidebar-2 .top-categories a span.icon-cat {
  display: block;
  float: left;
  margin-top: 2px;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #83c129;
  text-align: center;
}

.blog-sidebar-2 .top-categories a span.icon-cat.color2 {
  background: #ffda3a;
}

.blog-sidebar-2 .top-categories a span.icon-cat.color3 {
  background: #ff6b24;
}

.blog-sidebar-2 .top-categories a span.icon-cat.color4 {
  background: #ff0000;
}

.blog-sidebar-2 .top-categories a span.icon-cat i {
  display: block;
  font-size: 8px;
  line-height: 16px;
  color: #fff;
}

.blog-sidebar-2 .top-categories a:hover span.text {
  color: #4cc3e9;
}

.blog-sidebar-2 form.search {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 100%;
  border: 1px solid #bbbbbb;
  border-radius: 1px;
  height: 46px;
  overflow: hidden;
}

.blog-sidebar-2 form.search input[type="text"] {
  border: none;
  background: none;
  width: 67%;
  color: #a3a3a3;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  padding: 12px 5px 12px 10px;
}

.blog-sidebar-2 form.search input[type="text"]:focus {
  outline: none;
}

.blog-sidebar-2 form.search button[type="submit"] {
  border: none;
  border-left: 1px solid #bbbbbb;
  float: right;
  width: 30%;
  overflow: hidden;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #a7a7a7;
  padding: 12px 5px;
  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;
}

.blog-sidebar-2 form.search button[type="submit"]:hover {
  background: #eeeeee;
}

.blog-sidebar-2 form.search button[type="submit"]:focus {
  outline: none;
}

.blog-sidebar-2 .tags {
  margin-top: 40px;
  margin-bottom: 50px;
}

.blog-sidebar-2 .tags ul {
  list-style: none;
  padding-left: 0;
}

.blog-sidebar-2 .tags ul li {
  display: inline-block;
  margin-top: 10px;
}

.blog-sidebar-2 .tags ul li a {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #999999;
  border-radius: 3px;
  background: #f3f3f3;
  padding: 4px 8px;
  margin-right: 5px;
  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-sidebar-2 .tags ul li a:hover {
  color: #45555f;
}

.blog-sidebar-2 .recent-post {
  margin-top: 40px;
}

.blog-sidebar-2 .recent-post .media {
  margin-top: 20px;
}

.blog-sidebar-2 .recent-post .media a.pull-left {
  margin-top: 4px;
}

.blog-sidebar-2 .recent-post .media .media-body p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 17px;
}

.blog-sidebar-2 .recent-post .media .media-body p a {
  font-size: 12px;
  text-decoration: none;
  color: #4cc3e9;
  -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-sidebar-2 .recent-post .media .media-body p a:hover {
  color: #4cc3e9;
}

/*====== Blog 3 ======*/
.blog-3 .row .blog-article {
  /*=== Blog Single 3 ===*/

}

@media screen and (min-width: 1200px) {
  .blog-3 .row .blog-article {
    padding-right: 50px;
  }
}

.blog-3 .row .blog-article .article .blog-img img {
  padding-right: 30px;
}

@media screen and (min-width: 992px) {
  .blog-3 .row .blog-article .article .blog-img img {
    float: left;
  }
}

@media screen and (min-width: 768px) {
  .blog-3 .row .blog-article .article .blog-article-content {
    overflow: hidden;
  }
}

.blog-3 .row .blog-article .article .blog-article-content a {
  text-decoration: none;
}

.blog-3 .row .blog-article .article .blog-article-content a h3 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 20px;
  color: #45555f;
  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-3 .row .blog-article .article .blog-article-content a h3:hover {
  color: #4cc3e9;
}

.blog-3 .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-3 .row .blog-article .article .blog-article-content ul.article-info li {
  display: inline-block;
  margin-right: 15px;
}

.blog-3 .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-3 .row .blog-article .article .blog-article-content ul.article-info li a i {
  color: #4cc3e9;
}

.blog-3 .row .blog-article .article .blog-article-content ul.article-info li a:hover {
  color: #4cc3e9;
}

.blog-3 .row .blog-article .article .blog-article-content p {
  font-family: 'Lato';
  font-weight: 400;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 20px;
  margin-top: 20px;
}

.blog-3 .row .blog-article .article-pagination {
  margin-top: 0;
}

.blog-3 .row .blog-article .article-pagination ul {
  padding: 0;
  list-style-type: none;
  list-style: none;
}

.blog-3 .row .blog-article .article-pagination ul li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 0;
}

.blog-3 .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: #4cc3e9;
  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-3 .row .blog-article .article-pagination ul li a.selected {
  background: #4cc3e9;
  color: #fff;
  border-color: #4cc3e9;
}

.blog-3 .row .blog-article .article-pagination ul li a:hover {
  background: #4cc3e9;
  color: #fff;
  border-color: #4cc3e9;
}

.blog-3 .row .blog-article.single-3 .article {
  /* Comment form */

}

.blog-3 .row .blog-article.single-3 .article .blog-img img {
  float: left;
  padding-right: 30px;
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .blog-3 .row .blog-article.single-3 .article .blog-article-content {
    overflow: visible;
  }
}

.blog-3 .row .blog-article.single-3 .article .blog-article-content a h3 {
  margin: -5px 0 0 0;
}

.blog-3 .row .blog-article.single-3 .article .blog-article-content p span.highlight {
  color: #717171;
}

.blog-3 .row .blog-article.single-3 .article .blog-article-content ul.list {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.blog-3 .row .blog-article.single-3 .article .blog-article-content ul.list li {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #a3a3a3;
  line-height: 25px;
}

.blog-3 .row .blog-article.single-3 .article .blog-article-content ul.list li i {
  color: #4cc3e9;
  margin-right: 10px;
}

.blog-3 .row .blog-article.single-3 .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-3 .row .blog-article.single-3 .article ul.tags {
    padding-right: 50px;
  }
}

.blog-3 .row .blog-article.single-3 .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: #4cc3e9;
  color: #fff;
}

.blog-3 .row .blog-article.single-3 .article ul.tags li:first-child {
  font-size: 14px;
  color: #717171;
  padding-left: 0;
  background: none;
}

.blog-3 .row .blog-article.single-3 .article .comments .comment {
  border: 1px solid #eeeeee;
  padding: 20px;
  margin-top: 30px;
}

.blog-3 .row .blog-article.single-3 .article .comments .comment img {
  display: block;
  float: left;
  padding: 0 20px 0 0;
}

.blog-3 .row .blog-article.single-3 .article .comments .comment .info {
  display: block;
  padding-bottom: 10px;
}

.blog-3 .row .blog-article.single-3 .article .comments .comment .info .name {
  display: block;
  float: left;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  color: #808080;
  line-height: 16px;
}

.blog-3 .row .blog-article.single-3 .article .comments .comment .info .date {
  display: block;
  float: right;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #808080;
}

.blog-3 .row .blog-article.single-3 .article .comments .comment .message {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #bbbbbb;
  line-height: 14px;
}

.blog-3 .row .blog-article.single-3 .article .contact-form h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #808080;
}

.blog-3 .row .blog-article.single-3 .article .contact-form form .form-group .form-control:focus,
.blog-3 .row .blog-article.single-3 .article .contact-form form .form-group .form-control:hover {
  border-color: #4cc3e9;
  -webkit-box-shadow: 0 0 5px rgba(76, 195, 233, 0.5);
  box-shadow: 0 0 5px rgba(76, 195, 233, 0.5);
}

.blog-3 .row .blog-article.single-3 .article .contact-form form .form-group textarea,
.blog-3 .row .blog-article.single-3 .article .contact-form form .form-group input {
  border-radius: 1px;
}

.blog-3.blog-home .row .blog-article .article {
  margin-top: 60px;
}

/*===== Shop Home =====*/
.shop .content h4.results {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #45555f;
  margin: 0;
}

.shop .content .item {
  margin-top: 30px;
}

.shop .content .item .view {
  overflow: hidden;
  position: relative;
  text-align: center;
}

.shop .content .item .view .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 261px;
  -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;
}

.shop .content .item .view .mask a {
  opacity: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  background: #4cc3e9;
  text-decoration: none;
  border: 2px solid #fff;
  left: 50%;
  top: 50%;
  margin-top: -25px;
  margin-left: -25px;
  -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;
}

.shop .content .item .view .mask a i {
  font-size: 30px;
  line-height: 46px;
  text-align: center;
  color: #fff;
}

.shop .content .item .view .mask a:hover {
  border-color: #4cc3e9;
  background: #fff;
  animation-name: scaleInOut;
  -webkit-animation-name: scaleInOut;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

.shop .content .item .view .mask a:hover i {
  color: #4cc3e9;
  opacity: 1;
}

.shop .content .item .view:hover .mask {
  background: rgba(255, 255, 255, 0.5);
}

.shop .content .item .view:hover .mask a {
  opacity: 0.75;
  /*MORPH*/

  border-radius: 50%;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.shop .content .item .view:hover .mask a i {
  opacity: 1;
}

.shop .content .item .info {
  margin-top: 15px;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  color: #45555f;
}

.shop .content .item .info span.price {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #4cc3e9;
  white-space: nowrap;
}

.shop .content .item .info span.price del {
  color: #bbbbbb;
}

@media screen and (min-width: 992px) {
  .shop .content .item .info span.price {
    float: right;
  }
}

.shop .content .article-pagination {
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: 80px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.shop .content .article-pagination ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

.shop .content .article-pagination ul li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 0;
}

.shop .content .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 #4cc3e9;
  color: #4cc3e9;
  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;
}

.shop .content .article-pagination ul li a.selected {
  background: #4cc3e9;
  color: #fff;
  border-color: #4cc3e9;
}

.shop .content .article-pagination ul li a:hover {
  background: #4cc3e9;
  color: #fff;
  border-color: #4cc3e9;
}

@media screen and (max-width: 767px) {
  .shop .shop-sidebar {
    margin-top: 60px;
  }
}

.shop .shop-sidebar .search-widget {
  position: relative;
  height: 46px;
  width: 100%;
  border-bottom: 2px solid #f8f8f8;
  overflow: hidden;
}

.shop .shop-sidebar .search-widget form.search {
  position: relative;
  width: 100%;
  border-radius: 0;
  height: 46px;
  overflow: hidden;
  padding-right: 46px;
}

.shop .shop-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;
}

.shop .shop-sidebar .search-widget form.search input[type="text"]:focus {
  outline: none;
}

.shop .shop-sidebar .search-widget form.search button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: #f8f8f8;
  -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;
}

.shop .shop-sidebar .search-widget form.search button[type="submit"] i {
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #4cc3e9;
  border-radius: 50%;
  color: #4cc3e9;
  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;
}

.shop .shop-sidebar .search-widget form.search button[type="submit"]:hover i {
  color: #45555f;
  border-color: #45555f;
}

.shop .shop-sidebar .search-widget form.search button[type="submit"]:focus {
  outline: none;
}

.shop .shop-sidebar .widget .heading {
  margin-top: 40px;
}

.shop .shop-sidebar .widget .heading i {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 22px;
  color: #4cc3e9;
  border: 1px solid #4cc3e9;
  border-radius: 50%;
  margin-right: 15px;
  float: left;
}

.shop .shop-sidebar .widget .heading h5 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #676767;
  margin: 0;
  text-transform: uppercase;
}

.shop .shop-sidebar .widget.filter .heading {
  margin-bottom: 30px;
}

.shop .shop-sidebar .widget.filter .filter-btn {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  padding: 7px 11px;
  color: #b6b6b6;
  background: #e1e4e9;
  border: none;
  margin-top: 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;
}

.shop .shop-sidebar .widget.filter .filter-btn:hover {
  color: #9d9d9d;
}

.shop .shop-sidebar .widget.featured-posts ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.shop .shop-sidebar .widget.featured-posts ul li {
  border-bottom: 1px solid #f2f2f2;
  padding: 20px 0 20px 0;
}

.shop .shop-sidebar .widget.featured-posts ul li img {
  float: left;
  padding-right: 10px;
}

.shop .shop-sidebar .widget.featured-posts ul li span.title {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #7b7b7b;
}

.shop .shop-sidebar .widget.featured-posts ul li span.rating {
  display: block;
  margin-bottom: 8px;
}

.shop .shop-sidebar .widget.featured-posts ul li span.rating i {
  display: block;
  float: left;
  font-size: 9px;
  color: #ffc600;
  width: 9px;
  line-height: 20px;
}

.shop .shop-sidebar .widget.featured-posts ul li span.rating span.price {
  display: inline-block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 10px;
  line-height: 20px;
  color: #a3a3a3;
  padding-left: 10px;
}

/*===== Shop Product =====*/
.shop-product .img-container img {
  border: 1px solid #eeeeee;
}

@media screen and (max-width: 991px) {
  .shop-product .info {
    margin-top: 30px;
  }
}

.shop-product .info h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #45555f;
  margin: 0;
  margin-bottom: 5px;
}

.shop-product .info span.price {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #4cc3e9;
  white-space: nowrap;
}

.shop-product .info span.price del {
  color: #bbbbbb;
}

.shop-product .info p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  color: #bbbbbb;
}

.shop-product .info .info-article ul {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-product .info .info-article ul li {
  border-bottom: 1px solid #e0e0e0;
  display: block;
}

.shop-product .info .info-article ul li:last-child {
  border: none;
}

.shop-product .info .info-article 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;
}

.shop-product .info .info-article ul li span.name {
  display: block;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
  color: #a3a3a3;
  line-height: 16px;
  padding-top: 5px;
}

.shop-product .info button.btn-cart {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 14px;
  color: #fff;
  background: #45555f;
  padding: 15px 40px;
  border: none !important;
  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;
}

.shop-product .info button.btn-cart:hover {
  background: #5a6f7d;
}

.shop-product .similar-products {
  padding-top: 50px;
}

.shop-product .similar-products h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 17px;
  color: #45555f;
  margin: 0;
}

.shop-product .similar-products .item {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .shop-product .similar-products .item {
    margin-top: 30px;
  }
}

.shop-product .similar-products .item .info {
  margin-top: 5px;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  color: #45555f;
}

.shop-product .similar-products .item .info span.price {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 9px;
  line-height: 16px;
  color: #4cc3e9;
  white-space: nowrap;
}

.shop-product .similar-products .item .info span.price del {
  color: #bbbbbb;
}

@media screen and (min-width: 992px) {
  .shop-product .similar-products .item .info span.price {
    float: right;
  }
}

/*====== Contact 1 ======*/
@media screen and (max-width: 767px) {
  .contact-1 .contact-form {
    margin-top: 50px;
  }
}

.contact-1 .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-1 .contact-form form .form-group .form-control::-moz-placeholder {
  color: #676767;
}

.contact-1 .contact-form form .form-group .form-control:-moz-placeholder {
  color: #676767;
}

.contact-1 .contact-form form .form-group .form-control:-ms-input-placeholder {
  color: #676767;
}

.contact-1 .contact-form form .form-group .form-control::-webkit-input-placeholder {
  color: #676767;
}

.contact-1 .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-1 .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-1 .contact-form form .form-group textarea,
.contact-1 .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-1 .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-1 .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);
}

.contact-1 .content h4 {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 18px;
  color: #1b1c20;
  margin: 0;
}

.contact-1 .content p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #afafaf;
  margin-top: 20px;
  margin-bottom: 0;
}

.contact-1 .content ul.informations {
  list-style: none;
  list-style-type: none;
  margin: 23px 0 0 0;
  padding: 0;
}

.contact-1 .content ul.informations li {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #a3a3a3;
  margin-top: 10px;
}

.contact-1 .content ul.informations li a {
  text-decoration: none;
  color: #a3a3a3;
}

.contact-1 .content ul.informations li i {
  display: block;
  float: left;
  font-size: 17px;
  line-height: 16px;
  color: #4cc3e9;
  padding-top: 1px;
}

.contact-1 .content .social-media {
  margin-top: 25px;
}

.contact-1 .content .social-media ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

.contact-1 .content .social-media ul li {
  display: inline-block;
  margin: 5px 5px 0 0;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 14px;
  color: #1b1c20;
}

.contact-1 .content .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;
}

.contact-1 .content .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;
}

.contact-1 .content .social-media ul li a:hover {
  background: #45555f;
}

/*======= Contact 2=======*/
.contact-2 {
  position: relative;
  margin: 0;
  padding: 0;
}

.contact-2 .googleMap #googleMap {
  width: auto;
  height: 100%;
  min-height: 600px;
}

.contact-2 .contact-form {
  max-width: 300px;
  padding: 20px 20px 40px;
  z-index: 10;
  position: absolute;
  top: 70px;
  right: 0;
  margin-right: 100px;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  background: #fff;
  color: #FFF;
}

@media only screen and (max-width: 767px) {
  .contact-2 .contact-form {
    left: 0;
    margin-right: auto;
    margin-left: auto;
  }
}

.contact-2 .contact-form h4 {
  font-family: 'Lato';
  font-weight: 400;
  color: #999999;
}

.contact-2 .contact-form p {
  font-family: 'Lato';
  font-weight: 400;
  color: #999999;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 20px;
}

.contact-2 .contact-form form .form-group .form-control:focus {
  border-color: #4cc3e9;
  -webkit-box-shadow: 0 0 8px rgba(76, 195, 233, 0.5);
  box-shadow: 0 0 8px rgba(76, 195, 233, 0.5);
}

/*====== Contact 3 ======*/
.contact-3 .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-3 .contact-form form .form-group .form-control::-moz-placeholder {
  color: #676767;
}

.contact-3 .contact-form form .form-group .form-control:-moz-placeholder {
  color: #676767;
}

.contact-3 .contact-form form .form-group .form-control:-ms-input-placeholder {
  color: #676767;
}

.contact-3 .contact-form form .form-group .form-control::-webkit-input-placeholder {
  color: #676767;
}

.contact-3 .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-3 .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-3 .contact-form form .form-group textarea,
.contact-3 .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-3 .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-3 .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-3 .content {
    margin-top: 50px;
  }
}

.contact-3 .content h4 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 18px;
  color: #676767;
  margin: 0;
}

.contact-3 .content p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #a3a3a3;
  margin-top: 20px;
  margin-bottom: 0;
}

.contact-3 .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-3 .content .adress span.title {
  color: #6a6a6a;
}

.contact-3 .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-3 .content .phone span.title {
  color: #6a6a6a;
}

/*===== 404 page ======*/
.error {
  margin-bottom: 50px;
}

.error h1 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 117px;
  line-height: 120px;
  margin-top: 100px;
  text-align: center;
  color: #dedede;
}

.error p {
  font-family: 'Lato';
  font-weight: 400;
  text-align: center;
  color: #bbbbbb;
}

.action-box {
  display: block;
  width: 100%;
  min-height: 1px;
  background: url(../img/elements/presentation-bg.jpg) center center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-background-attachment: fixed;
  -moz-background-attachment: fixed;
  -ms-background-attachment: fixed;
  -o-background-attachment: fixed;
  background-attachment: fixed;
  padding: 70px 0 70px;
}

@media only screen and (min-width: 1200px) {
  .action-box .container {
    padding: 0 115px;
  }
}

@media only screen and (min-width: 1200px) {
  .action-box .container.full {
    padding: 0 15px;
  }
}

.action-box .container .info-action h3 {
  font-family: 'Lato';
  font-weight: 700;
  color: #616161;
  font-size: 22px;
  margin-top: 0;
}

.action-box .container .info-action p {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 14px;
  color: #9f9f9f;
}

@media only screen and (min-width: 768px) {
  .action-box .container .buttons {
    text-align: right;
  }
}

.action-box .container .buttons button {
  margin-top: 10px;
}

.action-box .container .buttons button.first {
  margin-right: 20px;
}

/*======= Services =======*/
.services .heading-category h2 {
  margin-top: 0;
}

.services .heading-category p {
  margin-top: 25px;
}

.services .circle-container {
  -webkit-backface-visibility: hidden;
}

.services .circle-container .circle {
  position: relative;
  display: block;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  border: 15px solid #83c129;
  margin: 85px auto 0;
  -webkit-transition: all 0.35s linear;
  -moz-transition: all 0.35s linear;
  -ms-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  transition: all 0.35s linear;
}

.services .circle-container .circle.yellow {
  border-color: #ffda3a;
}

.services .circle-container .circle.orange {
  border-color: #ff6b24;
}

.services .circle-container .circle.red {
  border-color: #ff0000;
}

.services .circle-container .circle i {
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 135px;
  text-align: center;
  color: #45555f;
  width: 135px;
}

.services .circle-container .info {
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.services .circle-container .info h4 {
  font-family: 'Lato';
  font-weight: 400;
  color: #45555f;
  margin-top: 25px;
  margin-bottom: 20px;
}

.services .circle-container .info p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #a3a3a3;
  margin-bottom: 10px;
}

.services .circle-container .info a {
  margin-top: 22px;
}

.services .circle-container .info a i {
  padding-right: 5px;
}

.services .circle-container:hover .circle {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  border-color: #4cc3e9;
}

/*======= Revolution Slider ======*/
.tp-banner-container {
  max-height: 879px !important;
  position: relative;
}

.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 .medium-text-custom {
  color: #45555f;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 40px;
}

.tp-banner-container .tp-banner ul li .large-text-custom {
  color: #4cc3e9;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 80px;
}

.tp-banner-container .tp-banner ul li .custom-cap {
  background: rgba(255, 255, 255, 0.8);
  color: #000000;
  border: 1px solid rgba(238, 238, 238, 0.8);
  border-radius: 1px;
}

.tp-banner-container .tp-banner ul li .custom-cap span.colored {
  color: #4cc3e9;
}

.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 .tp-banner ul li .icon-container {
  display: block;
  text-align: center;
  width: 110px;
}

.tp-banner-container .tp-banner ul li .icon-container .icon-sr {
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #4cc3e9;
  text-align: center;
  margin: 0 auto;
}

.tp-banner-container .tp-banner ul li .icon-container .icon-sr.color-1 {
  background: #79d2ef;
}

.tp-banner-container .tp-banner ul li .icon-container .icon-sr.color-2 {
  background: #4cc3e9;
}

.tp-banner-container .tp-banner ul li .icon-container .icon-sr.color-3 {
  background: #1fb4e3;
}

.tp-banner-container .tp-banner ul li .icon-container .icon-sr.color-4 {
  background: #1791b8;
}

.tp-banner-container .tp-banner ul li .icon-container .icon-sr i {
  font-size: 22px;
  line-height: 55px;
  color: #fff;
}

.tp-banner-container .tp-banner ul li .icon-container .text-sr {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 12px;
  line-height: 40px;
  color: #45555f;
}

.tp-banner-container .tp-banner ul li img {
  width: 100%;
  height: auto !important;
}

.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;
}

/*====== Maintenance ======*/
.maintenance {
  width: 100%;
  background: #ffffff url(../img/home/maintenance.jpg) center center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  padding-top: 330px;
  padding-bottom: 330px;
}

@media screen and (max-width: 992px) {
  .maintenance {
    padding-top: 230px;
    padding-bottom: 230px;
  }
}

@media screen and (max-width: 767px) {
  .maintenance {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

.maintenance h1 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 48px;
  color: #45555f;
  text-align: center;
  text-transform: uppercase;
}

.maintenance h1 span.colored {
  color: #4cc3e9;
}

.maintenance p {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 15px;
  color: #45555f;
  text-transform: uppercase;
  text-align: center;
}

.maintenance .subscribe-form {
  margin-top: 80px;
}

.maintenance .subscribe-form form {
  text-align: center;
}

.maintenance .subscribe-form form .form-group .form-control {
  -webkit-box-shadow: 0 0 0;
  box-shadow: 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;
}

.maintenance .subscribe-form form .form-group .form-control::-moz-placeholder {
  color: #c5c5c5;
}

.maintenance .subscribe-form form .form-group .form-control:-moz-placeholder {
  color: #c5c5c5;
}

.maintenance .subscribe-form form .form-group .form-control:-ms-input-placeholder {
  color: #c5c5c5;
}

.maintenance .subscribe-form form .form-group .form-control::-webkit-input-placeholder {
  color: #c5c5c5;
}

.maintenance .subscribe-form form .form-group .form-control:focus {
  border-color: #d5d5d5;
  -webkit-box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
}

.maintenance .subscribe-form form .form-group .form-control:hover {
  border-color: #d5d5d5;
  -webkit-box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
}

.maintenance .subscribe-form form .form-group textarea,
.maintenance .subscribe-form form .form-group input {
  border-radius: 1px;
  border-color: #eeeeee;
  background: #fefefe;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  color: #c5c5c5;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  padding: 13px 15px;
  height: 42px;
  width: 100%;
  max-width: 530px;
  margin-right: 5px;
  display: inline;
}

.maintenance .subscribe-form form .form-group button {
  border: 1px solid #eeeeee;
  border-radius: 1px;
  background: #fefefe;
  color: #c5c5c5;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  padding: 13px 25px;
  -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;
}

.maintenance .subscribe-form form .form-group button:hover {
  border-color: #d5d5d5;
  -webkit-box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
}

.categories-portfolio span.arrow {
  background: url(../img/elements/portfolio-arrow.png) center bottom no-repeat !important;
}

html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

.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;
}

/*======= Element title ======*/
.element-title h3 {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 30px;
  color: #45555f;
  padding-bottom: 15px;
  margin: 0;
  border-bottom: 1px solid #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: #2F3238;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

/*======= Icons ======*/
#icons .icons-div i {
  color: #45555f;
  font-size: 18px;
}

#icons .icons-div span.icon-name {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #45555f;
}

#icons .icons-div:hover i {
  color: #303b41;
  font-size: 22px;
  line-height: 22px;
}

/*======= Onepage Menu ======*/
.onepage li.active a {
  background: none !important;
  color: #4cc3e9 !important;
}

.onepage li.active a:focus {
  background: none !important;
  color: #4cc3e9 !important;
  outline: none !important;
}

.onepage li.active a:hover {
  background: none !important;
  color: #4cc3e9 !important;
}

/*======= Preloader ======*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
}

#preloader #loadanimation {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 50%;
  top: 50%;
  margin: -10px 0 0 -60px;
  background: url(../img/elements/spin.gif) center center no-repeat;
}

/*======= Royal Slider =======*/
.royalSlider {
  width: 100% !important;
  height: 100%;
  max-height: 600px;
}

/* ======== Scroll Header ======== */
@media only screen and (min-width: 992px) {
  .info-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 32px;
    max-height: 32px;
  }
}

@media only screen and (min-width: 992px) {
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
  }
}

@media only screen and (min-width: 992px) {
  .tp-banner-container {
    margin-top: 60px;
  }
}

@media only screen and (min-width: 992px) {
  .royalSlider {
    margin-top: 93px;
  }
}

@media only screen and (min-width: 992px) {
  .page-header-1 {
    margin-top: 93px !important;
  }
}

@media only screen and (min-width: 992px) {
  .page-header-2 {
    margin-top: 93px !important;
  }
}

.videoframe {
  width: 690px;
  height: 350px;
}

@media only screen and (min-width :768px) and (max-width : 992px) {
  .videoframe {
    width: 690px;
    height: 350px;
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li>a {
    padding: 5px 15px;
  }
}

@media only screen and (min-width :481px) and (max-width : 767px) {
  .nav-container nav.navbar .navbar-collapse .navbar-nav>li>a {
    padding: 5px 15px;
  }

  .videoframe {
    width: 420px;
    height: 270px;
  }
}

@media only screen and (min-width :320px) and (max-width : 480px) {
  .videoframe {
    width: 260px;
    height: 200px;
  }

  h3,
  .h3 {
    font-size: 30px
  }

  .nav-container nav.navbar .navbar-collapse .navbar-nav>li>a {
    padding: 5px 15px;
  }

  .nav-container nav.navbar .navbar-header a.navbar-brand {
    font-size: 20px;
  }
}

.condu {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  color: #45555f;
  padding: 5px 0 0 0;
}

/*edited for contact us page 26-03-2018 (Blr-team)*/
.contact-1 .content ul.info-mail {
  margin: 0px 0px 0px 0px;
}

.contact-1 .content ul.info-mail li {
  margin: 2px 0px 6px 0px;
  color: #000;
}

.contact-1 .content ul.info-mail li a {
  color: #428bca;
}

/*edited for contact us page 26-03-2018 (Blr-team)*/