
/*************************
*******Typography******

Color: e31d23

**************************/

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #666;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  color: #333;
}

h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

h3 {
  font-size: 18px;
}

.parallax {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.parallax,
.parallax h1,
.parallax h2,
.parallax h3,
.parallax h4,
.parallax h5,
.parallax h6 {
  color: #fff;
}

.parallax input[type="text"],
.parallax input[type="text"]:hover,
.parallax input[type="email"],
.parallax input[type="email"]:hover,
.parallax input[type="url"],
.parallax input[type="url"]:hover,
.parallax input[type="password"],
.parallax input[type="password"]:hover,
.parallax textarea,
.parallax textarea:hover {
  font-weight: 400;
  color: #fff!important;
  border: 1px solid #dcdde1;
}

::-webkit-input-placeholder { /* Edge */
  color: #dcdde1!important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #dcdde1!important;
}

::placeholder {
  color: #dcdde1!important;
}



.btn {
  border: 0;
  border-radius: 0;
}

.btn.btn-primary:hover {
  background-color: #e31d23;
}

.navbar-nav li a:hover, 
.navbar-nav li a:focus {
  outline:none;
  outline-offset: 0;
  text-decoration:none;  
  background: transparent;
  color: #e31d23;
}

a {
  text-decoration: none;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

a:focus, 
a:hover {
  text-decoration: none;
  outline: none;
}

section {
  padding: 90px 0;
}

.heading {
  padding-bottom:90px;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: #000;
}

.preloader > i {
  position: absolute;
  font-size: 36px;
  line-height: 36px;
  top: 50%;
  left: 50%;
  height: 128px;
  width: 128px;
  margin-top: -15px;
  margin-left: -15px;
  display: inline-block;
}


/*************************
********Home CSS**********
**************************/

/*************************
********Configurações da HOME - Banner**********
**************************/
#home-slider {
  overflow: hidden;
  position: relative;
}

#home-slider .caption {
  position: absolute;
  top: 35%;
  margin-top: -104px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 15;
}

#home-slider .caption h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 30px;
}

.caption .btn-start {
  color: #fff;
  font-size: 12px!important;
  font-weight: 600;
  padding:14px 40px;
  border: 1px solid #6e6d6c;
  border-radius: 4px;
  margin-top: 40px;
}

.caption .btn-start:hover {
  color: #fff;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  background-repeat: no-repeat;
  background-size: cover;
  height: 2037px;
}

.carousel-fade .carousel-inner .item:after {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,.5);
}

.carousel-fade .carousel-inner .active {
  opacity: 0.9;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 0.9;
}
.carousel-fade .carousel-control {
  z-index: 2;
}

.left-control, .right-control {
  position: absolute;
  top: 50%;
  height: 51px;
  width: 51px;
  line-height: 48px;
  border-radius: 50%;
  border:1px solid #fff;  
  z-index: 20;
  font-size: 24px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.left-control {
  left: -51px
} 

.right-control {
  right: -51px;
}

.left-control:hover, 
.right-control:hover {
  color: #fff;
}

#home-slider:hover .left-control {
  left:30px
} 

#home-slider:hover .right-control {
  right:30px
}

#home-slider .vamoscomecar {
  position: absolute;
  margin:auto auto!important;
  text-align:center;
  bottom: 100px!important;
  color: #fff;
  display: inline-block;
  width: 100%;
  font-size: 20px;
  font-style:normal!important;
  line-height: 24px;
  z-index: 999;
  -webkit-animation: bounce 3000ms infinite;
  animation: bounce 3000ms infinite;
}

#home-slider .fa-reply {
  position: absolute;
  margin:auto auto!important;
  text-align:center;
  bottom: 100px!important;
  color: #fff;
  display: inline-block;
  width: 100%;
  font-size: 24px;
  line-height: 24px;
  z-index: 999;
  -webkit-animation: bounce 3000ms infinite;
  animation: bounce 3000ms infinite;
}

.navbar-right li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  padding-top: 30px;
  padding-bottom: 30px;
}

.navbar-right li.active a {
  background-color: rgba(0,0,0,.2);
}

.navbar-brand h1 {
  margin-top: 5px;
}

/*************************
********Service CSS*******
**************************/

