/*====================================================
                DEFAULT VALUES:

                Font Family                 : Roboto Condensed
                
                Greenish Blue               : #34c6d3       (Buttons, Icons, Links, Lines & Backgrounds)
                Steel Gray                  : #41464b       (Headings)
                Blue Bayoux                 : #64707b       (Paragraphs)
                White                       : #fff          (Text With Black Backgrounds)
                Black                       : #000 

======================================================*/

/* General CSS */

html,
body {
  height: 100%;
  overflow: initial;
}

body {
  font-family: "Roboto Condensed", sans-serif;
}

p {
  color: #64707b;
  font-size: 16px;
  font-weight: 300;
}

h3 {
  color: #41464b;
  text-transform: uppercase;
}

.white-shadow {
  text-shadow: 2px 2px white;
}

/*====================================================
                        PRELOADER
======================================================*/
/* http://blog.henriqueramalho.com/como-criar-um-preloader-pre-carregamento-com-css3?unapproved=778&moderation-hash=179a7c488a1a167fd9adfd5f449ae263#comment-778*/

/* ini: Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff; /* cor do background que vai ocupar o body */
  z-index: 999; /* z-index para jogar para frente e sobrepor tudo */
}
#preloader .inner {
  position: absolute;
  top: 50%; /* centralizar a parte interna do preload (onde fica a animação)*/
  left: 50%;
  transform: translate(-50%, -50%);
}
.bolas > div {
  display: inline-block;
  background-color: rgb(59, 125, 155);
  width: 25px;
  height: 25px;
  border-radius: 100%;
  margin: 3px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: animarBola;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.bolas > div:nth-child(1) {
  animation-duration: 0.75s;
  animation-delay: 0;
}
.bolas > div:nth-child(2) {
  animation-duration: 0.75s;
  animation-delay: 0.12s;
}
.bolas > div:nth-child(3) {
  animation-duration: 0.75s;
  animation-delay: 0.24s;
}

@keyframes animarBola {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  16% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/*====================================================
                        HOME
======================================================*/

#home {
  height: 100%;
}

#home-cover {
  height: 100%;
  background-image: url("../img/bg-home.jpg");
  overflow: hidden;
}

#home-content-box {
  width: 100%;
  height: 100%;
  display: table;
  background-color: rgba(0, 0, 0, 0.568);
}

#home-content-box-inner {
  display: table-cell;
  vertical-align: middle;
  /* text-align: center; */
}

#home-heading h3 {
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  margin: 20px 0 20px 0;
}

/*====================================================
                        PARALLAX (Generic)
======================================================*/

.bg-parallax {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/*====================================================
                        BUTTONS (Generic)
======================================================*/

.btn-general {
  border-width: 2px;
  border-radius: 0;
  padding: 12px 26px 12px 26px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.btn-white {
  border-color: #fff;
  color: #fff;
}

.btn-white:hover,
.btn-white:focus {
  background-color: #fff;
  color: #41464b;
}

.btn-blue {
  border-color: #34c6d3;
  color: #34c6d3;
}

.btn-blue:hover,
.btn-blue:focus {
  background-color: #34c6d3;
  color: #fff;
}

.btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 22px;
  padding: 3px 15px;
  border-radius: 0;
  display: none;
}

/*====================================================
                       ANIMATE
======================================================*/

#home-cover,
#home-heading,
#home-btn {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

#home-cover {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

#home-heading {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

#home-btn {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

/*====================================================
                       CONTENT (Generic)
======================================================*/

.content-box {
  padding: 60px 0 60px 0;
}

.content-title h3 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px 0;
}

.content-title-white h3 {
  color: #fff;
}

.content-title-underline {
  width: 30px;
  height: 3px;
  background-color: #34c6d3;
  margin: 0 auto 30px auto;
}

/*====================================================
                       SERVICES
======================================================*/

.service-item {
  padding: 20px 0 20px 0;
  margin-bottom: 20px;
  cursor: pointer;
}

