/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #2dc997;
}

a:hover, a:active, a:focus {
  color: #2dca98;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  left: 15px;
  bottom: 15px;
  transition: background 0.5s;
  float: left;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #2dc997;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(52, 59, 64, 0.9);
}

#header #logo {
  float: left;
}
#logoMarca{
  margin-top: -16px;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 5px;
  margin: 0 10px;
  width: 33%;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 26px;
  }
}

#header.header-transparent {
  background: transparent;
}

#header.header-fixed {
  background: rgba(22 108 170 / 90%);
  padding: 20px 0;
  height: 80px;
  transition: all 0.5s;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url(../img/fondo.jpg) top center;
  background-size: cover;
  position: relative;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 50%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
 
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

.subTitulo {
    width: 80%;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}

/*--------------------------------------------------------------
# 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 (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: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #2dc997;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .menu-active > a:before {
  visibility: visible;
  transform: scaleX(1);
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: #2dc997;
  color: #fff;
}

.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(52, 59, 64, 0.9);
  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: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#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: #2dc997;
}

#mobile-nav ul .menu-item-active {
  color: #2dc997;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  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
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #999;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: whitesmoke;
  min-height: 40px;
  margin-top: 92px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* About Us Section
--------------------------------*/
#about {
  background: #fff;
  padding: 40px 0;
}

#about .about-container .background {
  min-height: 500px;
  background: url(../img/policias.jpg) center no-repeat;
  margin-bottom: 10px;
}

@media (max-width: 450px) {
  #about .about-container .background {
  background: url(../img/policias1.jpg) center no-repeat;
}
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  #about .about-container .title {
    padding-top: 15px;
  }
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #2dc997;
}

#about .about-container .icon-box .icon i {
  color: #2dc997;
  font-size: 24px;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#about .about-container .icon-box .title a {
  color: #111;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/* Facts Section
--------------------------------*/
#facts {
  background: #f7f7f7;
  padding: 80px 0 60px 0;
}

.masDe{
  margin-bottom: 0px!important;
}

.section-description a:hover{
  transition: 2s;
  font-weight: bold;
  color: #2196f3;
}

.estrellas{
  color: #2196f3;
}
#facts .counters span {
  font-size: 48px;
  display: block;
  color: #2dc997;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

/* Services Section
--------------------------------*/
.rowServ{
  margin-top: 70px;
}

.custServ{
  margin-top: 50px;
}

#services {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

#services .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 215px;
  position: relative;
  background: #fafafa;
}
.imgPP{
  width: 70%;
}
.imgPL{
  width: 80%;
}
.imgCP{
  width: 65%;
}

#services .icon {
  position: absolute;
  top: -70px;
  left: calc(50% - 50px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100px;
  height: 100px;
  background: #fff;
  border: 2px solid #2dc997;
}

#services .icon a {
  display: inline-block;
} 

#services .icon i {
  color: rgb(22 108 170 / 90%);
  font-size: 60px;
}

#services .iCust i {
  color: rgb(22 108 170 / 90%);
  font-size: 40px;
}

#services .box:hover .icon {
  background: #2dc997;
  border: 2px solid #2dc997;
}

#services .box:hover .icon i {
  color: #f8faf9;
}

#services .box:hover .icon a {
  color: #2dc997;
}

#services .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#services .title a {
  color: #111;
}

#services .description {
  font-size: 14px;
  line-height: 24px;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

@media (max-width: 1024px) {
  #call-to-action {
    background-attachment: scroll;
  }
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}


/* Contact Section
--------------------------------*/
#ssl{
  display: flex;
}

.datosSeguros{
  font-size: 9px;
}

#imgSSL{
  width: 30%;
  margin-top: -26px;
  margin-left: 92px;
}

#contact {
  background: #f7f7f7;
  padding: 80px 0 40px 0;
}

#contact #google-map {
  height: 300px;
  margin-bottom: 20px;
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 32px;
  color: #2dc997;
  float: left;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(22 108 170);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: #2dc997;
  color: #fff;
}