.service-icon {
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-size: 36px;
  height: 90px;
  line-height: 90px;
  width: 90px;  
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.service-icon2 {
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-size: 36px;
  height: 90px;
  line-height: 90px;
  width: 90px;  
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  background-color:#232323;
}

.our-services .col-sm-4:hover .service-icon {
  background-color: #333333;
}
.our-services .col-sm-4:hover .service-icon2 {
  background-color: #535353;
}

.our-services .col-sm-4 {
  border-right:0px solid #f2f2f2;
  border-bottom:0px solid #f2f2f2;
  padding-bottom: 50px;
}

.our-services .col-sm-4:nth-child(4), 
.our-services .col-sm-4:nth-child(5), 
.our-services .col-sm-4:nth-child(6) {
  border-bottom:0;
  padding-top: 60px;
}

.our-services .col-sm-4:nth-child(3), 
.our-services .col-sm-4:nth-child(6) {
  border-right:0;
}

.service-info h3 {
  margin-top: 35px;
}

/*************************
********About CSS*******
**************************/
#sobre {
  background-image: url(../images/about-bg.jpg);
  padding: 60px 0;
}

#sobre h2 {
  margin-top: 0;
  color: #fff;
}

#sobre .lead {
  font-size: 16px;
  margin-bottom: 10px;
}

#sobre h1 {
  margin-bottom: 30px;
}

.progress{
  height: 20px;
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  margin-bottom: 25px;
}

.progress-bar{
  box-shadow: none;
  -webkit-box-shadow: none;
  text-align: right;
  padding-right: 12px;
  font-size: 12px;
  font-weight: 600;
}


.progress .progress-bar.six-sec-ease-in-out {
  -webkit-transition: width 2s ease-in-out;
  transition:  width 2s ease-in-out;
}

/*************************
********portfolio CSS*****
**************************/

#portfolio .container-fluid, 
#portfolio .col-sm-4  {
  overflow: hidden;
  padding: 5px;
}

#portfolio .folio-item {
  position: relative;
}

#portfolio .overlay {
  background-color: #000;
  color: #fff; 
  left: 0;
  right:0;
  bottom:-100%;
  height: 0;
  position: absolute;
  text-align: center;
  opacity:0;  
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.overlay .overlay-content {
  display: table;
  height: 100%;
  width: 100%;
}

.overlay .overlay-text {
  display: table-cell;
  vertical-align: middle;
}

.overlay .folio-info {
  opacity: 0;
  margin-bottom: 75px;
  margin-top: -75px;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.overlay .folio-info h3 {
  margin-top: 0;
  color: #fff;
}

.folio-overview a {
  font-size: 18px;
  color: #333;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
  margin-top: 20px;
  margin-right: 5px;
}

.folio-overview a:hover {
  color: #fff;
}

.folio-overview .folio-expand {
  margin-top: -500px;
  margin-left: -500px;
}

.folio-image, .folio-overview .folio-expand {
  -webkit-transition: all 1.0s ease-in-out;
  transition: all 1.0s ease-in-out;
}

#portfolio .folio-item:hover .folio-image {
  -webkit-transform: scale(1.3) rotate(-10deg);
  transform: scale(1.3) rotate(-10deg);
}

.folio-image img {
  width: 100%;
}

#portfolio .folio-item:hover .overlay {
  opacity: 0.8;
  bottom: 0;
  height: 100%;
}

#portfolio .folio-item:hover .folio-overview .folio-expand {
  margin-top: 0;
  margin-left:0;
}

#portfolio .folio-item:hover .overlay .folio-info {
  opacity: 1;  
  margin-bottom:0;
  margin-top:0;
}


#single-portfolio {
  padding: 90px 0;
  background: #f5f5f5;
  position: relative;
}

#single-portfolio img {
  width: 100%;
  margin-bottom: 10px;
}

#single-portfolio .close-folio-item {
  position: absolute;
  top: 30px;
  font-size: 34px;
  width: 34px;
  height: 34px;
  left: 50%;
  color: #999;
  margin-left: -17px;
}

/*************************
*********Team CSS*********
**************************/
#team {
  padding-top: 0;
}

.team-members {
  margin-bottom: 25px;
}

.social-icons {
  margin-top:30px;
  text-align: center;
}

