html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }

  .whatsappicon {
    width: 56px;
    height: 56px;
  }

  .chaty-svg svg {
    width: 56px;
    height: 56px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 90px;
}

.media-container-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: start;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: start;
  -webkit-box-align: start;

}

.card-img {
  font-size: 2rem;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.cover-home {
  background-image: url('./../img/cat1.png');
  background-size: cover;
  background-position: center center;
}

.cover-funciones {
  background-image: url('./../img/cat3.png');
  background-size: cover;
  background-position-x: 90%;
  background-position-y: center;
}

.text-portada {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 450;

}

.card-transparente {
  background-color: rgb(0 0 0 / 0%);

}

.cover-contacto {
  background-image: url('./../img/cat4.png');
  background-size: cover;
  background-position-x: 75%;
  background-position-y: center;

}

.cover-contacto2 {
  position: relative;
}

.cover-contacto2 ::before {
  background-image: url('./../img/cat4.png');
  background-size: cover;
  background-position-x: 75%;
  background-position-y: center;
  opacity: 0.75;
  content: "";

}

.card-list {
  display: flex;
  flex-wrap: wrap;
  -ms-flex-direction: row;
}

.texto {
  color: white !important;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.modal-content p {
  margin: 0 0 20px;
}

.close-btn {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.close-btn:hover {
  background-color: #c82333;
}

.justifiedtext {
  text-align: justify;
  text-justify: inter-word;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}

.nav-sm {
  height: 30px;
}

/*

*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  height: 100%;
}

body {

  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
}

a {
  color: #33B6CB;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #33B6CB;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

/* Página de Términos */
.terms-page p {
  margin: 0 0 10px 0;        
  line-height: 1.7;
}


h1 {
  font-family: "Open Sans", sans-serif;
  padding: 5px;
}



h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 15px 0 20px 0;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}
ol li {
  margin-bottom: 10px;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #59a52c;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}


.velo {
  background: #2125295c;
  padding: 10px;

}


/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #59a52c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


#header.header-scrolled {
  background: rgba(0, 0, 0, 0.7);
  background-color: #1e3659;
  padding: 25px 0;
  height: 85px;
  transition: all 0.5s;
}

#header #logo {
  float: left;
  padding-left: 10px;
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
  padding-left: 10px;
  border-left: 4px solid #26B8C4;
}

#header #logo img {
  margin-left: -20px;
}

#budget {
  background: #26B8C4;
  display: inline-block;
  padding: 1px 5px 1px 5px;
  font-size: 1.1rem;
  margin-top: 8px;

}

.telfn {
  float: right;
  margin-top: -25px;
  margin-right: 70px;
  font-size: 1rem;
}

@media (max-width: 1023px) {
  #budget {
    background: #26B8C4;
    display: inline-block;
    padding: 15px 0px;
    font-size: 1.2rem;
  }
}


#trailer {
  min-height: auto;
}



#trailer .video-text-pos {
  width: max-content;
  position: absolute;
  bottom: 25%;
  left: 50%;
  color: white;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%)
}

@media (max-width: 767px) {
  #trailer .video-text-pos {
    width: calc(80% - 5px);
    position: absolute;
    bottom: 20%;
    left: 50%;
    color: white;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media (min-width: 1250px) {
  #trailer .video-text-pos {
    width: max-content;
    position: absolute;
    bottom: 30%;
    left: 50%;
    color: white;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}


.abovetexto {
  font-size: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.abovetexto span {
  color: #fff !important;
  background: #59a52c !important;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 50px;
  padding-right: 50px;
  line-height: 83px;
  white-space: nowrap;
  display: inline;
}

@media (max-width: 768px) {
  .abovetexto {
    font-size: 1.2rem;
  }

  .abovetexto span {
    color: #fff !important;
    background: #59a52c !important;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    min-width: 100%;
    line-height: 43px;
    white-space: nowrap;
    display: inline;
  }
}

.console-container {
  font-size: 2em;
  text-align: center;
  width: auto;
  display: block;
  position: absolute;
  top: 30%;
  left: 50%;
  color: #fff !important;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: auto;
  line-height: 73px;
  white-space: nowrap;
  display: inline;
}

.console-underscore {
  display: inline;
  position: relative;
  top: -0.14em;
  left: 12px;
}

.console-container .hideall {
  opacity: 0;
}

.console-container .padd {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 25px;
}

@media (max-width: 768px) {
  .console-container {
    font-size: 1.3em;
    text-align: center;
    width: auto;
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    color: #fff !important;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: auto;
    min-width: 100%;
    line-height: 53px;
    display: inline;
  }

  .console-underscore {
    display: inline;
    position: relative;
    top: -0.14em;
    left: 12px;
  }

  .console-container .hideall {
    opacity: 0;
  }

  .console-container .padd {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 20px;
  }
}

@media (max-width: 520px) {
  .video-responsive {
    padding: 3px;
  }
}


.btn.pull-right {
  float: right;
  font-weight: 600;
  padding: 0px;
  border: 0px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#compliance-service {
  min-height: 20rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/compliance-penal_kub.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 80%;
}

@media (max-width: 767px) {
  #compliance-service {
    /* min-height: 27rem; */
    background-size: cover;
    background-position: 60% 25%;
  }
}

@media (min-width: 1200px) {
  #compliance-service {
    min-height: 35rem;
  }
}


#compliance-service h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}

#plan-antifraude-service {
  min-height: 32rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/Plan_Antifraude.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 767px) {
  #plan-antifraude-service {
    min-height: 30rem;
  }
}


#plan-antifraude-service h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}



#ens-service {
  min-height: 25rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/esquema-ens.jpg?vv);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 767px) {
  #ens-service {
    min-height: 30rem;

  }
}


#ens-service h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}

