/**
* Updated: May 30 2023 with Bootstrap v5.3.0
* Author: BootstrapMade.com
* Adaptacion: Teresa Hualde Dec 26 2023
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Raleway", sans-serif;
  color: #3C3C3B;
}

a {
  color: #062147; /* 2F59C7#2487ce;*/
  text-decoration: none;
  font-weight: initial;
}

a:hover {
  color: #e57f4c;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif; /*Raleway*/
}


#form_lang{
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #062147; /* #2487ce;*/
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  z-index: 999999999;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #062147; /* #3e9bdd;*/
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#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 #062147;/* #2487ce;*/
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
  z-index: 2997;
  /*padding: 15px 0; 
  border-bottom: 1em solid #e6f2fb;*/
}

#header .container{
  padding-top: 0.5em;
  padding-bottom:1em;
}
#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 1.3em; /**/
  margin: 0;
  padding: 0;
  padding-left: 5em;
  line-height: 1;
  font-weight: bold; /*300*/
  letter-spacing: 0.5px;
  font-family: "Raleway", sans-serif; /*Poppins*/
}
/*#header .logo .subtexto{
  font-size: 0.5em; 
  font-weight: lighter; 
  /*margin-left: 50px; */
/*} */

#header .logo a {
  color: #3C3C3B; /*16507b*/
}




/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  display: block ruby;
  padding-right: 5em;
  font-weight: lighter; font-size: 1em;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: flex-start;
  border-bottom: 0.4em solid #062147;
}

.navbar li {
  position: relative;
  margin-right: 0.5em;
  margin-left: 0.5em;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 10px;
  font-size: 1em; /*font-size: 14px;*/
  font-weight: bolder;
  color: #3C3C3B; /*16507b*/
  white-space: nowrap;
  transition: 0.3s;
  /*text-decoration: #ff0000 underline 2px;
  text-underline-offset: 0.5em; */
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #000; /* #2487ce;*/
}

/*.navbar .getstarted,
.navbar .getstarted:focus {
  background: #062147; /* #2487ce;*/
  /*padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ef8048;  /*#3194db;*/;
/*}
*/
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #062147;/* #2487ce;*/
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}



/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #062147;  /*#124265;*/;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}



.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: calc(20% - 15px);
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 0.9em; /*15px*/
  color: #062147; /* #062147;  /*#124265;*/;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #062147; /*#2487ce;*/
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #062147; /* #2487ce;*/
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  /*padding: 80px 0;*/
  overflow: hidden;
  /*padding-left: 15%; */
}

.section-bg {
  background-color: #f8fbfe;
  padding-bottom:1em;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  padding-top: 1.5em;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #062147;  /*#124265;*/;
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}




/*TEXTO SLIDE*/
.slider {
  width: 100%;
  position: relative;
  background-color: #062147;
  padding: 2em;
  font-family: "Raleway", sans-serif;
  text-align: center;
  color:#FFF;
  font-size: 1.8em;
}

.slider p {
  width: 100%;
  height: 500px;
  position: absolute;
  top: 1.5em;
  left: 0;
}

.slider p:first-child {
  z-index: 1;
}

.slider p:nth-child(4) {
  z-index: 0;
}

.navigation-button {
  text-align: center;
  position: relative;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: hidden;
}
/*
.active,
.dot:hover {
  background-color: #717171;
}*/


#home{
  padding-bottom:2em; 
  padding-top:2em;
  background-position-x: right;
  background-position-y: center;
  background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url('/assets/img/laboratorio.jpg');
  background-size:contain;
}


/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/
#about-video{
  padding-top:10%;
}


.about-video .content {
  font-size: 1em;
  padding-left: 2em;
  
}

/*.about-video .imgrop{
justify-content: center; padding-bottom: 0.2em; margin-left:-200px; 
}
*/
.about-video .content h3 {
  /*font-weight: 700; */
  font-size: 3em;
  color: #062147;  /*#124265;*/;
}