.social-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.social-icons ul li {
  float: left;
  margin-right: 8px;
}

.social-icons ul li:last-child {
  margin-right: 0;
}

.social-icons ul li a {
  color:#fff;
  background-color: #d9d9d9;
  height: 36px;
  width: 36px;
  line-height: 36px;
  display: block;
  font-size: 16px;
  opacity: 0.8;
}

.social-icons ul li a:hover {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.team-member {
  text-align: center;
  color: #333;
  font-size: 14px;
}

.team-member:hover .social-icons ul li a.facebook {
  background-color: #3b5999;
}
.team-member:hover .social-icons ul li a.twitter {
  background-color: #2ac6f7;
}
.team-member:hover .social-icons ul li a.dribbble {
  background-color: #ff5b92;
}
.team-member:hover .social-icons ul li a.linkedin {
  background-color: #036dc0;
}
.team-member:hover .social-icons ul li a.rss {
  background-color: #ff6b00;
}

#team .img-responsive {
  width: 100%;
}

.member-info h3 {
  margin-top: 35px;
}

.member-info h4 {
  font-size: 14px;
  margin-bottom: 15px;
  color: #999;
}


/*************************
*******Features CSS*******
**************************/
#features {
  text-align: center;
  background-image: url(../images/features-bg.jpg);
}

#features i {
  font-size: 48px;
}

#features h3 {
  margin-top: 15px;
  font-size: 30px;
  margin-bottom: 7px;
  color: #fff;
}

#features .slider-overlay {
  opacity: 0.8;
}


/*************************
*****Pricing Table CSS****
**************************/
.pricing-table {
  text-align: center;
}

.single-table {
  padding: 30px 20px 20px;
  border:0px solid #f2f2f2;
}

.single-table h3 {
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.price {
  font-size: 18px;
  line-height: 36px;
  text-align: center!important;
}

.price2{
  font-size: 26px;
  line-height: 26px;
}

.price span {
  font-size: 12px!important;
  line-height: 12px;
}

.price2 span {
  font-size: 12px!important;
  line-height: 12px;
}

.single-table ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.single-table ul li {
  line-height: 30px;
}

.single-table.featured {  
  color: #fff;
}

.single-table.featured h3 { 
  color: #fff;
}

.single-table.featured .btn.btn-primary {
  background-color: #fff;
}

/*************************
********Twitter CSS*******
**************************/
#twitter {
  background-image: url(../images/twitter-bg.jpg);
}

#twitter > div {
  text-align: center;
  position: relative;
}

#twitter-carousel {
  position: relative;
  z-index: 15
}

.twitter-icon {
  position: relative;
  z-index: 15;
  color: #fff;
}

.twitter-icon .fa-twitter {
  font-size: 24px;
  height: 64px;
  width: 64px;
  line-height: 65px;
  border-radius: 50%; 
  position: relative;
}

.twitter-icon .fa-twitter:after {
  position: absolute;
  content: "";
  border-width: 8px;
  border-style: solid;
  left: 24px;
  bottom: -14px;
}

#twitter-carousel .item {
  padding: 0 55px;
}

#twitter-carousel .item a {
  color: #fff;
}

.twitter-icon h4 {
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 25px;
  color: #fff;
}

.twitter-left-control, 
.twitter-right-control {
  position: absolute;
  top: 50%;
  color: #fff;
  border: 1px solid #fafafa;
  height:34px;
  width: 34px;
  line-height: 31px;
  margin-top: -17px;
  font-size: 18px;
  border-radius: 50%;
  z-index: 15
}

.twitter-left-control {
  left: 80px;
} 

.twitter-right-control {
  right: 80px
}

.twitter-left-control:hover, .twitter-right-control:hover {
  color: #fff;
}


/*************************
**********ALUGUEL DE CONTAINER CSS********
**************************/

.aluguel-container {
  position: relative;
}

