body, html {
  overflow-x: hidden;
}

.logos .swiper-slide img {
    height: 45px;
    margin: 0 auto;
    display: block;
}

body {
  font-family: "Source Sans Pro", sans-serif;
}

/*----------*/
.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: url(../images/page-loader.gif) center no-repeat #fff;
}

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

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

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

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

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

/* ---- particles.js container ---- */
#particles-js {
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: url("../images/banner_bg.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/*-----------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9);
}
.header .navbar-brand {
  margin-right: 25px;
  padding-top: 0;
}
.header .navbar-brand img {
  width: 190px;
}

.navbar {
  padding: 0;
}

.navbar-nav .nav-item .nav-link {
  color: #000;
  padding: 20px 15px;
}
.navbar-nav .nav-item .nav-link:hover {
  color: #3fa2db;
}
.navbar-nav .dropdown-menu {
  margin-top: 0;
  border-radius: 0;
  padding: 0;
}
.navbar-nav .dropdown-menu .dropdown-item {
  padding: 5px 15px;
}

.right_section {
  display: flex;
}
.right_section .social {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  margin-right: 20px;
}
.right_section .social li a {
  color: #000;
  padding: 0 8px;
}
.right_section .social li a:hover {
  color: #3fa2db;
}
.right_section .btn {
  background-color: #3fa2db;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  border-radius: 0;
}

.views {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  display: flex;
}
.views .web img {
  display: inline-block;
}
.views .web img.mob {
  width: 50%;
  position: absolute;
  right: -57px;
  bottom: 0;
}

/*-------*/
.banner_text {
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  -webkit-transform: translateY(-40%);
  -moz-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  -o-transform: translateY(-40%);
  width: 100%;
  text-align: left;
}
.banner_text .container {
  position: relative;
}
.banner_text h1 {
  font-weight: 600;
  font-size: 55px;
  color: #fff;
}
.banner_text ul {
  margin-top: 30px;
  display: flex;
  justify-content: left;
  align-items: center;
}
.banner_text ul li {
  margin: 0 15px;
}
.banner_text ul li:first-child {
  margin-left: 0;
}
.banner_text ul li a.btn i {
  margin-right: 5px;
}
.banner_text h4 {
  font-size: 22px;
  color: #fff;
  margin: 25px 0;
}
.banner_text .text_area {
  padding-left: 15px;
}

.typed_wrap {
  display: block;
  height: auto;
}
.typed_wrap h2 {
  display: inline;
  color: #fff;
  background-color: #17486a;
  padding: 5px 15px;
  font-size: 40px;
}

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

/*Removes cursor that comes with typed.js*/
.typed-cursor {
  opacity: 0;
  display: none;
}

/*Custom cursor animation*/
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-------*/
@media (min-width: 992px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

@media (min-width: 992px) {
  .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}
/*-----------------*/
.on_banner_blocks {
  position: relative;
  z-index: 99;
  margin-top: -170px;
  transform: translateY(35px);
}
.on_banner_blocks .inner_blocks {
  text-align: center;
  background-color: #fff;
  padding: 35px;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.on_banner_blocks .inner_blocks span {
  color: #3fa2db;
  font-size: 60px;
  margin-bottom: 15px;
}
.on_banner_blocks .inner_blocks h3 {
  font-size: 25px;
}
.on_banner_blocks .inner_blocks p {
  font-size: 14px;
  text-align: justify;
}

.title {
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}
.title.white_clr {
  color: #fff;
}
.title.white_clr:after {
  background-color: #fff;
}
.title.color {
  color: #3fa2db;
}
.title.color:after {
  background-color: #3fa2db;
}
.title:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 50px;
  height: 2px;
  background-color: #000;
  bottom: -2px;
}

section {
  padding: 50px 0;
}

.welcome {
  margin-top: 25px;
}
.welcome span {
  display: block;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #AAA;
  margin-bottom: 15px;
}
.welcome h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 600;
}
.welcome p {
  font-size: 21px;
  line-height: 1.8;
  color: #777;
  font-weight: 300;
  text-align: justify;
}

.app {
  background: url("../images/bg.png") left bottom/100% no-repeat;
  border-top: 1px solid #EEE;
}

.client {
  padding: 100px 0;
}

#counter {
  display: flex;
  align-content: center;
  justify-content: space-between;
}
#counter li {
  text-align: center;
}
#counter li span {
  font-size: 18px;
}
#counter li span[class*=pe-] {
  font-size: 70px;
}
#counter li h1 {
  font-size: 50px;
  font-weight: 700;
  margin: 20px 0;
  color: #3fa2db;
}