.about-video .content h4 {
  font-weight: 700;
  font-size: 1em;
  color: #3C3C3B;  /*#124265;*/;
  padding-top: 0.8em;
}


.about-video .content ul {
  list-style: none;
  padding: 0;
}

.about-video .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about-video .content ul i {
  font-size: 1em;
  color: #062147;  /*#2487ce;*/
  position: absolute;
  left: 0.4em;
  top: 0.2em;
}

.about-video .content p:last-child {
  margin-bottom: 0;
}

.about-video .play-btn {
  width: 94px;
  height: 94px;
 /* background: radial-gradient(#2487ce 50%, rgba(36, 135, 206, 0.4) 52%);*/
  background: radial-gradient(#062147  50%, rgba(234, 95, 28, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about-video .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about-video .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(36, 135, 206, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about-video .play-btn:hover::after {
  border-left: 15px solid #062147;  /*#2487ce;*/
  transform: scale(20);
}

.about-video .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}


#inicio{
 /* padding-top: 2em;
  padding-bottom:1.5em;
  padding-left: 15%;*/
  padding-bottom:2em; 
  padding-top:2em;
  background-position-x: right;
  background-position-y: center;
  background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url('/assets/img/adn.jpg');
  background-size:contain;
}

#home .container .row_sol .col .subrayado{
  border-bottom: 3px solid #062147;
  top: -1em;
  left:-15em;
  position: relative;
}

#inicio .container .subrayado{
    border-bottom: 3px solid #062147;
    padding-bottom: 2px;
}

#inicio .container .subrayado, #propiedades .container .subrayado, #investigacion .container .subrayado, #inmobiliaria .container .subrayado{
  border-bottom: 3px solid #FF0000;
  padding-bottom: 2px;
}




.inicio .content {
  font-size: 15px;
}

.inicio .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #062147;  /*#124265;*/;
}

.inicio .content ul {
  list-style: none;
  padding: 0;
}

.inicio .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.inicio .content ul i {
  font-size: 24px;
  color: #062147;  /*#2487ce;*/
  position: absolute;
  left: 0;
  top: -2px;
}

.inicio .content p:last-child {
  margin-bottom: 0;
}

.inicio .play-btn {
  width: 94px;
  height: 94px;
 /* background: radial-gradient(#2487ce 50%, rgba(36, 135, 206, 0.4) 52%);*/
  background: radial-gradient(#062147  50%, rgba(234, 95, 28, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.inicio .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.inicio .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(36, 135, 206, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.inicio .play-btn:hover::after {
  border-left: 15px solid #062147;  /*#2487ce;*/
  transform: scale(20);
}

.inicio .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}



@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}








.img-fluidhacemos{
  width: 100vw; /*95vw*/
  height: auto;
 /* margin-left:-215px;*/
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact h2 {
  font-size: 1.3em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #062147;
}


.contact h4 {
  font-size: 0.8em;
  margin-bottom: 5px;
  color: #3C3C3B; /* #062147;/  /*#124265;*/
}

.contact p {
  font-size: 1em;
  margin-bottom: 5px;
  color: #3C3C3B; /* #062147;/  /*#124265;*/
  padding-bottom:1em;
}

.contact .info {
  width: 100%;
  background: #fff;
  font-size: 1em;
  color: #3C3C3B;
}


.contact .rrss {
  padding-top: 1em;
  font-size:1.5em;
}

.contact .info i {
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #3C3C3B; /* #062147;/  /*#124265;*/
}


.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;

}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #062147;  /*#2487ce;*/
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #062147;  /*#2487ce;*/
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #062147;  /*#2487ce;*/
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #6D6F71;  /*#3194db;*/;
}

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

  100% {
    transform: rotate(360deg);
  }
}

.contactos h2 {
  font-size: 1.3em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #062147;
}





.contactos h4 {
  font-size: 0.8em;
  margin-bottom: 5px;
  color: #3C3C3B; /* #062147;/  /*#124265;*/
}