.img-container{
  float: center;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.img-container-2{
  float: center;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.aluguel-container-icon {
  position: absolute;
  top:10px;
  right:10px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius:4px;
  text-align: center;
  color: #fff;
  font-size: 12px;
}

.aluguel-container-meta {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.aluguel-container-meta span {
  margin-right: 16px;
}

#aluguel-container-carousel .carousel-indicators {
  bottom: 3px;
  left: 90%;
}

.aluguel-container-left-control, .aluguel-container-right-control {
  position: absolute;
  top: 45%;
  width: 30px;
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: 36px;
}

.aluguel-container-left-control {
  left: 0;
}

.aluguel-container-right-control {
  right: 0;
}

.aluguel-container-left-control:hover, .blog-right-control:hover {
  color: #fff;  
}

.entry-header h3 a {
  line-height: 30px;
}

.entry-header .date, 
.entry-header .cetagory {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
}

.entry-header .date:after {
  content: "";
  position: absolute;
  left: 0;
  bottom:-22px;
  width: 20px;
  height: 3px;
}

.entry-content {
  font-size: 14px;
}

.load-more {
  display:block;
  text-align: center;
  margin-top: 70px;
}

.btn-loadmore {
  border: 1px solid #f2f2f2;
  color: #666666;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 125px;
  text-transform: uppercase;
}

.btn-loadmore:hover {
  color:#fff;
}

/*************************
**********Contact CSS*****
**************************/

#contact {
  padding-top: 45px;
  padding-bottom: 0;
}

#google-map {
  height: 350px;
}

#contact-us {
  background-image:url(../images/contact-bg.jpg);
  padding-bottom: 90px; 
  
}

#contact-us .heading {
  padding-top: 95px;
}

.form-control {
  background-color: transparent;
  border-color: #8B8989;
  height: 50px;
  border-radius: 10px;
  box-shadow: none;
  color:#fff;
}

textarea.form-control {
  min-height: 180px;
  resize:none;
}

.form-group {
  margin-bottom: 30px;
}

.contact-info {
  padding-left:70px;
  font-weight: 300;
}

ul.address {
  margin-top: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info ul li {
  margin-bottom: 8px;
}

.contact-info ul li a {
  color: #fff;
}

.btn-submit {
  display: block;
  padding: 12px;
  width: 100%;
  color: #fff;
  border:0;
  margin-top: 40px;
}

#footer {
  color:#fff;
}

.footer-top {
  position: relative;
  padding:30px 0
}

#footer .footer-bottom {
  background-color: #fff;
  padding: 20px 0 10px;
}

#footer .footer-bottom a:hover {
  text-decoration: underline;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 5px;
}

#footer .social-icons {
  margin-top: 15px;
}

#footer .social-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .social-icons ul li a {
  background-color: #e31d23;
  border-radius: 4px;
  line-height: 33px;
  border: 1px solid #000;
  color: #fff;
}

#footer .social-icons ul li a:hover {
  color: #fff
}

#footer .social-icons ul li a.envelope:hover {
  background-color: #CECB26;
}

#footer .social-icons ul li a.facebook:hover {
  background-color: #3b5999;
}
#footer .social-icons ul li a.twitter:hover {
  background-color: #2ac6f7;
}
#footer .social-icons ul li a.dribbble:hover {
  background-color: #ff5b92;
}
#footer .social-icons ul li a.linkedin:hover {
  background-color: #036dc0;
}
#footer .social-icons ul li a.tumblr:hover {
  background-color: #ff6b00;
}

/*Presets*/


#fa-color{
color:#FFA07A;
font-size:20px;

}
#fa-color2{
color:#9ACD32;
font-size:25px!Important;
}

.websandoor{
width:80%;
}

.graficaimprimir{
border-radius:15px;
width:60%;
}

.portfolio636films{
border-radius:15px;
width:85%;
}

.novembroazul{
border-radius:15px;
width:60%;
}

.dcardinama{
 width:60%; 
}

.cartaodigital{
border-radius:15px;
width:90%;
}

.minisite{
border-radius:20px;
width:60%;
margin-bottom:100px;
}

.cliqueminisite{
border-radius:0px;
width:25%;
margin-bottom:50px;
}

.colorprogress1{
background-color:#028fcc!important;
}

.colorprogress2{
background-color:#028fcc!important;
}
.colorprogress3{
background-color:#028fcc!important;
}
.colorprogress4{
background-color:#028fcc!important;
}
.colorprogress5{
background-color:#028fcc!important;
}
.colorprogress6{
background-color:#028fcc!important;
}

.reajusteparceiros{
width:200px!important;
margin: auto auto;
padding-bottom:35px;
}