.service-item-icon i {
  color: #34c6d3;
  float: left;
  padding: 15px;
  margin-right: 25px;
  width: 75px;
  height: 75px;
  text-align: center;
}

.service-item:hover .service-item-icon i {
  color: #fff;
  background-color: #34c6d3;
}

.service-item-title h3 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.service-item-desc p {
  margin: 0;
  padding-left: 85px;
}

/*====================================================
                       SERVICESGO
======================================================*/

.servicesgo-box {
  border: 3px solid #34c6d3;
  padding: 50px 0;
  margin: 40px 0;
}

h4.servicesgo-title {
  background-color: #34c6d3;
  color: #fff;
  display: inline-block;
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 30px 0;
}

h3.servicesgo-value {
  font-size: 60px;
  font-weight: 700;
}

h3.servicesgo-value sup {
  font-size: 28px;
  font-weight: normal;
  vertical-align: super;
}

ul.servicesgo-spec {
  list-style: none;
  padding-left: 0;
  margin: 20px 0 60px 0;
}

ul.servicesgo-spec li p {
  font-weight: 400;
  text-transform: uppercase;
}

.servicesgo-box-lg {
  padding: 90px 0;
  margin: 0;
  background-color: #34c6d3;
}

.servicesgo-box-lg h4.servicesgo-title {
  color: #34c6d3;
  background-color: #fff;
}

.servicesgo-box-lg ul.servicesgo-spec li p {
  color: #fff;
}

/*====================================================
                       ABOUT
======================================================*/

#about-bg-diagonal {
  width: 40%;
  height: 600px;
  float: right;
  background-image: url(../img/bg-about.jpg);
  opacity: 0.5;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

#about-content-box {
  float: left;
  height: 700px;
}

#about-content-box-outer {
  width: 100%;
  height: 100%;
  display: table;
}

#about-content-box-inner {
  display: table-cell;
  vertical-align: middle;
  padding-top: 30%;
}

#about .content-title h3 {
  padding-top: 10px;
  text-align: left;
}

#about .content-title-underline {
  margin: 0 0 30px 0;
}

#about-desc p {
  margin-bottom: 30px;
}

#about p {
  color: #fff;
  font-weight: 300;
  margin-top: 0;
}
/*====================================================
                       quotessispat
======================================================*/

#quotessispat-cover {
  background-image: url("../img/bg-sispat.png");
}

#quotessispat .content-box {
  background-color: rgba(0, 0, 0, 0.1);
}

#customers-quotessispat {
  padding: 50px 0;
}

.quotesispat img {
  max-width: 120px;
  margin: 0 auto 0 auto;
}

.quotesispat blockquote {
  border: 0;
  font-family: Georgia, sans-serif;
  font-style: italic;
  color: #fff;
  padding: 6px 150px;
  position: relative;
}

.quotesispat blockquote p {
  color: #fff;
}

.quotesispat blockquote::before,
.quotesispat blockquote::after {
  font-size: 80px;
  font-style: normal;
  line-height: 1;
  width: 30px;
  height: 30px;
  position: absolute;
}

.quotesispat blockquote::before {
  content: "\201C";
  top: 0;
  left: 100px;
}

.quotesispat blockquote::after {
  content: "\201D";
  bottom: 0;
  right: 100px;
}

.quotesispat-author p {
  color: #fff;
  font-size: 17px;
}

.quotesispat-author p strong {
  display: block;
}

/*====================================================
                       SISPAT
======================================================*/

#sispat {
  clear: both;
}

.img-wrapper {
  overflow: hidden;
}

.img-wrapper img {
  transition: transform 0.4s ease;
}

.img-wrapper img:hover {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  cursor: zoom-in;
}

/*====================================================
                       solicitesispat
======================================================*/

#solicitesispat-cover {
  background-image: url("../img/bg-solicitesispat.jpg");
}

#solicitesispat .content-box {
  background-color: rgba(0, 0, 0, 0.8);
}

.solicitesispat-item {
  padding: 100px 0;
}

.solicitesispat-item i {
  color: #34c6d3;
}

