
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #39afe5;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #18d36e;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #39afe5;
  color: #fff;
  display: inline-block;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  background: #253256ed;
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
}

#header #logo {
  float: left;
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 60px;
  }
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
  padding-left: 10px;
}

#header #logo img {
  padding: 0;
  margin: 0;
  width: 60%;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }
  #header #logo img {
    max-height: 40px;
  }
}
.chs{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  display: table;
  width: 100%;
  height: 100vh;
  background: #000;
}

#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-img{
  width: 100%;
  height:100vh;
  position: absolute;
  top:0;
  z-index: 1;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 3;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-content {
  text-align: center;
}

#intro h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 28px;
  }
}

#intro p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #intro p {
    width: 60%;
  }
}

#intro .carousel-fade .carousel-inner .carousel-item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev, #intro .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {
  #intro .carousel-control-prev, #intro .carousel-control-next {
    width: 5%;
  }
}

#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #39afe5;
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #39afe5;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (min-width: 1024px) {
  #nav-menu-container {
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  outline: none;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
  color: #39afe5;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #39afe5;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #39afe5;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #39afe5;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #39afe5;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}



/* About Us Section
--------------------------------*/
#about {
  background: url("../img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#about .container {
  position: relative;
  z-index: 10;
}

#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding-bottom:20px;
}

#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #39afe5;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#about .about-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#about .about-col:hover .icon {
  background-color: #fff;
}

#about .about-col:hover i {
  color: #39afe5;
}

#about .about-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#about .about-col h2 a {
  color: #000;
}

#about .about-col h2 a:hover {
  color: #39afe5;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 0px 20px;
}

/* Services Section
--------------------------------*/
#services{
  padding-top:60px;
}
.services-section{
    background-color: #f7f7f7;
}
/*.services-box{
  background-color: #ccc;
  padding: 0;
}
.services-icon-box{
  
  padding: 20px 0;
  margin-bottom:20px;
}
 .services-box.act{
  padding: 15px 20px;
  margin:-15px -20px;
  background-color: #00c1de;
    background-image: linear-gradient(-225deg,#00c1de 0,#1c90f6 100%);
    z-index:9;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 8px 0 rgba(32,36,39,.3);
} */

/* .services-p{
  background: #f5f5f5;
}
.services-box.act .services-p{
  background: #fff;
} */
.single-services{
    color: #666;
}
.servise-icon{
    width: 100px;
    height: 100px;
    color: #39afe5;
    font-size: 65px;
    margin: 0 auto;
    display: inline-table;
    text-align: center;
    margin-bottom: 20px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    
}
.servise-icon img{
  width: 100%;
  display: block;
}
/* .services-box.act .servise-icon, .services-box.act .single-services h4{
  color:#fff;
} */
.servise-icon i{
    display: table-cell;
    vertical-align: middle;
}
.single-services h4{
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}
.single-services p{
    font-weight: 300;
    font-size: 16px;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

#call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action p {
  color: #fff;
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #39afe5;
  border: 2px solid #39afe5;
}



/* Offices Section
--------------------------------*/
#Offices {
  padding: 60px 0;
}
.no-gutter [class*="col-"] {
  padding-left: 0px;
  padding-right: 0px;
}

.recent-work-wrap {
position: relative;
  
}
.table-cell {
display: table-cell;
vertical-align: middle;
}

.recent-work-wrap img{
width: 100%;
}

.recent-work-wrap .recent-work-inner{
top: 0;
background: transparent;
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
width: 100%;
border-radius: 0;
margin-bottom: 0;
  height: 100%;
  display: table;
  text-align: center;
}
.recent-work-inner .table-cell {
display: table-cell;
vertical-align: middle;
}

.recent-work-wrap .recent-work-inner h3{
margin: 10px 0;
  font-size: 20px;
  color: #fff;
}
.recent-work-wrap .recent-work-inner p{
  font-weight: 500;
  color: #fff;
}

