html, body{
	margin:0;
	padding:0;
	font-family: 'Roboto';
	font-size:14px;
	line-height:normal;
	color:#222;
	overflow-x:hidden;
	/*
	background: rgb(5,5,85);
	background: linear-gradient(180deg, rgba(5,5,85,1) 0%, rgba(9,9,121,1) 16%, rgba(0,212,255,1) 100%);
	*/
}

body{
	font-family: 'Roboto';
}

@media only screen and (max-width: 600px) {
	body{
		background-size:100%
	}
}

a,
a:link,
a:active,
a:visited{
	color:#666;
	font-weight:700;
	transition:0.5s;
	text-decoration:none
}

a:hover{
	color:#063682	
}

.form-control{
	padding:8px 16px;
	border: 1px solid #cacaca;
	font-size:14px !important;
	margin-bottom:3px;
	border-radius:5px;	
}
.form-control:focus{
	background:#ede5da;
}
::placeholder{
  color: #777 !important;
  opacity: 1;
}

:-ms-input-placeholder{
  color: #777 !important;
}

::-ms-input-placeholder{
  color: #777 !important;
}
.has-error .checkbox, 
.has-error .checkbox-inline, 
.has-error .control-label, 
.has-error .help-block, 
.has-error .radio, 
.has-error .radio-inline, 
.has-error .checkbox label, 
.has-error .checkbox-inline label, 
.has-error .radio label, 
.has-error .radio-inline label{
    color: #fff;
}
.help-block {
    display: block;
    margin-top: 0px;
    margin-left: 16px;
    margin-bottom: 1px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.parallax {
  /* The image used */
  background-image: url('../img/bg-cotacao.jpg');
  /* Full height */
  height: 100%; 
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#div_whatsAppFooter {
	position: fixed;
	z-index: 5000;
	bottom: 18px;
	right: 16px;
	width: 45px;
	height: 45px
}
#div_whatsAppFooter > a > img{
	width:100%;
	transition:0.3s
}
#div_whatsAppFooter > a > img:hover{
	opacity:0.6
}
@-webkit-keyframes pulse-whatsapp {
	to {
	  -webkit-transform: scale(1.1);
	  transform: scale(1.1);
	}
  }
  @keyframes pulse-whatsapp {
	to {
	  -webkit-transform: scale(1.1);
	  transform: scale(1.1);
	}
  }
.pulse-whatsapp {
	-webkit-animation-name: pulse-whatsapp;
	animation-name: pulse-whatsapp;
	-webkit-animation-duration: 0.7s;
	animation-duration: 0.7s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
}

.banner-first-title{
	font-size:35px !important
}

.img-desktop{
	display:block	
}

.img-mobile{
	display:none	
}

@media only screen and (max-width: 600px) {
	.hide-mobile{
		display:none	
	}
	.banner-first-title{
		font-size:26px !important
	}
	.img-desktop{
		display:none	
	}
	
	.img-mobile{
		display:block	
	}
}