.solicitesispat-item h2 {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 1px;
}

.solicitesispat-item p {
  color: #fff;

  font-weight: 300;
  margin-top: 0;
}

/*====================================================
                       SITES
======================================================*/

.site-member {
  margin: 0 15px;
}

.site-member img {
  -webkit-box-shadow: 8px 13px 15px -5px #aaaaaa;
  box-shadow: 8px 13px 15px -5px #aaaaaa;
}

.site-member-info {
  padding: 10px 0 30px 0;
}

h4.site-member-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  padding-top: 15px;
}

h4.site-member-designation {
  color: #34c6d3;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1px;
  margin-top: 5px;
}

.site-banner h1 {
  position: absolute;
  top: 15%;
  left: 15%;
  font-family: "Baloo Da 2", serif;
  font-size: 6rem;
  font-weight: 400;
  color: rgb(41, 39, 39);
  width: 50%;
  line-height: 6rem;
  letter-spacing: 0.2rem;
  text-shadow: 0 0.4rem 0.5rem rgb(255, 255, 255);
}

.site-info {
  margin-top: 25px;
  padding-top: 20px;
}

.site-info-destaque {
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
}

.container-site {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.panel-site {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  border-radius: 50px;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: all 700ms ease-in;
  -webkit-transition: all 700ms ease-in;
}

.panel-site h3 {
  font-family: "Baloo Da 2", serif;
  font-size: 3rem;
  font-weight: 100;
  color: #fff;
  line-height: 3rem;
  letter-spacing: 0.2rem;
  text-shadow: 0 0.4rem 0.5rem rgb(61, 156, 219);
  position: absolute;
  top: 1em;
  left: 20px;
  margin: 0;
  opacity: 0;
  background: rgba(24, 23, 23, 0.6);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;

  color: transparent;
  background: #ffffff;
  text-shadow: -4px 4px rgba(179, 179, 179, 0.4),
    -3px 3px rgba(153, 153, 153, 0.2), -2px 2px rgba(179, 179, 179, 0.2),
    -1px 1px rgba(179, 179, 179, 0.2), 0px 0px rgba(128, 128, 128, 0.5),
    1px -1px rgba(77, 77, 77, 0.6), 2px -2px rgba(77, 77, 77, 0.7),
    3px -3px rgba(82, 82, 82, 0.8), 4px -4px rgba(77, 77, 77, 0.9),
    5px -5px rgba(77, 77, 77, 1);
  -webkit-text-shadow: -4px 4px rgba(179, 179, 179, 0.4),
    -3px 3px rgba(153, 153, 153, 0.2), -2px 2px rgba(179, 179, 179, 0.2),
    -1px 1px rgba(179, 179, 179, 0.2), 0px 0px rgba(128, 128, 128, 0.5),
    1px -1px rgba(77, 77, 77, 0.6), 2px -2px rgba(77, 77, 77, 0.7),
    3px -3px rgba(82, 82, 82, 0.8), 4px -4px rgba(77, 77, 77, 0.9),
    5px -5px rgba(77, 77, 77, 1);
}

.panel-site.active {
  flex: 5;
}

.panel-site.active h3 {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
}

.bg-site:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
}