.recent-work-wrap .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
border-radius: 0;
background: rgba(63, 178, 223, 0.904);
color: #fff;
vertical-align: middle;
-webkit-transition: opacity 500ms;
transition: opacity 500ms;  
padding: 30px;
}
.recent-work-wrap .overlay .preview {
background: transparent none repeat scroll 0 0;
border-radius: 0;
bottom: 0;
color: #fff;
display: inline-block;
font-size: 35px;
text-align: center;
}

.recent-work-wrap:hover .overlay {
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}


/* Contact Section
--------------------------------*/
.contact-info-section{
  padding:50px 0 120px 0;
  position: relative;
  background: url(../img/contact-bg.jpg) no-repeat; /*** contact-info-section background image ***/
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

.contact-info-section .section-title h2{
  color: #fff;
}
.contact-info-section .section-title p{
  color: #f7f7f7;
}
.contact-info-section:before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #253256f2;
  opacity: .7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  z-index: -1;
}
.contact-form .form-group{
  margin-bottom: 25px;
}

form {
  margin:0
}
form label {
  font-size: 20.8px;
  font-size:1.3rem;
  line-height: 20.8px;
  line-height:1.3rem;
  font-size:13px;
  line-height:13px;
  color:#e6e6e1;
}
form label.error {
  margin-bottom:0;
  font-size: 19.2px;
  font-size:1.2rem;
  line-height: 19.2px;
  line-height:1.2rem;
  font-size:12px;
  line-height:12px;
  color:#c0392b
}
form input[type="text"], form textarea {
  margin-bottom:0.25em;
  font-family:"Inconsolata", sans-serif;
  line-height: 22.4px;
  line-height:1.4rem;
  font-size:14px;
  color: #666;
  line-height:16px;
  width: 100%;
  padding: 12px 12px;
  box-shadow:none;
  -moz-box-shadow:none;
  -webkit-box-shadow:none;
  background:#fff;
  border: 2px solid transparent;
  border-radius:0.2em;
}
form textarea{
  height: 150px;
  resize:none;
}
form input[type="submit"] {
  background: #39afe5;
  display: inline-block;
  padding: 14px 45px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border: none;
  border-radius: 100px;
}
form input[type="submit"]:hover{
  background: #fff;
  color: #4b4c4d;
}
form input[type="text"]:focus, form textarea:focus {
  border-color:#191919;
  box-shadow:none;
  -moz-box-shadow:none;
  -webkit-box-shadow:none
}
form input[type="text"][disabled], form textarea[disabled] {
  background:#fff
}
form input[type="text"].error, form textarea.error {
  background:#e6e6e6;
  border-color:#c0392b
}
fieldset {
  border:0px;
  margin:0;
  padding:0
}
.required {
  color:#e9266d
}
#success, #error {
  display:none
}
#success span, #erro span {
  display:block;
  position:absolute;
  top:0;
  width:100%
}
#success span , #error span  {
  margin-top:6em
}
#success span  {
color:#9bd32d;
}
#error span  {
color:#c0392b;
}
.full-adress{
  margin-left: 40px;
  margin-bottom:20px;
}

.full-adress h3{
  font-size: 22px;
  font-weight: 500;
  color: #f7f7f7;
  border-bottom: 1px solid #39afe5;
  padding-bottom: 10px;
}
.full-adress p.adress{
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.full-adress p.adress:before{
  position: absolute;
  content: "\f041";
  font-family: "FontAwesome";
  top: 0;
  left: 0;
}
.full-adress p.phone{
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.full-adress p.phone:before{
  position: absolute;
  content: "\f095";
  font-family: "FontAwesome";
  top: 0;
  left: 0;
}
.full-adress p.phone a{
  text-decoration: none;
  color: #fff;
}
.full-adress p.mail{
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  line-height: 24px;
  color: #fff;
}
.full-adress p.mail:before{
  position: absolute;
  content: "\f003 ";
  font-family: "FontAwesome";
  top: 0;
  left: 0;
}
.full-adress p.mail a{
  text-decoration: none;
  color: #fff;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer{
  background-color: #08153a;
  padding: 30px 0;
}
.footer-text p{
  font-size: 12px;
  color: #999;
  margin-bottom: 0px;
}