.contactos p {
  font-size: 0.8em;
  margin-bottom: 5px;
  color: #3C3C3B; /* #062147;/  /*#124265;*/
  padding-bottom:1em;
}

.contactos .info {
  width: 100%;
  background: #fff;
  font-size: 1em;
  color: #3C3C3B;
}


.contactos .rrss {
  padding-top: 1em;
  font-size:1.5em;
}

.contactos .info i {
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.contactos .info h4 {
  padding: 0 0 0 60px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #3C3C3B; /* #062147;/  /*#124265;*/
}


.contactos .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;

}

.contactos .info .email,
.contactos .info .phone {
  margin-top: 40px;
}

.contactos .info .email:hover i,
.contactos .info .address:hover i,
.contactos .info .phone:hover i {
  background: #062147;  /*#2487ce;*/
  color: #fff;
}

.contactos .php-email-form {
  width: 100%;
  background: #fff;
}

.contactos .php-email-form .form-group {
  padding-bottom: 8px;
}

.contactos .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contactos .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contactos .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contactos .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contactos .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contactos .php-email-form input,
.contactos .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contactos .php-email-form input:focus,
.contactos .php-email-form textarea:focus {
  border-color: #062147;  /*#2487ce;*/
}

.contactos .php-email-form input {
  height: 44px;
}

.contactos .php-email-form textarea {
  padding: 10px 12px;
}

.contactos .php-email-form button[type=submit] {
  background: #062147;  /*#2487ce;*/
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contactos .php-email-form button[type=submit]:hover {
  background: #ef8048;  /*#3194db;*/;
}





/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
 /* color: #000;
  font-size: 14px;
  background: #6E7072; /* #f8fbfe;*/
 /* box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);*/

  color: #000;
  font-size: 14px;
  background-image: url('/assets/img/logo_footer.png');
  background-repeat: no-repeat;
  background-size: 100% 130px;
  height: 130px;
  width: 100%;

}

#footer .footer-top {
  padding: 60px 0 30px 0;
  /*background: #6D6F71; /*#fff;*/
  background-image: url('/assets/img/logo_footer.png');
  background-size: contain;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-contact .logo {
  font-size: 1.3em; /**/
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: bold; /*300*/
  letter-spacing: 0.5px;
  font-family: "Raleway", sans-serif; /*Poppins*/

}
#footer .footer-top .footer-contact .logo .subtexto{
  font-size: 0.5em; 
  font-weight: lighter; 
  /*margin-left: 50px;*/
  color:#FFF;
}

#footer .footer-top .footer-contact .logo a {
  color: #FFF; /*16507b*/
}


#footer .footer-top .logo img {
  max-width: 100%;
  height: auto;
  font-size: 1.3em;
  margin: 0;
  padding: 0;
    padding-left: 0px;
  padding-left: 5em;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-family: "Raleway", sans-serif;
}
/*#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif; /*Raleway*/
 /* color: #777777;
}*/

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #FFF; /*124265*/
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  text-decoration: underline 1.5px;
  text-decoration-color: currentcolor;
  text-decoration-color: white;
  text-underline-offset: .25em;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #FFF; /*2487ce*/
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
    justify-content: center
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #FFF; /*777777*/
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #062147;  /*#2487ce;*/
}


#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-hablemos{
  font-weight: 600; 
  font-size: 1em;
  display: inline-flex;
  padding: 1.5em;
  border-radius: 1em;
  transition: 0.3s;
  line-height: 1;
  color: #FFF;
  animation-delay: 0.8s;
  border: 2px solid #FFF;
  height:5em;
  align-items: center;
  justify-content: center;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #062147;  /*#2487ce;*/
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #ef8048;  /*#3194db;*/;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
 /* background: #FFF; /*2487ce*/
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 1.1em;
 /* width: 36px;
  height: 36px;*/
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #062147; /* #3194db;*/
  color: #fff;
  text-decoration: none;
}