#kc-service {
  min-height: 32rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/kit_cons3v.png?v1);
  background-repeat: no-repeat;
  background-size: cover;

}

@media (min-width: 1450px) {
  #kc-service {
    min-height: 42rem;

  }
}


@media (max-width: 767px) {
  #kc-service {
    min-height: 30rem;

  }
}


#kc-service h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}





#adm-sectores {
  min-height: 20rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/sectores/administracion.png?v1);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 767px) {
  #adm-sectores {
    min-height: 30rem;

  }
}


#adm-sectores h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}

#biom-sectores {
  min-height: 30rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/sectores/investigacion-biomedica.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 767px) {
  #biom-sectores {
    min-height: 30rem;

  }
}


#pyme-sectores h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}

#pyme-sectores {
  min-height: 30rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/sectores/pyme.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 767px) {
  #pyme-sectores {
    min-height: 30rem;

  }
}


#pyme-sectores h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}


#ecom-sectores {
  min-height: 30rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/sectores/ecommerce.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 767px) {
  #ecom-sectores {
    min-height: 25rem;

  }
}

#empf-sectores {
  min-height: 30rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/sectores/efamiliar.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 767px) {
  #empf-sectores {
    min-height: 30rem;

  }
}

#terc-sectores {
  min-height: 25rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/sectores/tercer_sector.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 767px) {
  #terc-sectores {
    min-height: 30rem;

  }
}



#rgpd-service {
  min-height: 30rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  /* padding-top: 8rem; */
  /* padding-bottom: 11rem; */
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/proteccion-de-datos.jpg?vv);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 85%;
}

@media (max-width: 767px) {
  #rgpd-service {
    min-height: 25rem;
    background-repeat: no-repeat;
    padding: 0 !important;
  }
}

#rgpd-service h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}

#igualdad-service {
  min-height: 30rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  /* padding-top: 8rem; */
  /* padding-bottom: 11rem; */
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/planes_de_igualdad_3.png?vm);
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  #igualdad-service {
    min-height: 25rem;
    background-position: 45%;
    background-repeat: no-repeat;
    padding: 0 !important;
  }
}

#rsc-service {
  min-height: 23rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  /* padding-top: 8rem; */
  /* padding-bottom: 11rem; */
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/rsc_resp_corporativa.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 65%;
}

@media (max-width: 767px) {
  #rsc-service {
    min-height: 20rem;
    background-position: 85%;
    background-repeat: no-repeat;
    padding: 0 !important;
  }
}


#pbc-service {
  min-height: 15rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 20rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/prev_blanqueo_opt.jpg?v1);
  background-position: center 30%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  #pbc-service {
    padding-top: 22rem;
    background: linear-gradient(rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/prev_blanqueo_opt_mobile.jpg?v1);
    background-position-x: right;
    background-size: initial;
  }
}


#pbc-service h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}

#isocg-service {
  min-height: 30rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/iso-37301.jpg?v2);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  #isocg-service {
    padding-top: 28rem;
    background: linear-gradient(rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/iso-37301_mobile.jpg?v2);
    background-position-x: 50%;
    background-size: initial;
  }
}


#isocg-service h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}





#isopd-service {
  min-height: 25rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/serv_27701_opt.jpg?v1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  #isopd-service {
    padding-top: 28rem;
    background: linear-gradient(rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/serv_27701_opt_mobile.jpg?v1);
    background-position-x: 50%;
    background-size: initial;
  }
}


#isopd-service h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}



#sec-service {
  min-height: 20rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/sec_information_opt.jpg?v1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  #sec-service {
    padding-top: 18rem;
    background: linear-gradient(rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/sec_information_opt_mobile.jpg?v1);
    background-position-x: 40%;
    background-size: initial;
  }
}


#sec-service h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}


#qua-service {
  min-height: 20rem;
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/success_secur.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  #qua-service {
    padding-top: 18rem;
    background: linear-gradient(rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .1) 100%), url(/../assets/img/success_secur-mobile.jpg);
    background-position-x: 40%;
    background-size: initial;
  }
}


#qua-service h1 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 800;
}



#appl-service .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  margin-top: -20px;
}


#appl-service .title a {
  color: #111;
}

#appl-service .box:hover .title a {
  color: #59a52c;
}

#appl-service .description {
  font-size: 16px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 25px;
}


#27701-service .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  margin-top: -20px;
}


#27701-service .title a {
  color: #111;
}

#27701-service .box:hover .title a {
  color: #59a52c;
}

#27701-service .description {
  font-size: 16px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 25px;
}


#plan-antifraude .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  margin-top: -20px;
}


#plan-antifraude .title a {
  color: #111;
}

#plan-antifraude .box:hover .title a {
  color: #59a52c;
}

#plan-antifraude .description {
  font-size: 16px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 25px;
}



.card-text {
  font-size: 15px;
}

#intro {
  display: table;
  width: 100%;
  height: 100vh;
  /* background: #000; */
  background: transparent;
}

#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-background img {
  max-width: 100%;
}

#intro .carousel-content {
  text-align: center;
  position: absolute;
  top: 55%;
  transform: translate(0%, 0%);
}

#intro h1 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 700;
  width: 100%;
}



#intro h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
}

#intro p {
  width: auto;
  /* margin: 0 auto 30px auto;  */
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.40rem;
}

#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #26B8C4;
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #26B8C4;
}

.btn-primary {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #26B8C4;
}

.btn-primary:hover {
  background: #fff;
  color: #26B8C4;
}

.btn-default {
  font-family: "Open Sans", sans-serif;
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  outline: none;
  border: 2px solid white;
}

.btn-default:hover {
  background: #fff;
  color: #26B8C4;
}



.btn-applicalia {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #59a52c;
}

.btn-applicalia:hover {
  background: #fff;
  color: #59a52c;
  border: 2px solid #59a52c;
}