.reajusteparceiros2{
width:200px!important;
margin: auto auto;
}

#scroll{
width:120px!important;
padding-left:30px;
padding-right:30px;
padding-top:10px;
padding-bottom:10px;
background-color:#e31d23;
color:#fff!important;
border-radius: 5px 5px 0 0;
}

#scroll:hover{
width:120px!important;
padding-left:30px;
padding-right:30px;
padding-top:10px;
padding-bottom:10px;
background-color:#000;
color:#fff!important;
border-radius: 5px 5px 0 0;
}

#sizetextcont{
font-size:18px;
}

.bg_video{
	position: fixed; 
	min-width: 100%; 
	min-height: 100%;
	height: 120%; 
	width: auto; 
	z-index: 1;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

#sizeavatar{
max-width:100%!important;
margin-bottom:30px;

}

.sizequadroavatar{
width:100%!important;
text-align:center;
}

.cursorhelp{
cursor:help;
}

.cursormodelo{
cursor:point;
}

.fa-thumbs-o-up{
font-size:45px;
}

.text-success{
font-size: 14pt;
color:#fff;
}

#sizeenviadosucesso{
font-size:16pt!important;
}

.responsavel{
float: right;
}

.historiajust{
text-align: justify;
font-size: 14PT;
font-weight: 500;
text-shadow: 2px 2px #000000;
}

.avatarevo{
max-width:250px!important;
width:100%;
margin-top:-18px;
}

.aumentaIMG a span{display:none; font-size:10pt; text-align:center; color:#fff; padding-top: 30%; } 
.aumentaIMG a:hover span{background-color:#028fcc; display:block; position:absolute; z-index:100; width:100%; height:100%; opacity:0.9; background-image: linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,.4), rgba(255,255,255,0), rgba(255,255,255,.4)); } 
.aumentaIMG a:hover span img{background: #fff;} 
.aumentaIMG a:hover em{z-index:1; display:none;} 
.aumentaIMG a img{border:#000 0x solid;} 
.aumentaIMG a:hover img{border:#000 0px solid;}

#sustainable_website{
margin-top:-10px;
margin-bottom:10px;
}

.fa-home{
font-size:18px;
}

.selo_google{
border-radius:5px;
margin-right:10px;
margin-left:10px;
}


/* 636films config  */
.fa-archive{
font-size:80px;
padding-bottom:15px;
color: #CD5C5C;
}
.fa-glass {
font-size:80px;
padding-bottom:15px;
color: #CD5C5C;

}

.fa-briefcase {
font-size:80px;
padding-bottom:15px;
color: #CD5C5C;
}

.fa-picture-o{
font-size:80px;
padding-bottom:15px;
color: #CD5C5C;
}

.indicador{
width: auto;
height: auto;
background-color: transparent;
-moz-border-radius:7px;
-webkit-border-radius:7px;
 border-radius:7px;
 border: 1px solid #BEBEBE;
}

.indicador2{
   -webkit-appearance: none;  /* Remove estilo padrão do Chrome */
   -moz-appearance: none; /* Remove estilo padrão do FireFox */
   appearance: none; /* Remove estilo padrão do FireFox*/
	background-color: #000;
	opacity:0.3;
}

#checkbox{
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
	
}#checkbox:hover{
	cursor: pointer;
}

.fa-eye{
font-size:20px;
margin-left:8px;
color:#1E90FF;
cursor: pointer;
}

#imputname2{
color:#000;
cursor:pointer;
}

#imputemail2{
color:#000;
cursor:pointer;
}

#imputobsl2{
color:#000;
}

#imputcolor{
cursor:pointer;
}

.checkedmss{
color:#FF0000;
}

.dcard{
width:100%;
height:auto;
}

.relogiocolor{
color:#FFA500;
font-size:14pt;

}

.relogiocolorpro{
color:#fff;
font-size:14pt;
}

.fa-angle-double-down{
color:fff!important;
font-size:14pt;
}

.containertop{
position:relative;
z-index:1!important;
float: center;
margin-top: -15px;
width: 185px;
}

.fa-angle-down{
color:#e31d23!important;
font-size: 40pt!important;
}

.iconservicos{
  width:120px;
}

.responsivo_texto{
  font-size: 12pt;
}

.fa-mobile{
  color:#fff;
}