#footer .footer-top .footer-hablemos .hablemos{
  font-size: 1.8em;
  padding-right: 0.8em;
}

#footer .footer-top .footer-hablemos .hablemosinfo{
  font-weight: lighter; 
  padding-right: 0.8em;
}

.estilo_wap{
	width: 3%;float: right;z-index: 10000000000;position: fixed;right: 60px; bottom: 15px;
}





#texto_animado {
  width: 100%;
  height: 100px;
  animation: move 10s infinite;
}


@keyframes move {
  from { margin-bottom: 0px; }
  to { margin-top: -200px; }
}



.card{
  cursor:pointer;
}

.card-img-top{
  width: 250px;
}



/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 1rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 38rem;
}

.carousel-caption{
 top:1%
}


.btnCarousel{
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 1em;
  padding: 10px 35px;
  background-color: #305ED0;
  color: white;
  border-radius: 1em;
  left: 4em;
  top: 32em;
  position: absolute;
  z-index: 99;
}

#propiedades{
  padding-top:5em;
}

#colProp{
  width: 2em;background-color: #062147;position: relative;top: -3em;height: 550px; display: block;
}

#colInves{
  width: 9em;
  /*background-color: #0077AD;*/
  position: absolute;margin-top: -3em;height: 1480px; display: block;z-index:1001;
  background: linear-gradient(0deg, rgba(7,36,78,1) 0%, rgba(0,119,174,1) 100%);
}

#colInmo{
  width: 2em;background-color: #062147;position: relative;top: -3em;height: 400px; display: block;
}

#colReq{
  width: 2em;background-color: #062147;height: 400px; display: block;
}

#colGar{
  width: 2em;background-color: #062147;height: 400px; display: block;
}

#h3titulo{
  font-size:2em; color:#FFF; font-weight: 100;
}

#h3subtitulo{
  font-size:2em; color:#062147; font-weight: bolder;
}
#h3investigacion{
  font-size: 1.4em;color: #062147;font-weight: 200;width: 80%;text-align: justify;margin: auto;padding-top: 1em;
}
#h3subtitulo_sol{
  font-size: 2.5em;color: #062147;line-height:1.5em;padding-top:3em; /*font-weight: 100;*/
}

.row_sol{
  padding:0.5em;width:45%; height:100%; text-align:left; background-color: #FFFFFF78;margin: auto;margin-left: 2em;padding-top: 10em;
}

.row_nos{
  padding:0.5em;width:70%; height:auto; text-align:center; background-color: #062147C2;margin: auto;
}

.col_mivi{
  padding:2em;width:70%; height:calc(100% + 2em); text-align:center; background-color: #FFFFFFD4;margin-right: 1em
}

#mivi{
  padding-top:2em;width:70%; height:60vh; text-align:center;margin: auto; /*70%*/
  
}
#prodyserv{
  margin-top:-2em;
  /*padding-bottom: 8em; */
}