.no-radius {
  border-radius: 0px !important
}

/*--------------------------------------------------------------
# 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 */


@media (max-width: 991px) {
  #mobile-nav-toggle {
    display: block;
    /* Mostrar el botón hamburguesa */
  }

  #nav-menu-container {
    display: none;
    /* Ocultar el menú normal */
  }
}

#nav-menu-container {
  float: right;
  margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 20px 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  outline: none;
}

.nav-menu li:hover>a,
.nav-menu>.menu-active>a {
  color: #59a52c;
  border-bottom: 2px solid white;
  width: 100%;
}

.nav-menu>li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover>a {
  color: #59a52c;
}

.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;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  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: 13px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

#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: #59a52c;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #59a52c;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  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
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #59a52c;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 20px;
  color: #333;
}

.section-header span {
  text-align: center;
  color: black;
  font-weight: 700
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #f7f7f7;
}

/* Featured Services Section
--------------------------------*/

#featured-services {
  /* background: #000; */

  background: #1e3659;
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box:hover {
  opacity: 1;
}


#featured-services .box-bg {
  background: #26B8C4;
}

#featured-services .box-bg2 {
  background: #f3b311;
}

#featured-services .box-bg3 {
  background: #009a82;
}

#featured-services .box-bg4 {
  background: #59a52c;
}


#featured-services i {
  color: #59a52c;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h2 {
  font-weight: 700;
  margin: 15px 0;
  font-size: 18px;
  min-height: 45px;
}

#featured-services a {
  color: #fff;
}

#featured-services a:hover {
  color: #59a52c;
}

#featured-services h2::before,
#featured-services h2::after {
  content: '';
  position: absolute;
  left: 6%;
  bottom: 60%;
  height: 3px;
}


#featured-services h2::after {
  background: #b4b8bc;
  width: 60px;
}


#featured-services p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}



#cpenal-services .box {
  padding: 30px 20px;
}

#cpenal-services .box-bg {
  background: #26B8C4;
}

#cpenal-services .box-bg2 {
  background: #f3b311;
}

#cpenal-services .box-bg3 {
  background: #1e3659;
}

#cpenal-services .box-bg4 {
  background: #59a52c;
}


#cpenal-services i {
  color: #59a52c;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#cpenal-services h2 {
  font-weight: 700;
  margin: 15px 0;
  font-size: 18px;
  min-height: 45px;
}

#cpenal-services a {
  color: #fff;
}

#cpenal-services a:hover {
  color: #59a52c;
}

#cpenal-services h2::before,
#cpenal-services h2::after {
  content: '';
  position: absolute;
  left: 6%;
  bottom: 55%;
  height: 3px;
}


#cpenal-services h2::after {
  background: #b4b8bc;
  width: 60px;
}

#cpenal-services .title {
  margin-top: 1rem;
  margin-left: 0px;
  font-size: 21px;
  line-height: 24px;
  text-align: center;
  font-weight: 700;
}

#cpenal-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments {
  overflow: hidden;
}

.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #2c4964;
  border-radius: 0;
  border-right: 2px solid #ebf1f6;
  font-weight: 600;
  font-size: 15px;
}

.departments .nav-link:hover {
  color: #1977cc;
}

.departments .nav-link.active {
  color: #1977cc;
  border-color: #1977cc;
}

.departments .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.departments .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c4964;
}

.departments .details p {
  color: #777777;
}

.departments .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .departments .nav-link {
    border: 0;
    padding: 15px;
  }

  .departments .nav-link.active {
    color: #fff;
    background: #1977cc;
  }
}




/* Facts Section
--------------------------------*/

#facts {
  background: url("../img/facts-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#facts::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 9;
}

#facts .container {
  position: relative;
  z-index: 10;
}

#facts .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #59a52c;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#facts .facts-img {
  text-align: center;
  padding-top: 30px;
}

/* Portfolio Section
--------------------------------*/

#portfolio {
  padding: 60px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #59a52c;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

#portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#portfolio .portfolio-item {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
}

#portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 180px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

#portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview,
#portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: inline-block;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i,
#portfolio .portfolio-item figure .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #333;
}

#portfolio .portfolio-item figure .link-preview:hover,
#portfolio .portfolio-item figure .link-details:hover {
  background: #59a52c;
}

#portfolio .portfolio-item figure .link-preview:hover i,
#portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

#portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

#portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 30px 5px 30px 5px;
  height: 180px;
  border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  /* line-height: 1px; */
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #59a52c;
}

#portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

/* Clients Section
--------------------------------*/

/* #clients { */
/* padding: 60px 0; */
/* } */

/* #clients img { */
/* max-width: 100%; */
/* opacity: 0.5; */
/* transition: 0.3s; */
/* padding: 15px; */
/* } */

/* #clients img:hover { */
/* opacity: 1; */
/* } */

/* #clients .owl-nav, */
/* #clients .owl-dots { */
/* margin-top: 5px; */
/* text-align: center; */
/* } */

/* #clients .owl-dot { */
/* display: inline-block; */
/* margin: 0 5px; */
/* width: 12px; */
/* height: 12px; */
/* border-radius: 50%; */
/* background-color: #ddd; */
/* } */

/* #clients .owl-dot.active { */
/* background-color: #59a52c; */
/* } */


/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 115px;
}

#clients .client-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}


/* Testimonials Section
--------------------------------*/

#testimonials {
  padding: 60px 0;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item {
  text-align: center;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #59a52c;
}

/* Team Section
--------------------------------*/

#team {
  background: #fff;
  padding: 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #59a52c;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Contact Section
--------------------------------*/

#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1rem
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #1e3659;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #59a52c;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

#contact .form #sendmessage {
  color: #59a52c;
  border: 1px solid #59a52c;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"] {
  background: #33B6CB;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: #1e3659;
}