.fa-laptop{
  color:#fff;
}

.fa-thumbs-up{
  color: #fff;
}

.fa-whatsapp{
  color: #fff;
}

.sessoesmodelo{
  margin-top: -10px;
  font-size: 9pt;
  color: #FF8C00;
  line-height: 18px;
}

.sessoesmodeloazul{
  margin-top: -10px;
  font-size: 9pt;
  color: #000000;
  line-height: 18px;
}

/* Conteúdo da lista VIP */

.container_listavip{
  position: relative;
  width: 100%;
  height: auto;
}

.bannerlistavip{
  position: relative;
  width: 80%;
  margin-bottom: 50px;
  margin-left: 10px;
}

.conteudo_listavip{
  width: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 30px;
  font-size: 16pt;
}

.botao_cadastrar a:hover{
  opacity: 0.6;
}

.fa-arrow-down{
  font-size: 50px;
  color:#32CD32;
  margin-top: 20px;
}

#whatsapp_direct{
position: relative;
z-index:1;
color:#fff!important;
font-weight: bold;
font-size: 12pt;
}

.icon_zap_top{
  font-size: 30pt;
  color: #32CD32;
  float: right;
  margin-right: 40px;
  margin-top: 30px;
}

hr{
  border-top: 1px dashed #ccc;
  width: 90%
  margin-bottom:-50px;
}

#tarja{
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
}

.tarja{
  position: relative;
  height: 140px;
  margin: 20px;
}

.texttarja{
  font-size: 16pt;
  margin-bottom: 20px;
}

.texttarjasub{
  margin-top: 30px;
  font-size: 12pt;
  text-align: center;
}

/* Galeria de fotos */


.gallery-title
{
    font-size: 36px;
    color: #42B32F;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}
.gallery-title:after {
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid #017fb5;
}
.filter-button
{
    font-size: 12px;
    border: 2px solid #017fb5;
    border-radius: 5px;
    text-align: center;
    color: #017fb5;
    margin-bottom: 30px;

}
.filter-button:hover
{
    font-size: 12px;
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    background-color: #017fb5;

}
.btn-default:active .filter-button:active
{
    background-color: #e31d23;
    color: white;
}

.port-image
{
    width: 100%;
}

.gallery_product
{
    margin-bottom: 10px;
}

#galeria_position{
  width: 260px;
}

.footer-bottom{
  color: #000!important;
}

.bottonindustrial{
  width: auto;
  height: 50px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #000;
  color: #fff;
  border: 0;
  border-radius: 10px;
}

.tituloindustrial{
  font-size: 18pt;
  padding-top: 30px;
}

.textindustrial{
  font-size: 11pt;
  margin-top: -40px;
  padding: 50px 20px;
  text-align: justify;
}
/*/INDUSTRIAL*/

/*RESIDENCIAL*/
.selectresidencial{
  float: right;
  width: 100%;
  height: auto;
  margin-top: -40px;
}

.tituloresidencial{
  width: 100%;
  height: auto;
  margin-top: -20px;
}

.bottonresidencial{
  width: 95%;
  height: 50px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #000;
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-size: 12pt;
  font-weight: 400;
  line-height: 1;
}

.tituloresidencial{
  font-size: 18pt;
  padding-top: 20px;
}

.textresidencial{
  font-size: 11pt;
  padding:50px;
  text-align: justify;
}
/*/RESIDENCIAL*/

.nomenclaturaprincipal{
  padding-top: 15px!important;
  color: #e31d23!important;
  font-size: 16pt!important;
  font-weight: 600!important;
}

.zapzapmenu{
  width: 40px;
  margin-top: -5px;
}

.fa-check{
  color: #e31d23;
  margin-right: 5px;
}

.fraseImpacto{
  font-weight: 600!important;
  margin-top: -20px;
  color: #e31d23!important;
  font-size: 16pt!important;
  font-family: Arial, Helvetica, sans-serif;
}

.whatsapp-flutunte {
    position: fixed;
    bottom: 10px;
    right: 8px;
    width: 100px;
}

.topo-flutunte {
    position: fixed;
    bottom: 110px;
    right: 37px;
    width: 40px;
    outline: 3px solid red;
    outline-offset: 5px;
    border-radius: 50%;
}