@charset "utf-8";
/* CSS Document */

body {
  position: relative;
  display: block;
  height: 1000px;
  overflow-y: scroll;
  font-family: 'robotoregular'!important;
  color: #737373;
  font-size: 14px;
}

/*--- COMMOM ---*/

section {padding: 80px 0 70px 0;}

h1 {
	font-family: 'robotobold'; 
	font-size: 28px;  
	color: #131953; 
	display: inline-block;
	text-transform: uppercase;
}

h2.subttl {
	font-family: 'robotomedium'; 
	font-size: 14px; 
	vertical-align: top; 
	display: inline-block;
	color: #131953;
	padding: 28px 0 4px 17px;
	background-image: url(../img/ttl-sep.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 13px 29px;
}

h3 {
	font-family: 'robotobold'; 
	font-size: 24px;  
	color: #131953; 
	display: inline-block;
	padding: 40px 0 20px;
}

h4 {
	font-family: 'robotobold'; 
	font-size: 16px;  
	color: #131953; 
	display: inline-block;
	text-transform: uppercase;
	margin: 0;
}

.line {
	height: 1px;
    width:100%;
    display:block; /* for use on default inline elements like span */
    margin: 9px 0;
    overflow: hidden;
    background-color: #9f9f9f;
}

.v-center-container {display: table; height: 100%;}
.v-center {display: table-cell; vertical-align: middle;}


/*-- modal --*/

.modal {
  text-align: center;
  padding: 0!important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.modal-header {padding: 20px 20px 15px 20px;}
.modal-body {padding: 15px 20px 20px 20px;}

.modal-header .icon {
    font-size: 60px;
    display: inline-block;
}

.modal-content {border-radius: 0; background-color: #131953; color: #fff;}

.modal-content .close {color: #fff; text-shadow: 0 1px 0 #000;}


/*--- LOADING ---*/

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff;
}

.load-hedging {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -43px;
    margin-left: -40px;
    width: 80px;
    height: 86px;
    display: inline-block;
    z-index: 2;
}
.loading .loading-txt {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -40px;
	width: 80px;
	height: 20px;
	padding-top: 80px;
	background-image: url(../img/bg-loader.jpg);
	background-position: bottom center;
	background-repeat: no-repeat;
	display: inline-block;
	z-index: 1;
	color: #777;
	font-size: 12px;
	font-family: 'robotoregular';
	text-align: center;
	letter-spacing: 1.5px;
}

/* --- Go To Top ---*/

#to-top {
    position: fixed;
	padding-top: 13px;
    z-index: 999;
    width: 40px;
    height: 40px;
	bottom: 20px;
	right: 20px;
    text-align: center;
	font-size: 16px;
    line-height: 6px;
    background: #131953;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 0;
    text-decoration: none;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    opacity: 0;
}
#to-top:hover {
    padding-top: 7px;
}
#to-top.show {
    opacity: 1;
}

#to-top .icon {display: inline-block;}

#to-top .txt {
	font-size: 10px; 
	text-transform: uppercase;
    -webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    -ms-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}
#to-top:hover .txt {
    opacity: 1;
}


/*--- TOP BAR ---*/