.wrapper {
  background: #666f6f;
  background: linear-gradient(to bottom right, #666f6f 0%, #384654 100%);
  position: relative;
  top: 50%;
  left: 0;
  width: 100%;
  height: 30em;
  margin-top: 20px;
  overflow: hidden;
}

.wrapper p {
  color: #fff;
  font-family: "Baloo Da 2", serif;
  position: relative;
}

.bg-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-bubbles li {
  position: absolute;
  list-style: none;
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  bottom: -160px;
  -webkit-animation: square 25s infinite;
  animation: square 25s infinite;
  transition-timing-function: linear;
}

.bg-bubbles li:nth-child(1) {
  left: 10%;
}

.bg-bubbles li:nth-child(2) {
  left: 20%;
  width: 80px;
  height: 80px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 17s;
  animation-duration: 17s;
}

.bg-bubbles li:nth-child(3) {
  left: 25%;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.bg-bubbles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  -webkit-animation-duration: 22s;
  animation-duration: 22s;
  background-color: rgba(255, 255, 255, 0.25);
}

.bg-bubbles li:nth-child(5) {
  left: 70%;
}

.bg-bubbles li:nth-child(6) {
  left: 80%;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-bubbles li:nth-child(7) {
  left: 32%;
  width: 160px;
  height: 160px;
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

.bg-bubbles li:nth-child(8) {
  left: 55%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 15s;
  animation-delay: 15s;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
}

.bg-bubbles li:nth-child(9) {
  left: 25%;
  width: 10px;
  height: 10px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
  background-color: rgba(255, 255, 255, 0.3);
}

.bg-bubbles li:nth-child(10) {
  left: 90%;
  width: 160px;
  height: 160px;
  -webkit-animation-delay: 11s;
  animation-delay: 11s;
}

@-webkit-keyframes square {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-700px) rotate(600deg);
  }
}

@keyframes square {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-700px) rotate(600deg);
  }
}

/*====================================================
                       CLIENTS
======================================================*/

.client {
  padding: 40px 0;
}

img.img-fluid.bg-client {
  max-width: 104px;
}

.bg-client {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
}

/*====================================================
                       SOCIAL
======================================================*/

.social-list {
  padding-left: 0;
}

.social-list li {
  list-style: none;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 6px;
  margin-top: 10px;
}

.social-icon i {
  font-size: 17px;
}

.icon-gray i {
  color: #64707b;
}

.icon-white i {
  color: #fff;
}

.social-icon i:hover {
  color: #34c6d3;
}

/*====================================================
                       CONTACT
======================================================*/

footer {
  padding-top: 30px;
  border-top: 5px solid rgba(0, 0, 0, 0.1);
}

#contact-left h3,
#contact-right h3 {
  color: #fff;
  font-size: 27px;
  font-weight: 700;
}

#contact-left p {
  color: #fff;
  margin-bottom: 30px;
}

#contact-info {
  background-image: url("../img/world-map.png");
  background-repeat: no-repeat;
  background-size: contain;
}

address {
  color: #fff;
}
address strong {
  font-size: 16px;
}
address strong,
#phone-fax-email strong {
  letter-spacing: 1px;
}

form .form-control {
  background: transparent;
  border-radius: 0;
  border-color: #fff;
  font-size: 17px;
  font-weight: 300;
  padding: 8px 16px;
  margin-bottom: 20px;
  color: #fff;
}

.has-error label,
.has-error input,
.has-error textarea {
  color: red;
  border-color: red;
}

.list-unstyled li {
  font-size: 13px;
  padding: 4px 0 0;
  color: red;
}

/*====================================================
                       FOOTER
======================================================*/

#footer-bottom {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  margin-top: 60px;
}

#footer-copyrights p {
  margin: 0;
  color: #fff;
}

#footer-menu {
  float: left;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

#footer-menu ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#footer-menu ul li {
  display: inline-block;
}

#footer-menu a {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin: 0 10px;
  text-decoration: none;
}

#footer-menu a:hover {
  color: #34c6d3;
}

.footer-bg {
  background-image: url("../img/bg-contato.jpg");
  background-size: cover;
  overflow: hidden;
}

/*====================================================
                       NAVIGATION
======================================================*/

.navbar {
  padding: 20px 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.pBrana-top-nav {
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 0;
}

.pBrana-nav-wrapper {
  padding: 0 85px;
}

.navbar-nav {
  float: right;
}

.navbar-nav > li > a {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  background: none;
  color: #34c6d3;
}

.navbar-toggle {
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
  border-radius: 0;
}

.navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar-collapse {
  max-height: none !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff !important;
}

.pBrana-top-nav ul.navbar-nav > li > a.active {
  color: #34c6d3 !important;
}

.navbar-collapse.show {
  margin-top: 10px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-login {
  font-size: 10px;
  font-weight: 300;
  margin: 0 10px;
}