#author .social-links a {
  font-size: 26px;
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 8px;
  border-radius: 50%;
  text-align: center;
  width: 46px;
  height: 46px;
  transition: 0.3s;
}

#author .social-links a:hover {
  background: #59a52c;
  color: #fff;
}


#content p {
  white-space: normal;
  word-wrap: break-word;
  padding-left: 5px;
  padding-right: 5px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #26B8C4;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #1e3659;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #59a52c;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #59a52c;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #59a52c;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid gray;
  padding: 10px 0;
}

#servicios ul li {
  border-bottom: 1px solid #26B8C4;
  width: 50%;
  padding: 10px 0;
}

@media (max-width: 768px) {
  #servicios ul li {
    width: 90%;
  }
}




#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #59a52c;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #59a52c;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
  display: none;
}

.text-underline {
  text-decoration: underline;
}

.text-uppercase {
  text-decoration: uppercase;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/
@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

@media (min-width: 1024px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 60px;
  }

  #intro p {
    width: auto;
    white-space: normal;
  }

  #intro .carousel-control-prev,
  #intro .carousel-control-next {
    width: 5%;
  }

  #nav-menu-container {
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 9vw;
  }
}

@media (max-width: 768px) {

  html {
    font-size: 80%;
  }

  .back-to-top {
    bottom: 15px;
  }

  #header #logo h1 {
    font-size: 28px;
  }

  #header #logo img {
    padding-left: 10px;
  }


  #intro h1 {
    font-size: 28px;
  }

  #intro h2 {
    font-size: 28px;
  }


  #mobile-nav-toggle {
    display: inline;
  }
}

#inner-headline {
  background: #26B8C4;
  position: relative;
  color: #fefefe;
  height: auto;
  /* min-height: 80px; */
  padding: 10px;
  margin-top: 105px;
}

#inner-headline-kc {
  background: #a9aaac;
  position: relative;
  color: #fefefe;
  height: auto;
  /* min-height: 80px; */
  padding-top: 5px;
  margin-top: 0px;
  margin-bottom: 25px;
  font-size: 18px;
  padding-left: 10px;
  padding-right: 10px;
}



.lead1 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0px;
}



.text-color-primary {
  color: #33B6CB !important;
}

.primary-bg {
  background: #33B6CB !important;
  color: white;
}

.mt-5 {
  margin-top: 4.5rem !important;
}

.my-5 {
  margin-bottom: 4.5rem !important;
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/

#faq {
  padding: 60px 0;
}

#faq #faq-list {
  padding: 0;
  list-style: none;
}

#faq #faq-list li {
  border-bottom: 1px solid #ddd;
}

#faq #faq-list a {
  padding: 18px 0;
  display: block;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding-right: 25px;
}

#faq #faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 16px;
}

#faq #faq-list p {
  margin-bottom: 20px;
  font-size: 1rem;
}

#faq #faq-list a.collapse {
  color: #f82249;
}

#faq #faq-list a.collapsed {
  color: #000;
}

#faq #faq-list a.collapsed i::before {
  content: "\f055" !important;
}


#blog {
  padding-top: 30px;
  padding-bottom: 50px;
}



/* ===============================
14. Blog & article
================================ */

article {
  /* float: left; */
  width: 100%;
  margin-bottom: 40px;
}

article .post-heading h3 {
  margin-bottom: 20px;
}

article .post-heading h3 a {
  font-weight: 700;
  color: #353535;
}

article .post-heading h3 a:hover {
  text-decoration: none;
}

/* --- post meta --- */

.post-meta {
  background: #fcfcfc;
  border: 1px solid #e6e6e6;
  border-top: none;
  text-align: center;
}

.post-meta .format {
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 0 10px;
}

.post-meta i {
  margin: 0;
}

.post-meta .date {
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 0 10px;
}

.post-meta .date span {
  text-align: center;
  color: #999;
  font-size: 12px;
  font-weight: 600;
}

.post-meta .comments {
  padding: 10px 0 10px;
}

.post-meta .comments a {
  color: #999;
  font-size: 12px;
  font-weight: 700;
}

.post-meta .comments a:hover {
  text-decoration: none;
}

/* --- post format --- */

.post-image {
  margin-bottom: 20px;
}

.post-quote {
  margin-bottom: 20px;
}

.post-video {
  margin-bottom: 20px;
}

.post-audio {
  margin-bottom: 20px;
}

.post-link {
  margin-bottom: 20px;
}

.post-slider {
  margin-bottom: 20px;
}

.post-quote blockquote {
  font-size: 16px;
  color: #999;
  font-family: 'Noto Serif', serif;
  font-style: italic;
  line-height: 1.6em;
}

.post-image img:hover {
  -webkit-box-shadow: 0 0 2px #979797;
  -moz-box-shadow: 0 0 2px #979797;
  box-shadow: 0 0 2px #979797;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

ul.meta-post {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.meta-post li {
  float: left;
  margin: 0 10px 0 0;
  padding: 0;
  list-style: none;
  border-right: 1px dotted #e9e9e9;
  padding-right: 10px;
}

@media (max-width: 768px) {
  ul.meta-post li {
    padding-right: 4px;
  }
}

@media (max-width: 768px) {
  .font-xs-small {
    font-size: 10px;
  }
}


ul.meta-post li i {
  float: left;
  font-size: 12px;
  margin: 2px 5px 0 0;
}

ul.meta-post li a {
  color: #999;
  float: left;
  font-size: 12px;
  font-weight: 600;
}

ul.meta-post li span {
  color: #999;
  float: left;
  font-size: 12px;
  font-weight: 600;
}

/* --- single post --- */

.bottom-article {
  float: left;
  width: 100%;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  padding: 10px 0 10px 0;
  margin-top: 20px;
}

/* --- author info --- */

.about-author {
  border: 1px solid #d5d5d5;
  padding: 20px;
  float: left;
  margin-bottom: 5px;
}

.about-author h5 {
  margin-bottom: 10px;
}

/* --- Comment --- */

.comment-area {
  float: left;
  width: 100%;
  margin-top: 30px;
}

.media-content {
  overflow: hidden;
  margin-left: 12px;
  border-bottom: 1px dotted #d5d5d5;
  padding-bottom: 20px;
}

.media-content h6 {
  font-size: 14px;
  font-weight: 700;
}

.media-content span {
  color: #a9a9a9;
  font-size: 14px;
  font-weight: 300;
}

.comment-area .thumbnail>img {
  display: block;
  width: 60px;
  height: 60px;
}

.filter-list {
  margin-top: 20px;
}

/* --- pagination --- */

#pagination a,
#pagination span {
  display: block;
  float: left;
  margin: 0 7px 0 0;
  padding: 7px 10px 6px 10px;
  font-size: 12px;
  line-height: 12px;
  color: #888;
  font-weight: 600;
}

#pagination a:hover {
  color: #fff;
  text-decoration: none;
}