.open_source span {
  display: block;
  font-size: 60px;
  margin-top: 30px;
  color: #828181;
}
.open_source h3 {
  margin: 20px 0;
}
.open_source p {
  font-size: 14px;
}

.pricing {
  background: #F5F5F5;
}
.pricing .pricing-content {
  text-align: center;
  background: #fff;
  border: 1px solid #e1e1e1;
}
.pricing .pricing-content:hover {
  padding: 1px;
  border: none;
}
.pricing .pricing-content:hover.bg-gradient:before {
  opacity: 1;
}
.pricing .pricing-content:hover .price:before {
  opacity: 1;
}
.pricing .pricing-content:hover .pricing-sign .btn {
  background: #3fa2db;
  color: #fff;
}
.pricing .pricing-content:hover .price-box {
  border-color: #fff;
}
.pricing .pricing-content.bg-gradient {
  position: relative;
}
.pricing .pricing-content.bg-gradient:before {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  background: #0c4b7d;
  background: -moz-linear-gradient(90deg, #0c4b7d 0%, #3fa2db 100%, #3fa2db 100%);
  background: -webkit-linear-gradient(90deg, #0c4b7d 0%, #3fa2db 100%, #3fa2db 100%);
  background: linear-gradient(90deg, #0c4b7d 0%, #3fa2db 100%, #3fa2db 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0c4b7d ", endColorstr="#3fa2db",GradientType=1 );
}
.pricing .pricing-content:before {
  opacity: 0;
}
.pricing .pricing-content .box-info {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.pricing .pricing-content .box-info h3 {
  text-transform: uppercase;
  font-weight: 400;
  margin: 28px 0 29px;
}
.pricing .pricing-content .price {
  background: #ebebeb;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
}
.pricing .pricing-content .price:before {
  content: "";
  opacity: 0;
  background: #0c4b7d;
  background: -moz-linear-gradient(90deg, #0c4b7d 0%, #3fa2db 100%, #3fa2db 100%);
  background: -webkit-linear-gradient(90deg, #0c4b7d 0%, #3fa2db 100%, #3fa2db 100%);
  background: linear-gradient(90deg, #0c4b7d 0%, #3fa2db 100%, #3fa2db 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0c4b7d ", endColorstr="#3fa2db",GradientType=1 );
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
}
.pricing .pricing-content .price-box {
  width: 132px;
  height: 132px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid transparent;
  position: relative;
}
.pricing .pricing-content .price-box:before {
  position: absolute;
  content: "";
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
  background: #fff;
  border-radius: 50%;
}
.pricing .pricing-content .price-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.pricing .pricing-content .price-center span {
  font-size: 40px;
  color: #3fa2db;
  font-weight: bold;
  line-height: 100%;
  display: block;
}
.pricing .pricing-content .price-center p {
  font-weight: 300;
  color: #818181;
  margin: 0;
}
.pricing .pricing-desc {
  padding-top: 30px;
  position: relative;
  background: #fff;
}
.pricing .pricing-desc .pricing-list li {
  padding-bottom: 21px;
  color: #000;
}
.pricing .pricing-desc .pricing-list li i {
  color: #7cc613;
  margin-right: 6px;
}
.pricing .pricing-desc .pricing-list li.erro {
  color: #a7a7a7;
}
.pricing .pricing-desc .pricing-list li.erro i {
  color: #ff2759;
}
.pricing .pricing-sign {
  padding-bottom: 30px;
  position: relative;
  background: #fff;
}
.pricing .pricing-sign .btn {
  padding: 9px 46px 10px;
  border-radius: 25px;
  border: 1px solid #3fa2db;
  text-transform: uppercase;
  color: #3fa2db;
}

/*-------------*/
.team {
  background: #F5F5F5;
}
.team .swiper-slide img {
  display: block;
  margin: 0 auto;
}
.team .swiper-slide .desc {
  background: #fff;
  text-align: center;
  padding: 10px 5px;
}
.team .swiper-slide .desc h4 {
  color: #3fa2db;
  font-size: 20px;
}
.team .swiper-slide .desc h4 span {
  color: #363535;
  font-size: 14px;
  display: block;
  margin-top: 8px;
}
.team .swiper-slide .desc p {
  font-size: 14px;
}
.team .swiper-slide .desc ul {
  display: flex;
  justify-content: center;
}
.team .swiper-slide .desc ul li a {
  color: #3fa2db;
  padding: 0 5px;
}

/*-------------*/
.testomonials {
  background: url(../images/bg-review.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.testomonials:before {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.9;
  position: absolute;
  top: 0;
  width: 100%;
  background: #0c4b7d;
  background: -moz-linear-gradient(90deg, #0c4b7d 0%, #3fa2db 100%, #3fa2db 100%);
  background: -webkit-linear-gradient(90deg, #0c4b7d 0%, #3fa2db 100%, #3fa2db 100%);
  background: linear-gradient(90deg, #0c4b7d 0%, #3fa2db 100%, #3fa2db 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0c4b7d ", endColorstr="#3fa2db",GradientType=1 );
}
.testomonials .swiper-slide {
  text-align: center;
  color: #fff;
}
.testomonials .testimonial-profile {
  width: 156px;
  height: 156px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid #fff;
}
.testomonials .testimonial-profile img {
  border-radius: 50%;
  border: 5px solid #fff;
  width: 141px !important;
  height: 141px;
  margin: 7px;
}
.testomonials h3 {
  margin-top: 15px;
}
.testomonials h5 {
  font-weight: 300;
  margin-bottom: 25px;
}

.logos {
  background-color: #fff;
}
.logos .swiper-slide {
  background-color: #fff;
  padding: 5px;
  box-shadow: 0px 0px 7px -5px #000;
}

.newsletter {
  background: url(../images/bg-footer-v1.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  text-align: center;
  padding-bottom: 0;
}
.newsletter:before {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.9;
  position: absolute;
  top: 0;
  width: 100%;
  background: #000;
  background: -moz-linear-gradient(90deg, #000 0%, #888 100%, #888 100%);
  background: -webkit-linear-gradient(90deg, #000 0%, #888 100%, #888 100%);
  background: linear-gradient(90deg, #000 0%, #888 100%, #888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000 ", endColorstr="#888",GradientType=1 );
}
.newsletter .form-control {
  color: #888;
  height: 55px;
  border-radius: 0;
  margin-bottom: 20px;
}
.newsletter textarea.form-control {
  height: 110px;
  max-height: 110px;
  max-width: 100%;
}
.newsletter .btn {
  display: block;
  background: #3fa2db;
  color: #fff;
  border-radius: 0;
  text-transform: uppercase;
  margin: 0 auto;
  width: 200px;
}
.newsletter .btn:hover {
  background: #000;
}

.footer {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px 0;
  text-align: left;
  margin-top: 60px;
}
.footer ul li {
  display: inline-block;
}
.footer ul li a {
  color: #fff;
  font-size: 14px;
  padding: 0 8px;
}
.footer p {
  color: #fff;
}

/*-----------*/
@media screen and (max-width: 768px) {
  section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .header .navbar-brand {
    margin-left: 45px;
    margin-right: 0;
  }
  .header .navbar-collapse {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50px;
    background: #3fa2db;
  }
  .header .navbar-nav .nav-item .nav-link {
    color: #fff;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar-light .navbar-toggler {
    position: absolute;
    left: 0;
    top: 7px;
    border-radius: 0;
    border-color: #000;
    padding: 0;
    border: 0;
    box-shadow: none;
    outline: none;
  }

  .on_banner_blocks {
    margin-top: 0;
  }

  .views {
    display: none;
  }

  #particles-js {
    min-height: 370px;
  }

  .banner_text h1 {
    font-size: 5.2vw;
  }
  .banner_text h4 {
    font-size: 3.5vw;
  }

  .typed_wrap h2 {
    font-size: 4.5vw;
    padding: 3px 10px;
  }
}
@media screen and (max-width: 580px) {
  #counter {
    flex-direction: column;
  }
  #counter li {
    margin-bottom: 15px;
  }

  .mapi {
    display: none;
  }
}
@media screen and (max-width: 440px) {
  .banner_text {
    top: 20%;
    transform: translateY(-20%);
  }

  .header {
    padding: 7px 0;
  }
  .header .navbar-brand {
    margin-left: 40px;
  }
  .header .navbar-brand img {
    width: 110px;
  }
  .header .navbar-collapse {
    top: 44px;
  }

  .navbar-light .navbar-toggler {
    top: 2px;
  }

  .right_section .btn {
    font-size: 14px;
  }
  .right_section .social {
    margin-right: 10px;
  }
  .right_section .social li a {
    color: #000;
    padding: 0 5px;
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
