/* Theme Name: Zuscon - Landing page Template
   Author: Zoyothemes
   Version: 1.1.0
   Created:July 2016
   Last Update: August 2016
   File Description:Main CSS file of the template
*/


/*---------------------

Table of contents

1. Reset
2. Helper classes 
3.Bootstrap Components
4. Navbar Custom
5. Home
5.A CUSTOM
6. Features
7.Services
8. Brand
9. Section CTA
10. Team
11. Pricing
12. Testimonials
13. FAQ
14. Footer
15. Intro Form
16. Home Product
17. Home Video
18. Subscribe Form
19. Home Countdown
20. Responsive

---------------------*/

/* COMUNES */
.transition{
  -webkit-transition: all ease-in-out .3s; /* Safari */
  transition: all ease-in-out .3s;
}


/*======= 1.Reset ======== */
body {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  color: #4c5667;
  background: #fff;
  font-size: 18px;
  line-height: 22px;
  overflow-x:hidden;
}

::selection{
  background: #dadada;
  color: #fff;
}

::-moz-selection {
  background: #dadada;
  color: #fff;
}

a:hover,a:focus,.a:active {
  text-decoration: none;
  outline: none !important;
}

blockquote {
  margin: 0 0 10px;
  font-size: 18px;
  border-left: none;
  line-height: 32px;
  font-style: italic;
}

address {
  color: #97a0af;
}

textarea {
  resize:none;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Ubuntu', sans-serif;
}

h1,.h1 {
  font-weight: 700;
  line-height: 48px;
}