#pagination span.current {
  background: #333;
  color: #fff;
  font-weight: bold;
}

/* ===============================
15. Aside, sidebar
================================ */

aside {
  position: relative;
  margin-bottom: 40px;
}

.sidebar-nav {
  float: left;
  width: 100%;
}

.right-sidebar {
  border-left: 1px solid #e9e9e9;
  padding: 0 0 0 30px;
  -webkit-box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, .01);
  box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, .01);
}

@media (max-width: 768px) {
  .right-sidebar {
    border: 1px solid #e9e9e9;
    padding: 15px;
    text-align: center;
  }
}

.widgetheading {
  width: 100%;
  padding: 0;
}

#bottom .widgetheading {
  position: relative;
  border-bottom: #e6e6e6 1px solid;
  padding-bottom: 9px;
}

aside .widgetheading {
  position: relative;
  border-bottom: #e9e9e9 1px solid;
  padding-bottom: 9px;
}


.left-sidebar {
  border-right: 1px solid #e9e9e9;
  padding: 0 30px 0 0;
  -webkit-box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, .01);
  box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, .01);
}

.left-sidebar .widget h3,
.left-sidebar .widget .widget-content {
  padding-right: 20px;
}

aside .widget {
  margin-bottom: 40px;
}

ul.cat,
ul.recent,
ul.folio-detail,
ul.contact-info {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
}

ul.cat li,
ul.recent li,
ul.folio-detail li,
ul.contact-info li {
  margin: 0 0 15px 0;
  list-style: none;
  color: #33B6CB;
}

ul.cat li a,
ul.folio-detail li a {
  color: #33B6CB;
  padding: 5px;
}

ul.folio-detail li label {
  display: inline;
  cursor: default;
  color: #33B6CB;
  font-weight: bold;
}

.widget ul.recent li {
  margin-bottom: 20px;
}

ul.recent li h6 {
  margin: 0 0 10px 0;
}

ul.recent li h6 a {
  color: #353535;
  font-size: 16px;
  font-weight: 600;
}

.widget ul.tags {
  list-style: none;
  margin: 0;
}

.widget ul.tags li {
  margin: 0 5px 15px 0;
  display: inline-block;
}

.widget ul.tags li a {
  background: #e6e6e6;
  color: #333;
  padding: 5px 10px;
}

.widget ul.tags li a:hover {
  text-decoration: none;
  color: #fff;
}

/* ===== Widgets ===== */

/* --- flickr --- */

.widget .flickr_badge {
  width: 100%;
}

.widget .flickr_badge img {
  margin: 0 9px 20px 0;
}

footer .widget .flickr_badge {
  width: 100%;
}

footer .widget .flickr_badge img {
  margin: 0 9px 20px 0;
}

.flickr_badge img {
  width: 50px;
  height: 50px;
  float: left;
  margin: 0 9px 20px 0;
}

/* --- latest tweet widget --- */

.twitter ul {
  margin-left: 0;
  list-style: none;
}

.twitter img {
  float: left;
  margin-right: 15px;
}

.twitter span.tweet_time {
  display: block;
  padding-bottom: 5px;
}

.twitter li {
  border-bottom: 1px dashed #efefef;
  padding-bottom: 20px;
  margin-bottom: 20px;
  list-style: none;
}

.twitter li:last-child {
  border: none;
}

/* --- Recent post widget --- */

.recent-post {
  margin: 20px 0 0 0;
  padding: 0;
  line-height: 18px;
}

.recent-post h5 a:hover {
  text-decoration: none;
}

.recent-post .text h5 a {
  color: #353535;
}

ul.time-post {
  float: left;
  width: 120px;
  padding: 0;
  list-style: none;
  margin: 0 20px 0 0;
  text-align: center;
  color: #0e0f0f;
}

ul.time-post li {
  float: none;
  background: #f8f8f8;
  list-style: none;
  margin: 0 0 2px 0;
  padding: 0;
}