.send{
  background: #2dc997;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.send:hover {
  background: #51d8ad;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Button Float WhatsApp
--------------------------------------------------------------*/
.botonwhats {
    width: 8rem;
    z-index: 1;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: -2.5rem;
}
.whats {
  width: 50%;
  margin-left: -4%;
  animation: point-up-down 1s linear infinite alternate;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    width: 52%;
    width: 56%; 
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background:rgba(22 108 170);
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

/*--------------------------------------------------------------
# CALCULADOR CUPO
--------------------------------------------------------------*/
.back{
   background: url(../img/img-cupo.png) center no-repeat;
   padding: 50px;
   margin-top: 30px;
   justify-content: center;
}

.grid {
  display: grid;
  grid-template-columns: 100px 250px 150px;
  margin: 0 auto;
  margin-top: 50px;
}

.haberes{
height: 60px;
}

.desLey{
height: 30px;
}

.ley13236{
height: 30px;
margin-top: 5px;
}

.imAfec{
height: 30px;
margin-top: 10%;
}

.oDes{
/*margin-top: 5px;*/
margin-left: 530px;
margin-top: -60px;
}

.texGrid{
padding-left: 10px;
border: solid 1px black;
}

.form-c {
    
    text-align: center;
    display: block;
    width: 100%;
    height: calc(0.5em + 1rem);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: hsl(59deg 94% 55% / 0%);
    background-clip: padding-box;
    border: none;
}

.monto{
  background-color: hsl(59deg 94% 55% / 48%);
  padding-left: 0;
}

.tit{
  text-align: center;
  font-size: .80rem;
}

.resFinal{
  font-weight:bold;
}

.resFiCustom{
  font-size: 0.7rem;
  padding-top: 3px;
}

.tot {
margin-right: -50px;
font-weight:bold;
padding-top: 44px;
}

.totImp {
margin-left: 50px;
font-weight:bold;
text-align: center;
padding-top: 2px;
background-color: #63e85a6b;
}

.impAAfectar {
  border: none;
  margin-top: 29%;
}

.titRecibo {
  position: absolute;
  border-bottom: 1px solid black;
  width: 91%;
  text-align: center;
  margin-top: -10px;
}

.calcular {
  height: 30px;
  background: #2dc997;
  border: 0;
  color: #fff;
  transition: 0.4s;
  padding: 0!important;
  margin-left: 30px;
  margin-top: 46%;
}

.oferta {
  text-align: center;
    font-size: 24px;
    width: 79%;
    margin-bottom: 50px;
    margin: 0 auto;
}

.oferta img{
    width: 70px;
}

.fact {
margin-top: 30px;
}

.masInfo{
text-align: center;
margin-top: 10px;
}

.btnMasInfo {
font-family: "Poppins", sans-serif;
    /*text-transform: uppercase;*/
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#onofBtn{
  display: none;
}

.servicesCustom{
  padding-bottom: 30px!important;
}

@media (max-width: 600px) {
.oDes{
  margin-left: 0px; 
  margin-top: 23px;
}
.ley13236 {
  margin-top: -45px;
}
.tot {
  padding-top: 151px;
}
.impAAfectar {
  margin-top: 99%;
}
.calcular {
  margin-top: 163%;
}
.back {
  padding-bottom: 100px;
}
.haberes {
  height: 43px;
}
}


@media (min-width: 600px) {
  .oDes{
    margin-left: 0px; 
    margin-top: 34px;
  }
.ley13236 {
  margin-top: -35px;
}
.tot {
  padding-top: 154px;
}
.impAAfectar {
  margin-top: 101%;
}
.calcular {
  margin-top: 166%;
}
.back {
  padding-bottom: 100px;
}
.haberes {
  height: 43px;
}
}


@media (min-width: 768px) {
  .oDes{
    margin-left: 60px; 
    margin-top: 34px;
  }
  .imAfec {
    margin-top: 7%;
}
}

@media (min-width: 992px) {
  .oDes{
    margin-left: 180px; 
    margin-top: 34px;
  }
  .imAfec {
    margin-top: 5%;
}
}
@media (min-width: 1200px) {
  .oDes{
    margin-left: 530px; 
    margin-top: -10px;
  }
  .ley13236 {
  margin-top: 14px;
}
.tot {
  padding-top: 85px;
}
.impAAfectar {
  margin-top: 55%;
}
.calcular {
  margin-top: 89%;
}
.back {
  padding-bottom: 50px;
}
.haberes {
  height: 43px;
}
}

.swal-text {
    font-size: 20px;
    text-align: center;
}

.descripcionCustom{
    text-align: left!important;
}

.faCustom{
    color: #2196f3;
    font-size: 2rem;
}

.titleCustom{
    margin-bottom: 65px!important;
}

.gtCus{
    margin-bottom: 20px!important;
}

.iconInd {
    margin-right: -2rem!important;
}

@media (max-width: 1000px) {
.iconInd{
  margin-right: -0rem!important;
}
}

.whatsComp {
    width: 135px;
    margin-top: -8px;
}

@media (max-width: 400px) {
  .whatsComp {
    width: 130px;
    margin-top: 10px;
    margin-left: -14px;
}
}

#tyc{
  display: none;
  text-align: center;
  margin-bottom: -20px;
  margin-top: 10px;
}

/*--------------------------------------------------------------
# PAGINA PUBLIDAD FACEBOOK
--------------------------------------------------------------*/

#text-pres{
  margin-left: 10px; 
  margin-right: 10px
  }

#alert{
  margin-top: 35px;
  margin-left: 15px; 
  margin-right: 15px
}

#img_alert{
   width: 300px;
} 

#btn-wapp{
  background-color: #2dc997;
}  