.top-bar a {color: #fff;}

.top-bar {
	height: 42px;
	width: 100%;
	background-color: #131953;
	text-align: right;
}
.top-bar.push-bottom {margin-bottom: 105px}

.top-bar .tel, .top-bar .tel-mobile  {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	padding: 8px;
	margin: 0 0 0 0;
	margin-left: 30px;
}

.top-bar .tel-mobile  {display: none;}

.top-bar .tel .icone {display: inline-block; vertical-align: middle; }
.top-bar .tel .icone svg {height: 20px; width: 20px; vertical-align: middle; margin-right: 10px;}
.top-bar .tel .num {display: inline-block; vertical-align: middle; font-size: 13px;
	line-height: 13px;}

.top-bar .tel-mobile .icone {display: inline-block; vertical-align: middle; }
.top-bar .tel-mobile .icone svg {height: 20px; width: 20px; vertical-align: middle; margin-right: 10px;}

.top-bar .social {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
}

.top-bar .social ul {
	list-style: none;
	margin: 8px 0;
	padding: 0;
}

.top-bar .social ul li {
	display: inline;
	margin-left: 30px;
	font-size: 20px;
	line-height: 20px;
	vertical-align: middle;
}

.top-bar .social ul li a {color: #fff;}
.top-bar .social ul li a:hover {
	color: #97a6b0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.top-bar .topbar-btn {
	display: inline-block;
	background-color: #e6e6e6;
	color: #131953;
	padding: 4px 8px;
	margin: 6px 0 0 0;
	font-size: 12px;
	line-height: 20px;
	margin-left: 30px;
	-webkit-transition: background-color 0.2s ease-out;
    -moz-transition: background-color 0.2s ease-out;
    -o-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
}

.top-bar a.topbar-btn:hover {background-color: #d0d0d0; text-decoration: none;}

.top-bar .topbar-btn svg {width: 19px; height: 19px; vertical-align: middle; margin-right: 6px;}


/*--- NAV BAR ---*/

.navbar-header {}

.navbar-brand {height: auto!important;}

.navbar-brand img {height: 75px; width: auto;}

.navbar{margin: 0; padding: 0; width: 100%;}

.navbar-hedging {
    background-color: #f8f8f8;
    border: none;
}

.navbar-collapse.collapse {padding: 0;}

li.nav-item {display: inline!important; margin: 33px 0; }

/*.nav>li:last-child>a {padding-right: 17px!important;}*/
li.nav-item a {
    padding: 10px 34px!important;	
	text-transform: uppercase;
	font-family: 'robotoblack';
	letter-spacing: 1px;
	color: #131953;
	font-size: 13px;
	-webkit-transition: all 0.2s ease;
    -moz-transition:  all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

li.nav-item a:hover {
	color: #999999;
	background: none!important;

}

.nav-link.active {color: #999999; background: none!important;}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover, .nav>li>a:focus, .nav>li>a:hover {
     background: none!important; 
     border: none!important; 
}


/*- dropdown -*/

li.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu {
	background-color: #131953;
	border-radius: 0;
	top: 90%;
	padding: 0;

}

.dropdown-menu li a {
	display: block;
    padding: 15px 15px!important;
    text-transform: uppercase;
    font-family: 'robotoblack';
    letter-spacing: 1px;
    color: #fff;
    font-size: 13px;
}
.dropdown-menu li a:hover {text-decoration: none;} 

.dropdown-menu .divider {
    height: 1px;
    margin: 0;
    overflow: hidden;
    background-color: #e5e5e5;
	display: block;
}


/*- navbar sticky -*/
.navbar.navbar-fixed-top {
    position: fixed;
	top: 0px;
	z-index: 999;
	background-color:rgba(248, 248, 248, 1);
}

.navbar.navbar-fixed-top .navbar-brand {padding: 10px 0;}
.navbar.navbar-fixed-top .navbar-brand img {
	height: 50px;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}
.navbar.navbar-fixed-top li.nav-item {
	margin: 15px 0;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}


/*--- HEADER VIDEO BACKGROUND from https://scriptscodes.com/ ---*/         

.full-window-height {
  height: 600px; /* ONLY if you want the video to fill the entire browser window. Support: http://caniuse.com/#search=vh */
}
.video-bg {
  position: relative; /* contain the abs-pos <video> */
  width: 100%;
  overflow: hidden; /* prevent scrollbars */
  /* these below don't matter: */
  /*padding: 10% 0; */
  text-align: center;
  font: bold 40px/1.2 sans-serif;
}

.video-bg .overlay {
	background: url(../img/gridtile.png);
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 3;
}

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* keep centered in parent */
  z-index: -1; /* keep video behind other content */
  min-width: 100%; /* always cover horizontal */
  min-height: 100%; /* always cover vertical */
}

.video-bg .intro-title {
	position: absolute;
	left: 50%;
	top: 50%;
  transform: translate(-50%, -50%);
	width: 950px;
	border: solid 8px #fff;
	color: #fff;
	padding: 46px 0 46px 0;
	z-index: 4;
}

.video-bg .intro-title h1 {
	font-family: 'robotomedium';
	font-size: 40px;
	text-align: left;
	margin-top: 15px;
	color: #fff;
}

.video-bg .intro-title .ttl-intro {display: inline-block; vertical-align: bottom;}
.video-bg .intro-title .icon {font-size: 120px; line-height: 100px; color: #fff; display: inline-block; vertical-align: bottom; margin-bottom: 9px; margin-right: 5px;}
.video-bg .intro-title h2 {font-family: 'robotomedium';	font-size: 25px; text-align: left; margin-bottom: 10px; }
.video-bg .intro-title p {font-size: 14px; padding: 0 30px; line-height: 24px; font-family: 'robotolight';}


/*--- SERVIÇOS ---*/

#servicos {background-color: #ededed;}

#servicos h3 {padding: 0;}

.col-serv {text-align: center;}
.box-serv {margin: 20px 0 10px 0; padding: 15px 30px;  border-radius: 5px; background-color: #f7f7f7; min-height: 574px;}
.icone-serv {width: 100%; text-align: center; font-size: 150px; line-height: 150px; color: #131953; margin-top: 20px;}
.col-serv h3 {font-family: 'robotomedium';	font-size: 24px; color: #131953; margin: 10px 0; padding-bottom: 8px!important; border-bottom: solid 1px #9f9f9f; width: 100%;}
.col-serv p {text-align: justify;}

/*--- PERFIL ---*/

#perfil {background-color: #fff;}

.icone-difer {width: 100%; text-align: center; font-size: 100px; line-height: 100px; }

.equipe-info {font-family: 'robotoitalic'; margin: 6px 0;}

.equipe-txt {margin-top: 10px;}

.equipe-nome {margin-left: 0;}

.customer-logos {padding: 20px 0; border-top: solid 1px #cfcfcf; border-bottom: solid 1px #cfcfcf; }


/*--- INVESTIMENTOS ---*/

#investimentos {background-color: #ededed;}

a.invest-box {
	display: block;
	background-color: #131953; 
	width: 100%; 
	height: 92px;;
	padding: 22px;
	margin-bottom: 15px;
	color: #fff!important;
	text-align: center;
	/*-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;*/
}

a.invest-box:hover {
	text-decoration: none;
	/*-webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
	transform: scale(1.1);*/
}

a.invest-box .ttl {
	width: 100%; 
	height: 100%; 
	font-size: 16px; 
	line-height: 18px; 
	text-align: center;
}


.btn.btn-taxas {font-family: 'robotomedium_italic'; background-color: #C8C8C8; color: #131953; padding: 15px; border-radius: 0; font-size: 12px; }

.btn.btn-taxas.full {width: 100%;}

.btn.btn-taxas:hover {background-color: #BCBCBC;}


/*--- PARCEIROS ---*/

.slick-slide {text-align: center;}
.slick-slide img {max-width: 210px; display: inline-block!important;}

/*--- CONTATO ---*/

#contato {background-color: #fff;}

.map {height: 230px; margin: 40px 0 30px 0;}

.icon-contato {display: table-cell; padding: 2px 8px 0 0; vertical-align: top;}
.icon-contato svg {height: 20px; width: 20px;}
.info-contato {display: table-cell; padding: 0; vertical-align: top;}

.form input[type="text"],
.form input[type="email"],
.form input[type="number"],
.form input[type="url"],
.form input[type="search"],
.form input[type="tel"],
.form input[type="password"],
.form input[type="date"],
.form input[type="color"],
.form select{
    display: inline-block;
	height: 50px;
    vertical-align: middle;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1px;
	color: #777;
	border: none;
	background-color: #ededed;
    padding-left: 10px;
    padding-right: 10px;
    
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
    
    -moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    
    -webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.form textarea{
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1px;
	color: #777;
	border: none;
	background-color: #ededed;
    outline: none;
	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
    
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.contact-form .form-control:focus {
	color: #495057;
    background-color: #ededed;
    border-color: #80bdff;
    outline: 0;}

.btn-mod,
a.btn-mod{
	color: #fff;
	background-color: #131953;
	border-radius: 0;
	font-size: 12px;
	padding-top: 15px;
	padding-bottom: 15px;
}


/*--- RODAPÉ ---*/

footer {
	background-color: #131953;
	color: #fff;
}

footer .txt-block {
	font-size: 11px;
	font-family: 'robotolight_italic';
	margin-right: 40px;
}

footer .footer-logo {max-width: 80px; height: auto; margin-bottom: 6px;}

footer h2 {text-transform: uppercase; font-size: 16px; font-family: 'robotomedium'; margin-top: 10px;}
footer h2.logo {margin-top: 0;}

footer ul.uteis {list-style: none; padding: 0; margin-top: 20px;}
footer ul.uteis li {display: inline-block; vertical-align: middle; width: 49%; margin: 8px 0;}
footer ul.uteis li a {color: #fff;}
footer ul.uteis li a:hover {text-decoration: none; color: #97a6b0;}

footer ul.social {list-style: none; padding: 0; margin-top: 20px;}
footer ul.social li {margin: 15px 12px 15px 0; display: inline;}
footer ul.social li:last-child {margin-right: 0;}

footer ul.social a {vertical-align: middle;	color: #fff; font-size: 12px;}
footer ul.social a:hover, footer ul.social a:hover i {color: #97a6b0; text-decoration: none;}
footer ul.social a .link {display: inline-block; vertical-align: middle;}
footer ul.social a i {
	width: 20px;
	font-size: 20px;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	margin-right: 0;
}

footer .copyright {font-size: 12px; padding-top: 10px;}