ul.time-post li a img:hover {
  opacity: 0.8;
  /* For IE 5-7 */
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  /* For IE 8 8 */
  -MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

ul.time-post li.time {
  float: none;
  padding: 5px 0 5px 0;
  text-shadow: none;
}

.recent-post ul.time-post li.time {
  color: #121214;
}

.post-meta {
  margin-bottom: 20px;
}

.post-meta span {
  padding: 0 10px 0 10px;
  margin-bottom: 10px;
}

.post-meta span a {
  color: #919191;
}

.post-meta strong {
  font-weight: 200px;
  color: #c7c7c7;
}

.item .text {
  margin-left: 140px;
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

.show {
  display: initial;
}

.checkboxpos {
  height: 20px;
  margin-top: -32px;
  margin-bottom: 20px;
  width: 20px;
}

@media (max-width: 768px) {
  .checkboxpos {
    height: 20px;
    margin-top: -45px;
    margin-bottom: 30px;
  }
}

.check-top {
  margin-left: 30px;
}

@media (max-width: 768px) {
  label {
    padding-left: 0px;
    text-align: center;
  }
}

.blockquote {
  padding: 10px;
  border-left: 4px solid #33B6CB;
  background: #f7f7f7;
  margin: 20px;
}

.table p {
  padding: 5px;
}

.post-heading ul li {
  padding-bottom: 5px;
}

.post-heading a {
  word-break: break-word;
}

a.anchor:target:before {
  content: "";
  display: block;
  height: 100px;
  margin: -100px 0 0;
}

.text-color-white {
  color: white !important;
}

.zoominheader {
  width: 100%;
  height: auto;
  background-size: auto;
  background-attachment: fixed;
  background-repeat: repeat;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-animation: zoomin 10s ease-in infinite;
  animation: zoomin 10s ease-in infinite;
  transition: all .5s ease-in-out;
  overflow: hidden;
}

/* The innermost element*/
.zoomoutheader {
  width: 100%;
  height: auto;
  background: none;
  -webkit-animation: zoomout 10s ease-in forwards;
  animation: zoomout 10s ease-in forwards;
  transition: all .5s ease-in-out;
  overflow: hidden;
}



/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/*End of Zoom in Keyframes */

/* Zoom out Keyframes */
@-webkit-keyframes zoomout {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.97);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomout {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.97);
  }

  100% {
    transform: scale(1);
  }
}

/*End of Zoom out Keyframes */