h5 {color: #000000; font-size: 20px;}

iframe {
  max-width: 100%;
}

/*======= 2.Helper classes ======== */

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.parallax {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
}

.bg-gray {
  background-color: #f5f5f5;
  border-bottom: 1px solid #f6f6f6;
  border-top: 1px solid #f6f6f6;
}

.bg-dark {
  background-color: #334159;
  position: relative;
  background-image: url("../images/bg-pattern.png");
  background-repeat: repeat;
}

.bg-img-1 {
  background: url("../images/bg1.jpg");
  background-size: cover;
  position: relative;
}

.bg-img-2 {
  background: url("../images/seguridad-barrios-cerrados/seguridad-barrios-cerrados-footer.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
}

.bg-img-3 {
  background: url("../images/bg3.jpg");
  background-size: cover;
  position: relative;
}

.bg-img-4 {
  background: url("../images/consorcios.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
}
.header_img_mobile { display: none; width: 100%; }

.bg-img-5 {
  background: url("../images/bg5.jpg");
  background-size: cover;
  position: relative;
}

.bg-overlay {
  background: rgba(0,0,0,0.25);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}

.bg-overlay-dark {
  background: rgba(0,0,0,0.5);
}

.title {
  font-weight: 300;
  line-height: 50px;
  margin-top: 0px;
}

.sub-title {
  color: #97a0af;
  font-size: 16px;
  margin-bottom: 50px;
}
.title-hr {
  height: 4px;
  width: 60px;
  margin: 25px auto 20px;
  background: #dadada;
  border-radius: 4px;
}

.page-sub-title {
  margin: 10px 0px !important;
}

.hr {
  display: inline-block;
  border: 0;
  width: 35px;
  margin: 12px 0px 25px;
  padding: 0;
  height: 0;
  border-top: 2px solid #ffca05;
}

.padding-t-0 {
  padding-top: 0px;
}

.font-bold {
  font-weight: 700;
}

.text-muted {
  color: #ffffff;
}

.bg-custom {
  background-color: #ffca05 !important;
}

.text-secondary {
  color: #dadada;
}

.active-text {
  background-color: #dadada;
  padding: 0 10px;
  color: #ffffff;
}

/* PRE LOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fefefe;
  z-index: 99999;
  height: 100%;
  width: 100%;
  overflow: hidden !important;
}

.status {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url("../images/preloader.gif");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  margin: -20px 0 0 -20px;
}

/*======= 3.Bootstrap Components ======== */

/*== Dropdown == */
.dropdown-menu {
  box-shadow: none;
  padding: 4px 0;
  border-radius: 4px !important;
  -webkit-animation: dropdownOpen 0.3s ease-out;
  -o-animation: dropdownOpen 0.3s ease-out;
  animation: dropdownOpen 0.3s ease-out;
  border: 0;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
}
.dropdown-menu > li > a {
  padding: 6px 20px;
  font-size: 15px !important;
  color: #ffffff;
}
@-webkit-keyframes dropdownOpen {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes dropdownOpen {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}


/*== Buttons == */
.btn {
  text-transform: uppercase;
  font-weight: 700;
  padding: 11px 30px;
}
.btn.btn-rnd {
  padding: 11px 40px;
  border-radius: 30px;
}
.btn-custom {
  background: #ffca05;
  -webkit-box-shadow: 0px 2px 0px #cc5265 !important;
  box-shadow: 0px 2px 0px #cc5265 !important;
  color: #ffffff !important;
}
.btn-custom:focus,.btn-custom:hover {
  background: #cc5265;
  border: 1px solid #cc5265;
  outline: none;
}
.btn-secondary, .btn-green, #call a {
  background-color: #ffca05;
  border-radius: 5px;
  color: #000000;
  -webkit-box-shadow: 1px 1px 3px 1px rgba(119,119,119,.48);
  -moz-box-shadow: 1px 1px 3px 1px rgba(119,119,119,.48);
  box-shadow: 1px 1px 3px 1px rgba(119,119,119,.48);
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.img_landings{
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.img_landings:hover { opacity: 0.6; }

.btn-secondary:focus,.btn-secondary:hover, .btn-green:hover, #call a:hover {
  background-color: #8C8989;
  color: #ffffff;
}


/*===== 4. Navbar Custom ======*/

.navbar-custom{
  background-color: #000000;
  -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.1);
     -moz-box-shadow: 0 2px 2px rgba(0,0,0,.1);
          box-shadow: 0 2px 2px rgba(0,0,0,.1);
  width: 100%;
  border-radius: 0px;
  z-index: 999;
  padding: 10px 0px;
  margin-bottom: 0px;
  transition: background-color 1s ease-in-out, border 1s ease-in-out;
  -moz-transition: background-color 1s ease-in-out, border 1s ease-in-out;
  -webkit-transition: background-color 1s ease-in-out, border 1s ease-in-out;
  -o-transition: background-color 1s ease-in-out, border 1s ease-in-out;
  border: 0;
}

.navbar-custom .navbar-nav li a {
  color: #ffffff;
  font-size: 18px;
  font-family: 'Ubuntu', sans-serif;
  text-transform: uppercase;
}

.navbar-custom .navbar-nav li a:hover,.navbar-custom .navbar-nav li a:focus,.navbar-custom .navbar-nav li a:active {
  color: #222;
}

.navbar-custom .nav>li>a:focus,.navbar-custom .nav>li>a:hover {
  /*background-color: #ffffff;*/
}

.navbar-custom .navbar-nav li.active a {
  color: #ffca05 !important;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff !important;
  letter-spacing: 1px;
}

.logo i{
  font-size: 28px;
  vertical-align: middle;
  color: #dadada;
}

.logo span{
  vertical-align: middle;
}

.navbar-toggle {
  color: #77787b;
  background-color: #cbccce;
  font-size: 30px;
  margin-top: 5px;
  margin-bottom: 0px;
}

.navbar-custom .btn-custom {
  margin-top: 8px;
  margin-left: 20px;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
  background-color: transparent;
  border-color: #337ab7;
}


/*======= 5.Home =======*/

.home-wrapper {
  color: #ffffff;
  padding: 150px 0px 150px 0px;
}
.home-wrapper p {
  line-height: 26px;
  margin-top: 30px;
  color: #eee;
  margin-bottom: 40px;
  font-size: 16px;
}
.video-btn {
  color: #ffffff !important;
  letter-spacing: 1px;
  padding-top: 20px;
  outline: none !important;
}
.video-btn i {
  margin-right: 7px;
}


/*======= 5.A Custom =======*/

/*HEADER*/
header {padding: 20px!important;}

/* LOGOS CARROUSEL */
.slider {
  width: 100%;
  margin: 0;
}
.slick-slide {
  margin: 0;
}
.slick-slide img {
  width: 100%;
}
.slick-prev:before,
.slick-next:before {
  color: black;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
/***********************/

#trabajos h2{padding: 20px;}

/*GRACIAS*/
.otras-landing h3 { 
  background-color: rgb(0,0,0,0.6);
  color: #ffffff;
  position: relative;
  bottom: 75px;
  left: 0;
  max-width: 100%;
  padding: 10px;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.otras-landing h2 {color: #4c5667; -webkit-transition: color 0.5s; transition: color 0.5s;}
.otras-landing h2:hover, .otras-landing h3:hover {color: #ffca05; }

.otras-landing img {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.otras-landing img:hover { opacity: 0.8 ;}

.exitoso {line-height: 34px;}

/*CONTACTO*/
.error ul {padding: 0;}
.error{display: inline-block; color: red; font-size: 0.5em; margin-top: 15px;}

.bold{font-weight: bold;}
.shadow{box-shadow: 0px 0px 8px 0px #888888;}
#call{padding: 60px 0px;}
#call a {display: inline-block; font-size: 27px;}
.margin_bottom_30{margin-bottom: 30px!important; }
.margin_bottom_60{margin-bottom: 60px; }
.destacado{padding: 20px; background-color: #dadada; color:#000000;}
.destacado_secundario{background-color: #ffca05; color: #000000; padding: 20px;}
.active-text{background-color: #dadada; padding: 5px; line-height: 55px;}
h2.active-text{ font-size: 26px;}
h3.destacado_negro{line-height: 35px!important;}
.width_100 {width: 100%;}

.checkbox {
  margin: 0;
  font-size: 14px; 
  font-weight: normal;
  color: #b7b7b7!important; 
}

.flex-container {
  display: flex;
  height: 400px;
  align-items: center;
}

.titulo_landing{font-size: 40px; margin: 30px;}

footer .navbar-nav {float: none!important;}
footer .navbar-nav li {float: none!important;}

.destacado_negro{ background-color: #00000095; padding: 10px;}

/*.SEGUIDOR */
#seguidor{
  position: fixed;
  width: 150px;
  height: 205px;
  background-color: #fff;
  z-index: 20;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: auto;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,.5);
  -moz-box-shadow: 0 0 2px 0 rgba(0,0,0,.5);
  box-shadow: 0 0 2px 0 rgba(0,0,0,.5);
  padding: 45px 10px 10px;
}

.click-to-call-mobile {
  width: 60px;
  height: 60px;
  background-color: #eee;
  position: absolute;
  top: -25px;
  left: 50%;
  margin-left: -30px;
  border-radius: 50%;
  font-size: 2em;
  -webkit-box-shadow: 1px 1px 3px 1px rgba(119,119,119,.48);
  -moz-box-shadow: 1px 1px 3px 1px rgba(119,119,119,.48);
  box-shadow: 1px 1px 3px 1px rgba(119,119,119,.48);
}

.ion-ios-mail, .ion-ios-location, .ion-ios-email, .ion-ios-telephone, .ion-ios-world {
  margin-right: 15px;
}

.ion-ios-telephone{
  position: absolute;
  top: 14px;
  left: 30%;
}

.footer_tel {
  position: relative!important;
  top: 0;
  left: 0;
  margin-right: 15px;
}

.btn-green{
  padding: 10px;
  position: absolute;
  right: 23px;
  bottom: -17px;
  border: none!important;
}

.btn_mas_info{
  padding: 10px;
  border: none!important;
  background-color: #000000;
  border-radius: 5px;
  color: #ffca05;
  -webkit-box-shadow: 1px 1px 3px 1px rgba(119,119,119,.48);
  -moz-box-shadow: 1px 1px 3px 1px rgba(119,119,119,.48);
  box-shadow: 1px 1px 3px 1px rgba(119,119,119,.48);
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
.btn_mas_info:hover{border: none!important; background-color: #ffca05; color: #000000;}



.modal-title {display: inline-block!important;}
.subtitulo{background-color: #000000; color: #ffca05; padding: 10px;}
.confian{background-color: #000000; color: #ffffff; padding: 10px;}
.lideres{background-color: #ffca05; color: #000000; padding: 20px; margin-bottom: 0;}
.servicios{color: #000000; margin:30px 0;}
#cerrar-seguidor{position: absolute; top: 0; right: 5px; border: none; background-color: #ffffff; margin-top: 5px;}
#cerrar-seguidor:hover{opacity: 0.6;}
#modal{top: 150px;}
#envia{clear: both;  margin-top: 15px; }
#envia:hover{background-color: #8C8989; color: #ffffff;}

#seguidor-tel{display: none;}

.bg-grey{background-color: #dadada;}

/*======= 6.Features =======*/

.features-txt {
  color: #97a0af;
  font-size: 22px;
  line-height: 30px;
  margin-top: 30px;
}

/*======= 7.Services =======*/
.service-item {
  margin-bottom: 30px;
}
.service-item img {
  float: left;
  width: 80px;
}
.service-item .service-detail {
  margin-left: 100px;
  padding-right: 20px;
}
.service-item .service-detail p {
  color: #9aa7af;
  line-height: 26px;
}



/*======= 8.Brand =======*/
.clients {
  padding-top: 60px;
}
.clients img {
  opacity: 0.7;
}
.clients img:hover {
  opacity: 1;
  transition: 0.5s;
}
.brand-item {
  display: inline-block;
  margin-left:50px;
  margin-bottom: 10px;
}
.brand-item:first-child {
  margin-left:0;
}
.brand-list {
  margin:0;
  padding:0;
}
.brand-list li {
  display: inline-block;
  text-align: left;
  padding-left:50px;
}
.brand-list li:first-child {
  padding-left:0;
}




/*======= 9.Section CTA =======*/
.section-cta {
  color: #ffffff;
  padding: 100px 0;
}

.section-cta p {
  font-size: 18px;
}

.section-cta h2{
  margin: 40px;
}



/*======= 10.Team ======*/
.team img {
  max-width: 150px;
  margin: 0 auto;
}
.team .team-member {
  margin: 30px 0px;
}
.team .team-member h4 {
  padding-top: 10px;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
}
.team .team-member p {
  color: #97a0af;
}



/*======= 11.Pricing =======*/
.pricing-item{
  margin: 0 0 30px;
  position: relative;
  text-align: center;
}
.pricing-item-inner{
  vertical-align: middle;
  border: 2px solid rgba(151, 160, 175, 0.2);
  border-radius: 8px;
  background-color: #fff;
}

.best-value .pricing-item-inner{
  border: 2px solid #ffca05;
}

.pricing-topbar {
  background-color: #ffca05;
  color: #fff;
  padding: 30px;
  margin: -2px -2px 20px -2px;
  border-radius: 5px 5px 0 0;
}

.pricing-icon{
  padding-bottom: 10px;
  position: relative;
  font-size: 32px;
  z-index: 1;
}

.pricing-title{
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
  font-family: 'Ubuntu', sans-serif;
}

.pr-list{
  padding: 0;
  color: #4c5667;
  font-size: 15px;  
  margin-bottom: 20px;
}

.pr-list li{
  padding: 12px 20px;
  list-style: none;
}

.pricing-num{
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
}

.pricing-num sup{
  font-size: 18px;
  font-weight: 400;
  position: relative;
  top: -20px;
  left: -3px;
  margin-left: -7px;
}

.pr-per{
  color: #eee;
  font-size: 12px;
}

.pr-button {
  margin: 30px 0;
}



/*======= 12.Testimonials =======*/
.testimonials {
  color: #ffffff;
}
.clientblock {
  margin-top: 30px;
}



/*======= 13.FAQ ======*/
.question i {
  margin-right: 5px;
  font-size: 24px;
  vertical-align: middle;
}
.answer {
  color: #97a0af;
  margin-bottom: 40px;
}



/*======= 14.Footer =======*/
.footer {
  background-color: #000000;
  padding-top: 60px;
  padding-bottom: 10px;
}

.footer a, footer p{
  color: #c8c8c8;
}

.footer a:hover {
  opacity: 0.6;
  display: inline-block;
}

.footer_datos{ text-align: center; margin-bottom: 30px; color: #c8c8c8; font-size: 16px;}  

.derechos, .libre{margin-top: 15px; font-size: 14px; margin:0; padding: 0; }

.libre { font-size: 10px;}

.menu-list li a {
  color: #ffffff;
  display: inline-block;
  font-weight: 500;
  margin: 10px;
}

.social-circle {
  margin: 50px 0 20px 0;
}

.social-circle li a {
  height: 36px;
  width: 36px;
  color: #4c5667;
  border-radius: 50%;
  font-size: 16px;
  display: inline-block;
  line-height: 36px;
  background-color: #ededed;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.social-circle li a:hover {
  color: #ffffff !important;
  background-color: #ffca05;
}


/* == 15. Intro Form == */

.home-intro h1{
  margin: 0;
  line-height: 65px;
  display: inline-block; 
  color: #ffca05; 
  font-weight: normal; 
  font-size: 50px;
}

.home-intro .home-wrapper {
  padding: 150px 0px 0px 0px;
}

.intro-form {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px 10px 0 0;
  border: 3px solid #eee;
  border-bottom: 0;
}

.intro-form .form-topbar {
  background-color: #ffca05;
  padding: 20px;
  margin-bottom: 30px;
}

.form-topbar h3{
  color: #000000;
  font-weight: bold!important;
}

.intro-form{
  font-size: 24px;
  margin: 0;
}

.intro-form input {
  border: 1px solid #eee;
  height: 38px;
  box-shadow: none !important;
}

/* == 16. Home Product == */

.home-product h1{
  margin: 0;
  font-size: 32px;
  line-height: 46px;
}

.home-product .home-wrapper {
  padding: 100px 0px;
}



/* == 17. Home Video == */

.home-video h1{
  margin: 0;
  font-size: 32px;
  line-height: 46px;
}



/* == 18. Subscribe Form == */

.subscribe-form form{
  position: relative;
  max-width: 600px;
  margin: 0px auto;
}

.subscribe-form input {
  padding: 15px 20px;
  width: 100%;
  font-size: 17px;
  color: #4c5667 !important;
  border: none;
  outline: none !important;
  padding-right: 150px;
  padding-left: 30px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
}

.subscribe-form button {
  position: absolute;
  text-transform: uppercase;
  top: 4px;
  right: 4px;
  outline: none !important;
  border-radius: 30px;
  font-size: 16px;
  padding: 9px 30px;
}


/* == 19. Home Countdown == */

.cs-countdown {
  color: #ffca05;
  margin-top: 40px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.cs-countdown > * {
  text-align: center;
}

.cs-countdown div {
  display: inline-block;
}

.cs-countdown div span {
  width: 180px;
  display: block;     
}

.cs-countdown div span:first-child {
  height: 48px;
  font-weight: 700;
  font-size: 4em;
  line-height: 48px;
}

.cs-countdown div span:last-child {
  height: 25px;
  font-size: 0.9em;
  line-height: 25px;
  color: #ffffff;
}




/* Dark Layout */
.dark-layout {
  background-color: #222;
}

.dark-layout .navbar-custom {
  background-color: #222;
}

.dark-layout .logo {
  color: #ffffff !important;
}

.dark-layout .navbar-custom .navbar-nav li a {
  color: #ffffff;
  background-color: transparent !important;
}
.navbar-nav li a:hover, .navbar-nav li a:focus {
  color: #d3a809!important;
  background-color: transparent !important;
}

.dark-layout .title {
  color: #ffffff;
}

.dark-layout .bg-gray {
  background-color: #f5f5f5;
  border: 0 !important;
}

.dark-layout .h1,.dark-layout .h2, .dark-layout .h3,.dark-layout .h4,.dark-layout .h5, .dark-layout .h6, 
.dark-layout h1, .dark-layout h2, .dark-layout h3,.dark-layout h4, .dark-layout h5, .dark-layout h6 {
  color: #f3f3f3;
}

.dark-layout .menu-list li a {
  color: #b5bac3;
}

.dark-layout .bg-overlay {
  background: rgba(0,0,0,0.5);
}

.dark-layout .pricing-item-inner {
  background-color: #eee;
}

.dark-layout .intro-form {
  background-color: #222;
  border: 3px solid #666;
  border-bottom: 0 !important;
}

.dark-layout .intro-form input {
  border: 1px solid #666;
  background-color: transparent;
  color: #ffffff;
}

.dark-layout .sub-title, .dark-layout .features-txt, .dark-layout .service-item .service-detail p, .dark-layout .answer {
  color: #7d828a;
}

/* RECAPTCHA */
#recaptcha, #rc-imageselect {
  margin: 10px auto;
  display: table;
}

@media (max-width: 991px) {
  .flex-container { height: auto; display: inline-block; text-align: center;}
  .separador {display: inline-block; border-bottom: solid 1px #000000;}
  h1 { font-size: 40px!important; }
  h2 { font-size: 25px!important; }
}


/*======= 20.Responsive ======*/
@media (min-width: 768px) {
  .bg-img-4 { background-position: 35% 0%; }
  
  .navbar-nav>li>a {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .dropdown-menu.arrow:before, .dropdown-menu.arrow:after {
    position: absolute;
    top: -8px;
    right: 12px;
    display: inline-block;
    content: '';
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff;
  }
  .dropdown-menu > li > a {
    color: #4c5667 !important;
  }
}

@media (max-width: 767px) {
  .dropdown-menu > li > a:hover {
    background-color: transparent;
    color: #ffffff;
  }
  .is-sticky .navbar-toggle {
    color: #111111;
  }
  .vertical-content {
    display: inherit;
  }

  .subtitulo{text-align: center!important;}
  #recaptcha, #rc-imageselect {
    -webkit-transform: scale(0.78);
    -moz-transform:    scale(0.78);
    -ms-transform:     scale(0.78);
    -o-transform:      scale(0.78);
    transform:         scale(0.78);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    position: relative;
    left: 5%;
  }

}

@media (max-width: 767px) {
  .bg-img-4 { background: none; }
  .header_img_mobile { display: inline-block; }

  .h1, h1 {
    margin-top: 15px!important;
    margin-bottom: 20px!important;
    font-weight: 700!important;
    font-size: 30px!important;
    color: black!important;
    line-height: 40px!important;
  }
  .destacado_negro { background: none!important; padding: 0; }
  .h2, h2 {
    font-size: 18px!important;
    line-height: 36px!important;
  }
  .form-topbar h3 { font-size: 2rem; margin: 0; }
  .home-wrapper h3 { margin: 0; }
  .home-wrapper { padding: 20px 0 !important; }
  .intro-form .form-topbar { padding: 15px 10px; }

  /*CUSTOM*/
  .destacado{padding: 10px;}
  .destacado h2{font-size: 20px!important;}
  .feature-detail {padding: 0px 0px 50px 0px !important;}
  #seguidor{display: none;}

  #seguidor-tel{
    display: inline-block; 
    position: fixed;
    background-color: #ffca05;
    border-radius: 5px;
    bottom: 20px;
    right: 20px; 
    z-index: 30;
    padding: 15px;
    -webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,.5);
    -moz-box-shadow: 0 0 2px 0 rgba(0,0,0,.5);
    box-shadow: 0 0 2px 0 rgba(0,0,0,.5);
  }
  #recaptcha, #rc-imageselect {
    -webkit-transform: scale(0.78);
    -moz-transform:    scale(0.78);
    -ms-transform:     scale(0.78);
    -o-transform:      scale(0.78);
    transform:         scale(0.78);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    position: relative;
    left: 5%;
  }
}

  #seguidor-tel a{ color: #3c3c3c;}
  #seguidor-tel a:hover{ color: #ffffff;}
  #seguidor-tel h5{ margin: 0px!important;}
  #cerrar-seguidor-tel{ background-color: #ffca05!important; border: none; }
  #cerrar-seguidor-tel:hover{ opacity: 0.6; }

@media (max-width: 576px) {
  .bg-img-4 { background: none; }
  .header_img_mobile { display: inline-block; }

  .h1, h1 {
    margin-top: 15px!important;
    margin-bottom: 20px!important;
    font-weight: 700!important;
    font-size: 26px!important;
    color: black!important;
    line-height: 40px!important;
  }
  .destacado_negro { background: none!important; padding: 0; }
  .h2, h2 {
    font-size: 18px!important;
    line-height: 36px!important;
  }
  .form-topbar h3 { font-size: 2rem; margin: 0; }
  .home-wrapper h3 { margin: 0; }
  .home-wrapper { padding: 20px 0 !important; }
  .intro-form .form-topbar { padding: 15px 10px; }
}