.rectangulo-lista {
  padding: 20px;
  border-radius: 10px;
  padding-top: 6em;width: 70%; height: 100%; text-align: left;  margin: auto;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.rectangulo-lista li {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.rectangulo-lista li::before {
  content: ".....";
  margin-right: 1.5em;
  font-size: 2em;
  background: linear-gradient(90deg, rgba(7,36,78,1) 64%, rgba(121,148,187,1) 100%);
  height: 10px;
  color: white;
}



/*#investigacion{
  margin-top:-8em;
} */


.col_investigacion{
  color:#07244E;font-weight: 200;font-size: 1em;width: 80%;text-align: justify;margin: auto; padding-top: 2em;
}

.col_inv{
  padding-bottom:2em;
  width:100%; 
  height:100%;
   text-align:center; 
  background-color: #EEEEEE61;
  margin-left: 3em;
  z-index: 1002;
}
.rowInv{
  padding-bottom: 2em;
  width: 95%;
  padding-left: 3em;
}

.card-img-prensa{
  height:240px;
}

 .logoon{
  display: none;
 }
 .logoff{
  display:block;
 }
@media (max-width: 768px) {
  .card-img-prensa {
    height: 100px;
  }

  .col_inv{
    margin-left: 1em;
  }

  .rowInv{
    padding-bottom: 1em;
    width: 99%;
    padding-left: 0.5em;
    --bs-gutter-x: 0.5rem;
  }
  #h3investigacion{
    width: 90%;
  }
  #investigacion{
    margin-top:4em;
  }

  .col_investigacion{
    width: 100%;

  }
  #inicio{
    /*padding-top:30%;*/
    padding-top: 0;
    margin-top: 1.1em;
    padding-right: 1.1em;
  }
  #home{
    height: 60vh;
  }
  #mivi{
    height:auto;
    margin-left: 2em;
    width: 95%;
  
  }
  /*.contact {
    margin-top: -4em;
  } */

  .contactos {
    margin-top: -4em;
  }
  section{
    padding-left:0.1em;
  }
  .carousel-inner{
    margin-left:0; /*1%*/
  }

  .img-fluidhacemos{
    margin-left:0; /*-60px;*/
  }
  .btnCarousel{
    left: 1em;
    top: 18em;
  }

  #prodyserv{
    margin-top:-5em;
    padding-bottom: 25em;
  }
  #propiedades{
    padding-top:0;
    padding-right: 1.1em;
  }
  
  #investigacion, #inmobiliaria, #requisitos, #garantia{
    padding-right: 1.1em;
  }

  #colProp, #colInves, #colInmo, #colReq, #colGar{
    display: none;
  }

  #h3titulo{
    color:#FFF;font-size:2.2em; 
    padding-left:0.1em;
  }
  #h3subtitulo{
    font-size:2.2em; color:#0C608A; font-weight: bolder;
  }
  #h3subtitulo_sol{
    font-size: 1.5em;
    font-weight: 300;
  }
  .row_sol{
    width:85%;
    height:60vh;
  }

  .row_nos{
    padding-top:2em;
    width:90%;
    height:auto;
    margin-left: 2em;
    padding-bottom: 2em;
  }

  .logoff{
    display: none;
   }
  
  #header .logoon{
    display: block;
    padding-left: 0;
    margin-left: -5em;
   }
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 1.0em; /*28px;*/

  }
  #header .logo .subtexto{
    font-size: 0.8em; 
  }
  #colInves{
    height: 2500px;
  }
  /*#investigacion {
    margin-top: -20em;
  } */
  .card-img-prensa {
    height: 180px;
  }

  .row_nos{
    padding-top:2em;
    width:90%;
    height:auto;
    margin-left: 2em;
    padding-bottom: 2em;
  }
  #mivi{
    height:auto;
    margin-left: 2em;
    width: 95%;
  
  }
  
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  .navbar-mobile ul{
    display: block;
  }
  /*#footer {
    margin-top: -4em;
  } */
  #footer .container {
  margin-top:-2em;
  }
  #footer .footer-top .footer-contact .logo{
    font-size: 1.1em;
    margin-bottom:0;
  }
  #footer .footer-top .footer-links{
    font-size:0.9em;
  }
  #footer .footer-top .footer-hablemos{
    display: inline-table;
  }
  #footer .footer-top .footer-hablemos .hablemos{
    text-align: center;
    padding-bottom: 10px;
    font-size: 1.6em;
  }
  #footer .footer-top .footer-hablemos .hablemosinfo{
    text-align: center;
    padding-bottom: 10px;
  }

  #footer .footer-top .footer-hablemos{
    margin-top: 0px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    width: 90%;
  }
  .estilo_wap{
    width: 13%;float: right;z-index: 100;position: fixed;right: 60px; bottom: 10px;
  }

  .rectangulo-lista{
    width:90%;
  }
}





/*
ol li {list-style: upper-alpha;}
ol li {list-style: linear-gradient(90deg, rgba(7,36,78,1) 64%, rgba(121,148,187,1) 100%);
*/