.floating-arrow {
  -webkit-animation-name: floating-arrow1;
  animation-name: floating-arrow1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: forward;
  animation-iteration-count: forward;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes floating-arrow {
  from {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  65% {
    -webkit-transform: translate(-50%, 15px);
    transform: translate(-50%, 15px);
  }

  to {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@keyframes floating-arrow {
  from {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  65% {
    -webkit-transform: translate(-50%, 15px);
    transform: translate(-50%, 15px);
  }

  to {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

.down-arrow {
  /*   color: #fff; */
  font-size: 40px;
  position: absolute;
  bottom: 10%;
  left: 50%;
  color: white;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 1250px) {
  .down-arrow {
    /*   color: #fff; */
    font-size: 40px;
    position: absolute;
    bottom: 20%;
    left: 50%;
    color: white;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}


--------------------------------------- Popular Categories --------------------------------------- */ .popular-categories {
  margin-top: 120px;
}

.popular-categories .section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.popular-categories .naccs {
  position: relative;
  background-color: #2b2d42;
  border-radius: 7px;
}

.popular-categories .icon {
  display: inline-block;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  text-align: center;
  line-height: 62px;
  color: #8d99af;
  background-color: #fff;
  margin-right: 15px;
}

.popular-categories .icon img {
  max-width: 27px;
}

.popular-categories .naccs .menu div.first-thumb {
  border-top-left-radius: 7px;
}

.popular-categories .naccs .menu div.last-thumb {
  margin-bottom: 0px;
  border-bottom-left-radius: 7px;
}

.popular-categories .naccs .menu div {
  color: #fff;
  font-size: 15px;
  background-color: #8d99af;
  margin-bottom: 1px;
  height: 126px;
  text-align: left;
  padding: 0px 15px;
  line-height: 126px;
  cursor: pointer;
  position: relative;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.popular-categories .naccs .menu div.active,
.popular-categories .naccs .menu div.active .thumb {
  background-color: #2b2d42;
}

.popular-categories ul.nacc {
  position: relative;
  min-height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.popular-categories ul.nacc li {
  opacity: 0;
  transform: translateX(-50px);
  position: absolute;
  list-style: none;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.popular-categories ul.nacc li.active {
  transition-delay: 0.3s;
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateX(0px);
}

.popular-categories ul.nacc li {
  width: 100%;
}

.popular-categories .nacc .thumb .left-text {
  margin-left: 30px;
}

.popular-categories .nacc .thumb .left-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 30px;
}

.popular-categories .nacc .thumb .left-text p {
  color: #fff;
  margin-bottom: 30px;
}

.popular-categories .nacc .thumb .right-image {
  padding: 60px;
  display: inline-flex;
}

.popular-categories .nacc .thumb img {
  border-radius: 7px;
}

.popular-categories .nacc .thumb .left-text .main-white-button a {
  width: 100%;
  text-align: center;
}

.cid-qv5zxG3NeF {
  padding-top: 30px;
  padding-bottom: 20px;

}

.cid-qv5zxG3NeF .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}

.cid-qv5zxG3NeF .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}

.cid-qv5zxG3NeF .card_cont {
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  background-color: #eee;
}

.cid-qv5zxG3NeF .card-front {
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 20px 5px;
  color: #ffffff;
  background-color: #0f7699;
}

.cid-qv5zxG3NeF .card-front img {
  min-height: 100%;
  min-width: 100%;
  width: auto;
  max-width: 600px;
}

.cid-qv5zxG3NeF .card_back {
  width: 100%;
  height: 100%;
  padding: 45px 10px;
  color: black;
  /*   background-color: #0f7699; */
  z-index: 1;
  margin: 0;
  text-align: center;
  overflow: hidden;
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.cid-qv5zxG3NeF .card {
  min-height: 400px;
  border: 2px solid #1e3659;
}

.cid-qv5zxG3NeF .card:hover .card-front {
  z-index: 1;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.cid-qv5zxG3NeF .card:hover .card_back {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.cid-qv5zxG3NeF .builderCard .card_back {
  border-bottom-left-radius: 100px;
}

.cid-qv5zxG3NeF .builderCard .card_cont {
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidd;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}


.cid-qv5zxG3NeF .card-box {
  min-height: 125px;
  padding: 5px;
  box-shadow: 0px 2px 12px rgb(0 0 0 / 8%);
  transition: 0.3s;
}

.mbr-fonts-style {
  color: #333;
  line-height: 1.13;
  font-weight: 600;
}

.display-5 {
  font-size: 1.25rem;
  font-weight: 700;
  min-height: 70px;
}

.display-7 {
  font-size: 1rem;

}
.display-mi7 {
  font-size: 1.5rem;

}
.display-mi8 {
  font-size: 1.2rem;

}
.mbr-text {
  font-style: normal;
  line-height: 1.13;
}

.white-bg {
  background-color: white;
}

.padding30 {
  padding: 30px;
}

@media (max-width: 768px) {
  .display-7 {
    font-size: 1.5rem;
  }

  .mbr-text {
    font-style: normal;
    line-height: 1.33;
  }

  .display-5 {
    font-size: 1.8rem;
  }

}

@media (max-width: 768px) {
  .cid-qv5zxG3NeF .card-box {
    min-height: auto;

  }
}


/*--------------------------------------------------------------
# kitc Section
--------------------------------------------------------------*/
.kitc .service-item {
  background-color: white;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 3px #1e3659;
  border-style: solid;
}

.kitc .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.kitc .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.kitc .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.kitc .service-item p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .kitc .service-item:hover {
    transform: translateY(-10px);
  }

  .kitc .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/* Courses Area css
============================================================================================ */


.courses_area {
  overflow: hidden;
}

.p_120 {
  padding-top: 15px;
  padding-bottom: 120px;
  height: auto;
}

.grid_inner {
  margin-left: -15px;
  margin-right: -15px;
}

.courses_inner {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
  margin-bottom: -30px;

  .courses_item {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    overflow: hidden;
  }

  .course_item {
    position: relative;

    .hover_text {
      padding-left: 20px;
      padding-right: 20px;
    }
  }

  .hover_text {
    position: absolute;
    top: 10px;
    left: 0px;
    bottom: 15px;
    padding-left: 35px;
    padding-right: 35px;

    .cat {
      display: inline-block;
      background: #1e3659;
      color: #fff;
      padding: 0px 25px;
      border-radius: 5px;
      line-height: 30px;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 20px;
    }

    h4 {
      font-size: 18px;
      color: #fff;
      margin-bottom: 15px;

    }

    .list {
      li {
        display: inline-block;
        margin-right: 16px;

        a {
          color: #fff;
          font-size: 1.2rem;

          i {
            padding-right: 6px;
          }
        }

        &:last-child {
          margin-right: 0px;
        }
      }
    }

    &:hover {
      h4 {
        color: #1e3659;
      }
    }
  }
}

.wd55 {
  width: 55.55%;
  float: left;
  margin-bottom: 30px;
}

.wd44 {
  width: 44.45%;
  float: left;
  margin-bottom: 30px;
}


/* End Courses Area css
============================================================================================ */

/* Course Details Area css
============================================================================================ */
.course_details_area {
  overflow: hidden;
}

.course_details_inner {
  .nav.nav-tabs {
    border: none;
    margin-top: 30px;
    margin-left: 20px;

    li {
      margin: 0px;
      margin-right: 35px;

      a {
        border: none;
        padding: 0px;
        margin-bottom: 0px;
        line-height: 55px;
        font-size: 1.3rem;
        border-bottom: 1px solid transparent;

        &.active {
          border-bottom: 1px solid black;
        }
      }

      &:last-child {
        margin-right: 0px;
      }
    }
  }

  .tab-content {
    background: #f9f9ff;

    .comments-area {
      margin-top: 0px;
      border-bottom: 0px;
    }

    .comment-form {
      margin-top: 0px;
      margin-bottom: 0px;
      border-top: 0px;

      .submit_btn {
        line-height: 40px;
        border-radius: 5px;
      }
    }

    .objctive_text {
      padding: 25px;
      border: 1px solid #eeeeee;

      .list {
        padding-top: 15px;
        padding-bottom: 15px;

        li {
          margin-bottom: 28px;

          a {
            color: #1e3659;
            font-size: 1.1rem;

            &:hover {
              color: #1e3659;
            }
          }

          &:last-child {
            margin-bottom: 0px;
          }
        }
      }
    }
  }
}

.c_details_list {
  .list {
    padding: 0;

    li {
      margin-bottom: 10px;
      background: #f9f9ff;
      display: block;
      line-height: 40px;
      padding: 0px 18px;
      font-size: 1rem;
      font-weight: 600;

      span {
        float: right;
      }
    }

    &:first-child {
      a {
        span {
          color: #1e3659;
        }
      }
    }
  }

  .main_btn {
    padding: 15px;
    background: #1e3659;
    color: white;
    display: block;
    text-align: center;
  }

  .main_btn:hover {
    background: transparent;
    color: #1e3659;
    border: 2px #1e3659 solid;
  }

}

/* End Course Details Area css
============================================================================================ */

@media (max-width: 1024px) {
  .c_details_list {
    margin-top: 30px;
  }
}


@media (max-width: 575px) {
  .p_120 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .wd55 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .courses_inner .courses_item img {
    width: 100%;
  }

  .courses_inner .hover_text {
    bottom: 0px;
  }
}

@media (max-width: 767px) {
  .wd44 {
    width: 100%;
  }
}





/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.learn-posts article {
  background-color: whitesmoke;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  max-height: fit-content;
}

.learn-posts .post-img img {
  transition: 0.5s;
}

.learn-posts .post-date {
  background-color: #1e3659;
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.learn-posts .post-content {
  padding: 30px;
}

.learn-posts .post-title {
  font-size: 20px;
  color: #1e3659;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.learn-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.learn-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.learn-posts p {
  margin-top: 20px;
  font-size: 1rem;
}

.learn-posts hr {
  color: color-mix(in srgb, #1e3659, transparent 60%);
  margin-bottom: 15px;
}

.learn-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, #17a2b8, transparent 20%);
}

.learn-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 1rem;
}

.learn-posts article:hover .post-title,
.learn-posts article:hover .readmore {
  color: #1e3659;
}

.learn-posts article:hover .post-img img {
  transform: scale(1);
}

.negrita {
  font-weight: bold;
}

.py-20top {
  padding-top: 5rem;

}

.lg\:py-32top {
  padding-top: 8rem;
  padding-bottom: 2rem
}

/*---------------*/
.contacto {
  text-decoration: none;
  color: #fff;

  outline: none;
}

.contacto:hover {
  color: #59a52c;

  width: 100%;
}

.li_footer {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.chaty-svg svg {
  width: 45px;
  height: 45px;
}

.whatsappicon {
  width: 45px;
  height: 45px;
}

.text-white {
  color: rgb(255, 255, 255);
}

/* nuevo menu para pantallas pequeñas */
/* Estilo de los enlaces manteniendo  tipografía y colores */

#header.navbar .navbar-nav .nav-link {
  padding: 20px 8px 10px 8px;
  text-decoration: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  outline: none;
  position: relative;

  text-decoration: none;
  border-bottom: none !important;

}

header.navbar .navbar-nav>.nav-item {
  margin-left: 10px;
}

/* Hover/activo con la línea inferior */
#header.navbar .nav-link:hover,
#header.navbar .nav-link.active,
#header.navbar .nav-item.menu-active>.nav-link {
  color: #59a52c;
}

#header.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: transparent;
  transition: background .2s ease;
}

#header.navbar .nav-link:hover::after,
#header.navbar .nav-link.active::after,
#header.navbar .nav-item.menu-active>.nav-link::after {
  background: #fff;
}

/* Móvil: panel con fondo y opciones a la derecha */
@media (max-width: 991.98px) {
  #mainNav {
    background: rgba(33, 37, 41, 0.95);
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    padding: 12px 16px;
  }

  #mainNav .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  #mainNav .nav-link {
    padding: 10px 0;
    display: block;
  }
}



/* Toggler y altura */
.navbar-dark .navbar-toggler {
  border-color: rgba(255, 255, 255, .25);
}

#header.navbar {
  min-height: 64px;
}

.black-background {
  background-color: #000;
}



.navbar-dark .navbar-toggler-icon {
  filter: none;
  /* deja el icono claro por defecto */
}

/*------------------------------------------*/
/* banner cookies*/
:root {
  --cb-bg: #0b1020;
  --cb-text: #e9eef5;
  --cb-accent: #59a52c;
  --cb-border: #25304a;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999999;
  background: var(--cb-bg);
  color: var(--cb-text);
  border: 1px solid var(--cb-border);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
}

.cookie-bar__inner {
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-bar__txt {
  font-size: .82rem;
  line-height: 1.35;
}

.cookie-bar__txt a {
  color: #b9d2ff;
  text-decoration: underline;
}

.cookie-bar__actions {
  display: flex;
  gap: 8px;
}

.cb-btn {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--cb-border);
  background: #16213a;
  color: var(--cb-text);
  cursor: pointer;
  font-weight: 600;
  font-size: .82rem;
}

.cb-btn:focus {
  outline: 2px solid var(--cb-accent);
  outline-offset: 2px;
}

.cb-btn--primary {
  background: var(--cb-accent);
  border-color: transparent;
  color: white;
}

.cb-btn--ghost {
  background: transparent;
}

[hidden] {
  display: none !important;
}
/*-----------------------------------------------*/
/* tabla de cookies*/

.cookie-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 10px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.92rem;
  color: #333;
  border-radius: 6px;
  overflow: hidden;
}

.cookie-table thead th {
  background: #f3f3f3;
  font-weight: 600;
  text-align: left;
  padding: 10px;
  border: 1px solid #ddd;
}

.cookie-table tbody td {
  padding: 10px;
  border: 1px solid #ddd;
  vertical-align: top;
}

.cookie-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.cookie-table tbody tr:hover {
  background: #f0f4ff;
}

/*------------------------------*/
/* Botón flotante para reabrir el banner de cookies */
.cookie-fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000001; /* por encima del contenido; por debajo del modal si lo usas */
  height: 44px; 
  min-width: 44px;  /* objetivo táctil accesible */
  padding: 0 12px;
  border: 1px solid var(--cb-border, #25304a);
  border-radius: 999px;
  background: var(--cb-bg, #0b1020);
  color: var(--cb-text, #e9eef5);
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.cookie-fab:hover{ 
  transform: translateY(-1px); 
  box-shadow: 0 10px 24px rgba(0,0,0,.40);
}
.cookie-fab:focus{
  outline: 2px solid var(--cb-accent, #4f8cff);
  outline-offset: 2px;
}
/*---------------------*/

.alpha-paren {
    list-style-type: lower-alpha; 
  }
  .alpha-paren li::marker {
    content: counter(list-item, lower-alpha) ") ";
  }

  
.numbers-paren {
    list-style-type: decimal; /* 1,2,3 */
  }
  .numbers-paren > li::marker {
    content: counter(list-item) ") ";
  }

  
.numbers-paren ul {
    list-style: disc;          /* o 'circle', 'square', lo que prefieras */
    margin-left: 1.5em;        /* sangría visual para la sublista */
    padding-left: 0;           /* opcional, según tu reset global */
  }

  /* Muy importante: anula cualquier ::marker heredado en sublistas por si hay estilos globales */
  .numbers-paren ul li::marker {
    content: initial;          /* restaura el marcador por defecto del user agent */
  }

