@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Crimson+Text&display=swap');


@font-face {
    font-family: 'Roboto';
    src: url('fuente/Roboto-Regular.ttf') format('truetype');

    /* Puedes agregar otros formatos aquí si lo deseas, como woff, woff2, etc. */

    font-family: 'Roboto-Bold';
    src: url('fuente/Roboto-Bold.ttf') format('truetype');
    /* Puedes agregar otros formatos aquí si lo deseas, como woff, woff2, etc. */

    font-family: 'Garamond';
    src: url('fuente/fonts/CormorantGaramond-Regular.ttf') format('truetype');

    /* Puedes agregar otros formatos aquí si lo deseas, como woff, woff2, etc. */

    font-family: 'Garamond-Italic';
    src: url('fuente/fonts/CormorantGaramond-Italic.ttf') format('truetype');
    /* Puedes agregar otros formatos aquí si lo deseas, como woff, woff2, etc. */

    font-family: 'Garamond-Bold';
    src: url('fuente/fonts/CormorantGaramond-Bold.ttf') format('truetype');
    /* Puedes agregar otros formatos aquí si lo deseas, como woff, woff2, etc. */
}

body
{
   background: none;
   width: 100%;
	text-align: center;
   font-family: 'Roboto', sans-serif;
}

/*---------------------------------------------HEADER*/
#headertop {
    background: rgb(164,199,53);
    color: #FFF;
    padding: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
}

.list-inline {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.list-inline li {
    text-align: center;
    margin-right: 2px;
    font-weight: bold;
}

.topbar-label{
    margin-right: 5px;
}

.list-inline.text-center {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

#logo
{
   margin: 0 auto;
   padding: 0 auto;
   width: 100%;
}

#logo img
{
   max-width: 100%;
}


#header_fijo {
   position: -webkit-sticky;
   position: sticky;
   top: 0;
   width: 100%;
   z-index: 1000;
   background-color: #fff;
}

#header-menu, #menu-desplegable
{
   display: inline-block;
   vertical-align: top;
}

/********DISEÑO DE MENU DESPLEGABLE ***************************/
#header-menu
{
   background-color: #fff;
   margin: 1em 0 0 0;
   height: 0 auto;
   padding: 0 auto;
   width: 15%;
}

#menu-desplegable
{
   background-color: #fff;
   margin: 4em 0 0.2em 0;
   padding: auto;
   height: 56px;
   width: 75%;
   font-family: 'Roboto', sans-serif;
}

#menu-principal
{

   background-color: #fff;
   display: inline-block;
}

#main-menu li:hover
{
   background: rgb(255,255,255);
}

#main-menu li a 
{
   color: #333;
   font-family: 'Crimson Text', serif;
   font-size: 20px;
}

li:hover ul
{
   background: #678;
   border-radius: 0 0 0 0;
   display: block;
   margin-top: 0;
}
/*Codigo del menu que despliega con los elementos*/
li #menu_desplegable
{
   background: #FFF;
   border-radius: 0 0 5px 5px;
   box-shadow: rgba(245,245,245,0.7) 5px 5px 10px;
}



li #menu_desplegable li a
{
   color: #333;
}

/*Color de las letras del menu*/
li #menu_desplegable li a:hover
{
    color: rgb(164,199,53);
}

li #menu_desplegable li:hover
{
   border-top: none;
}

li #menu_usuario
{
   background: #FFF;
   border-radius: 0 0 5px 5px;
   box-shadow: rgba(245,245,245,0.7) 5px 5px 10px;
   width: 120%;
}

li #menu_usuario li a
{
   color: #333;
}

li #menu_usuario li a:hover
{
   color: rgb(164,199,53);
}

li #menu_usuario li:hover
{
   border-top: none;
}

#main-menu
{
   background: #fff;
   display: flex;
   align-items: center;
   margin: 0 auto;
   padding: 0;
   height: 56px;
   font-size: 18px;

}

#main-menu li {
    background: none;
    font-size: 18px;
    position: relative;
}



#main-menu li a{
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
#main-menu li a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: rgb(164,199,53);;
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#main-menu li a:hover:before, #main-menu li a:focus:before, #main-menu li a:active:before {
  left: 0;
  right: 0;
}

#main-menu li a:hover {
    background: rgb(255, 255, 255);
    border-radius: 0 0 0 0;
    color: rgb(164,199,53);
}


/*************EFECTOS DEL BOTON ACCEDER *************/
#acceder
{
   border: 2px solid rgb(164,199,53); 
   color: rgb(50,50,50);
   margin-top: 0.5em;
   float: right;
}
#acceder:hover
{
   background-color: rgb(164,199,53);
   color: #fff;
   box-shadow: 0 5px 15px 7px rgba(252,225,245, 0.6);
}

/*----------------------------SECCION PRINCIPAL -----------*/
#page
{
   width: 100%;
}

#label_text
{
   background: red;
}

#seccion-principal
{
   background: rgb(255,255,255);
   padding: 0;
}

/*------------------------------------SECCION DE POLITICA Y MISION------------*/

#nosotros
{
   background-color: rgb(245,245,245);
   padding: 2em;
}

#full h2 {
   color: rgb(18,66,101);
   font-family: 'Cormorant Garamond', serif;
   font-size: 34px;
}

#full h3 
{
    text-align: justify;
}

#clients h2
{
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: bold;
    color: rgb(18,66,101);
    margin-top: 0;
}


#nosotros h2, .section-title-area h2
{
   color: rgb(18,66,101);
   font-weight: bold;
   font-family: 'Assistant', sans-serif;
   font-size: 34px;
}

#foot1, #foot2
{
   font-family: 'Assistant', sans-serif;
}

/***********SECCION DE ICONOS DE FACTORES QUE NOS HACEN UNICOS **********/
#sect-icons img 
{
    width: 100%;
}

.icon
{
    height: 120px;
    width: 140px;
    margin: 0 auto;
}

#innovacion
{
    height: 120px;
    width: 140px;
}
#innovacion img 
{
    height: auto;
    max-width: 90%;
    margin: 0 auto;
}


#s_cliente img 
{
    height: auto;
    max-width: 90%;
    margin: 0 auto;
}

/*----------------------------NAVEGADORES */

#foot1
{
   background: none;
   color: rgb(100, 100, 100);
   margin: 0 auto;
   text-align: center;
   width: 30%;
}

#foot1 h3 
{
    font-family: 'Crimson Text', serif;
}

#foot1 li, #foot2 li 
{
   list-style: none;
   margin: 0 0 1em 0;
}

#foot2 li a
{
   color: rgb(100,100,100);
   
}

#foot2
{
   background: none;
   color: rgb(100,100,100);
   margin: 0 auto;
   text-align: center;
   width: 40%;
}

#foot1, #foot2 
{
   display: inline-block;
   vertical-align: top;
}

/*Pie de la pagina*/
footer
{
   color: rgb(220,220,220);
   font-size: 18px;
   margin: 0 auto;
   padding: 2em 0;
   text-align: center;
}

p 
{  
   text-align: center;
}
#foot3
{
   background: rgb(255,255,255);
   border-top: 4px rgb(200,200,200) solid;
}

#copyright
{
   font-size: 18px;
}

#copyright_2
{
   background: none;
   font-size: 10px;
   font-weight: bold;
   margin: 0;
   padding: 1em 0;
   text-align: center;
   width: 100%;
}

.go-top {
   position: fixed;
   bottom: 3em;
   right: 8.5em;
   text-decoration: none;
   color: #fff;
   background: rgb(70,70,70);
   border-radius: 3em 3em 0 3em;
   font-size: 14px;
   padding: 1em;
   display: none;
}

.go-top:hover {
   background: rgb(100,100,100);
   color: #FFF;
}

/*----------------------------------------------------------------PIE DE PAGINA*/
#navegad1
{
	background: rgb(245, 245,245);

}

#navegad1 li 
{
   font-family: 'Crimson Text', serif;
}

#navegad2
{
   background: rgb(70, 70, 70);
   border-top: 5px solid rgb(20,20,20);
   height: 200px;
}


#foot_redes1
{
    margin: 0;
    padding: 0;
}

#foot_redes1 h3
{
    
    font-family: 'Crimson Text', serif;
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 28px;
    font-weight: bold;
}


 #contador 
 {
   margin: 0 2.5em 0 0;

 }

.list-inline2.text-center {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 1em;
    list-style: none;
}


.list-inline2 a  {

   font-size: 32px;
    color: #fff; /* Elimina el subrayado en los enlaces */
    margin: 0 0.5em 0 0;
    text-decoration: none; /* Elimina el subrayado en los enlaces */
}

#facebook:hover
{
    color: rgb(16,98,255); 
}

#twitter:hover
{
    color: rgb(48,204,251); 
}

#instagram:hover
{
    color: rgb(243,60,51); 
}

#lkedin:hover
{
    color: rgb(0,122,187); 
}


.list-inline2 .fa-brands {
    font-size: 26px; /* Cambia el tamaño de los iconos a 26px */
    color: #fff; /* Cambia el color de los iconos a blanco (#fff) */
    transition: color 0.3s; /* Agrega una transición para suavizar el cambio de color */
}

.list-inline2 .fa-brands:hover {
    color: rgb(3,196,235); /* Cambia el color al pasar el mouse */
}

#foot1 h3
{
   font-family: 'Roboto', sans-serif;
   color: #fff;
}

/*---------------------------------D -----------------*/
/* Estilos para la sección de servicios */

#cont_servicios{
   border: 3px solid #ddd; /* Borde de las cajas */
}


.service-item{
   background: #fff;
}

#services .service-item {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid #ddd; /* Borde de las cajas */
    transition: box-shadow 0.3s ease; /* Transición para el efecto hover */
}


#services .service-item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Sombra al hacer hover */
}

#services .service-image {
    text-align: center;
    padding: 20px;
}

#services .service-image img {
    max-width: 100%; /* Evita que las imágenes se salgan de las cajas */
    height: auto; /* Mantiene la proporción de la imagen */
}

#servicios_container
{
   background: #fff;
}

#services .service-content {
   background: #fff;
    padding: 20px;
}

/* Estilos para las dos columnas */
@media (min-width: 768px) {
    #services .col-sm-6 {
        width: 50%;
        float: left;
    }
}

.section-title-area h2
{
   font-family: 'Assistant', sans-serif;
}

/*--------------SECCION DE SLIDER ----------------------*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#container-slider
{
    position: relative;
    display: block;
    width: 100%;
}

#slider {
    position: relative;
    display: block;
    width: 100%;
    height: 55vh;
    min-height: 750px;
}

#slider li {

    background-repeat: no-repeat;
    background-size: 100%  100%; /* Ancho automático y alto 100% para ajustar la imagen al alto del slider */
    background-position: center;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    z-index: -1;
    opacity: 0;
}


#container-slider .arrowPrev, #container-slider .arrowNext{
    font-size: 30pt;
    color: rgba(204, 204, 204, 0.65);
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50px;
    z-index: 2; 
}

#container-slider .arrowNext {
    left: initial;
    right: 50px !important;
}

.content_slider{
    padding: 15px 30px;
    color: #FFF;
    width: 100%;
    height: 100%;
}

.content_slider div{
    text-align: center;
}

.content_slider h2{
    font-family: 'arial';
    font-size: 30pt;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.content_slider p {
    font-size: 15pt;
    font-family: 'arial';
    color: #FFF;
    margin-bottom: 20px;
}

#slider li .content_slider{
    background: rgba(0, 0, 0, 0.50);
    padding: 10px 125px;
}

.content_slider{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnSlider{
    color: #FFF;
    font-size: 15pt;
    font-family: 'arial';
    letter-spacing: 1px;
    padding: 10px 50px;
    border: 1px solid #CCC;
    background: rgba(13, 13, 13, 0.55);
    border-radius: 31px;
    text-decoration: none;
    transition: .5s all;
}

.btnSlider:hover{
    background: #111;
    border: 1px solid #111;
}

.listslider {
    position: absolute;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 50%;
    bottom: 5%;
    list-style: none;
    z-index: 2;
    transform: translateX(-50%);
}

.listslider li {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    cursor: pointer;
    margin: 0 5px;
}

.listslider li a {
    background: #CCC;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: block;
}

.item-select-slid {
    background: #FFF  !important;
}


/*******Seccion de convenios*****/

.container_clientes {
    background-color: #fff;
    margin: 0 auto;
    max-width: 90%;
    overflow: hidden; /* Oculta el desbordamiento */
    position: relative;
}

.clients-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    animation: scrollLeft 30s linear infinite; /* Movimiento continuo sin pausa */
}

.client-col {
    background-color: #fff;
    flex: 0 0 auto; /* Evita que los items se estiren */
    height: 150px;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-col img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Animación de desplazamiento continuo */
@keyframes scrollLeft {
    0% {
        transform: translateX(0); /* Inicia en su posición original */
    }
    100% {
        transform: translateX(-100%); /* Desplaza todo el contenido hacia la izquierda */
    }
}


@keyframes marquee {
    0% {
        transform: translateX(100%); /* Comienza con la posición inicial desplazada */
    }
    100% {
        transform: translateX(-100%); /* Termina con la posición final desplazada */
    }
}


/* Adaptaciones para smartphones o pantallas pequeñas */
@media (max-width: 768px) {
    .client-col {
        height: 100px; /* Ajusta la altura en pantallas pequeñas */
        margin: 0 5px; /* Reduce el margen entre los logos */
    }
    
    .client-col img {
        max-width: 80%; /* Reduce el tamaño de las imágenes en móviles */
        max-height: 80%;
    }

    /* Puedes hacer que la animación sea más lenta para que el contenido sea más legible */
    .clients-wrapper {
        animation: scrollLeft 50s linear infinite; /* Aumenta la duración en móviles si es necesario */
    }
}


/*fin de seccion de convenios*/


.fab {
   padding: 20px;
   font-size: 30px;
   width: 30px;
   text-align: center;
   text-decoration: none;
   margin: 5px 2px;
   border-radius: 50%;
   }
   
   .fab:hover {
   opacity: 0.7;
   }
   
   .fa-whatsapp {
   background: #45bbff;
   color: white;
   }

   .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: #fff;
      padding: 10px 10px;
      border-radius: 50px;
      text-align: center;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
   
   z-index: 1000;
  }

  .whatsapp-button:hover {
   background-color: rgb(13,192,67);

}

#noticias
{
   /*background-color: rgb(245,245,245);*/
   background: url('img/fond_nosotros.jpg') no-repeat center center fixed;
   background-size: 100%  100%;
   background-position: center;
   padding: 0 ;
   margin: -1em 0 0 0;
}
#servicios
{
   /*background-color: rgb(245,245,245);*/
   background: url('img/fond_nosotros.jpg') no-repeat center center fixed;
   background-size: 100%  100%;
   background-position: center;
   padding: 2em;
}

#seccion_dos
{
   /*background-color: rgb(245,245,245);*/
   background-color: rgb(255, 255,255);
   
   padding: 2em;
}

/*****seccion dos despues del slider de imagenes****/
#btn-nosotros
{
    background-color: #FFF;
    border: 2px solid rgb(27, 99, 150);
    display: inline-block;
    color: rgb(18,66,101);
    font-weight: bold;
    padding: 0.7em 1.5em;
    width: 30%;
}


#btn-contact
{
    background-color: #FFF;
    border: 2px solid rgb(27, 99, 150);
    display: inline-block;
    color: rgb(18,66,101);
    font-weight: bold;
    padding: 0.7em 1.5em;
    width: 30%;
}


#btn-nosotros, #btn-contact
{
    margin: 0 1em 0 1em;
}

#btn-nosotros:hover, #btn-contact:hover
{
    background-color: rgb(164,199,53);
    border: none;
    color: #FFF;
}


/******seccion 3 home principal *****/
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 2em;
  }
  
  .card-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
  }
  
  .card-item:hover {
    transform: scale(1.05);
  }
  
  .card-item img {
    display: block;
    border-radius: 8px 8px 0 0;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: 50% 50%;
  }
  
  .card-item .card-content {
    padding: 15px 20px 20px 20px;
    text-align: center;
  }
  
  .card-item span {
    font-size: 0.8rem;
    color: #4682B4;
    font-weight: 700;
  }
  
  .card-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  
  .card-item p {
    font-size: 14px;
    text-align: justify;
    color: #A9A9A9;
    margin: 0;
  }
  
  .credits {
    margin-top: auto;
    padding-top: 100px;
    color: #A9A9A9;
    text-align: right;
  }

@keyframes fadeInUpH2 {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpP {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Elimina las animaciones iniciales en los elementos */
.section-title-area h2 {
    animation: fadeInUpH2 1s ease both;
    animation-delay: 2.5s; 
}

.section-title-area .client-col{
   animation: fadeInUpH2 1s ease both;
   animation-delay: 3s; 
}


.service-item {
    animation: fadeInUpH2 1s ease both;
    animation-delay: 0s; 
}

/* Elimina las animaciones iniciales en los elementos */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInleft {
    from {
        opacity: 0;
        transform: translateY(200%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#full h2 {

    font-weight: bold;
    animation: fadeInDown 1s ease both;
    animation-delay: 1s;
}

#full h3 {
    animation: fadeInDown 1s ease both;
    animation-delay: 1.5s;
}

#star, .fas.fa-star {
    display: inline-block;
    font-size: 28px; /* Tamaño de las estrellas */
    margin-right: 5px; /* Espaciado entre estrellas */ 
}


#star
{
    height: 40px;
    width: 40px;
    animation: fadeInDown 1s ease both;
    animation-delay: 1.4s;
}

#star img
{
    width: 100%;
}


#sect-icons {
    animation: fadeInleft 1s ease both;
    animation-delay: 2s;
}



@keyframes fadeInUpH2 {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpP {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#cl_h2
{
   animation: fadeInDown 1s ease both;
    animation-delay: 1s;

}

/*--------------SECCION DE QUE OFRECEMOS ----------------------*/
#ns_h2 h2 
{
    font-family: 'Cormorant Garamond', serif;
}

.img-c-normativo
{
    width: 30%;
}
.img-c-normativo img
{
    width: 55%;
    margin: 0 auto;  
}

.section-subtitle
{
    max-width: 60%;
    padding: 1em;
}

.img-c-normativo, .section-subtitle
{
    display: inline-block;
    vertical-align: middle;
}

.section-subtitle h3
{
    color: rgb(18,66,101);
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: bold;
}

.section-subtitle h4
{
    text-align: justify;
    font-family: 'Crimson Text', serif;
    font-size: 22px;
}


.img-c-eficacia
{
    width: 30%;
}

.img-c-eficacia img
{
    width: 55%;
    margin: 0 auto; 
}


.section-subtitle-eficacia
{
    max-width: 60%;
    padding: 1em;
}

.img-c-eficacia, .section-subtitle-eficacia
{
    display: inline-block;
    vertical-align: middle;
}

.section-subtitle-eficacia h3
{
    color: rgb(18,66,101);
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: bold;
}

.section-subtitle-eficacia h4
{
    text-align: justify;
    font-family: 'Crimson Text', serif;
    font-size: 22px;
}

.section-title-servicios h2
{
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: bold;
    color: rgb(18,66,101);
}


@keyframes fadeInDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(100%); /* Comenzar desde la parte inferior */
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.section-title-servicios h2 {
    animation: fadeInDown 2s ease both; /* Aumentamos la duración a 3 segundos */
    animation-delay: 2s; /* Mantenemos el retraso de 2 segundos */
}

.section-subtitle h3
{
    animation: fadeInUp 2s ease both; /* Cambiamos la animación a fadeInUp */
    animation-delay: 2.5s; /* Mantenemos el retraso de 2.5 segundos */   
}

.img-c-normativo {
    animation: fadeInUp 2s ease both; /* Cambiamos la animación a fadeInUp */
    animation-delay: 2.8s; /* Mantenemos el retraso de 2.5 segundos */
}

.section-subtitle h4
{
    animation: fadeInUp 2s ease both; /* Cambiamos la animación a fadeInUp */
    animation-delay: 2.7s; /* Mantenemos el retraso de 2.5 segundos */   
}


#btn-nosotros, #btn-contact
{
    animation: fadeInUp 3s ease both; /* Cambiamos la animación a fadeInUp */
    animation-delay: 3s; /* Mantenemos el retraso de 2.5 segundos */   
}



.section-subtitle-eficacia h3
{
    animation: fadeInUp 2s ease both; /* Cambiamos la animación a fadeInUp */
    animation-delay: 2.9s; /* Mantenemos el retraso de 2.5 segundos */   
}

.section-subtitle-eficacia h4
{
    animation: fadeInUp 2s ease both; /* Cambiamos la animación a fadeInUp */
    animation-delay: 3s; /* Mantenemos el retraso de 2.5 segundos */   
}

.img-c-eficacia {
    animation: fadeInUp 2s ease both; /* Cambiamos la animación a fadeInUp */
    animation-delay: 3.1s; /* Mantenemos el retraso de 2.5 segundos */
}

/*****responsive para laptop*********/
@media (min-width: 1400px) and (max-width: 1572px){

/********DISEÑO DE MENU DESPLEGABLE ***************************/
#header-menu
{
   background-red: #fff;
   margin: 1em 0 0 0;
   height: 0 auto;
   padding: 0 auto;
   width: 14%;
}

/*************EFECTOS DEL BOTON ACCEDER *************/
#acceder
{
   border: 2px solid rgb(164,199,53); 
   color: rgb(50,50,50);
   margin-top: 0.5em;
   float: right;
}
#acceder:hover
{
   background-color: rgb(164,199,53);
   color: #fff;
   box-shadow: 0 5px 15px 7px rgba(252,225,245, 0.6);
}


#menu-desplegable
{
   background: #fff;
   margin: 3.5em 0 0.2em 0;
   padding: auto;
   height: 46px;
   width: 80%;
   font-family: 'Roboto', sans-serif;
}

#menu-principal
{
   background: #fff;
   display: inline-block;
   width: 80%;
}


#main-menu li {
    background: none;
    font-size: 16px;
    position: relative;
}

#main-menu li a{
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  font-size: 18px;
}
#main-menu li a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background-color: rgb(164,199,53);
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#main-menu li a:hover:before, #main-menu li a:focus:before, #main-menu li a:active:before {
  left: 0;
  right: 0;
}

#main-menu li a:hover {
    background: rgb(255, 255, 255);
    border-radius: 0 0 0 0;
    color: rgb(164,199,53);
}

li:hover ul
{
   background: #678;
   border-radius: 0 0 0 0;
   display: block;
   margin-top: 0;
}
li #menu_desplegable
{
   background: #FFF;
   border-radius: 0 0 5px 5px;
   box-shadow: rgba(245,245,245,0.7) 5px 5px 10px;
}

li #menu_desplegable li a
{
   color: #333;
}

/*Color de las letras del menu*/
li #menu_desplegable li a:hover
{
    color: rgb(164,199,53);
}

li #menu_desplegable li:hover
{
   border-top: none;
}

li #menu_usuario
{
   background: #FFF;
   border-radius: 0 0 5px 5px;
   box-shadow: rgba(245,245,245,0.7) 5px 5px 10px;
   width: 120%;
}

li #menu_usuario li a
{
   color: #333;
}

li #menu_usuario li a:hover
{
   color: rgb(164,199,53);
}

li #menu_usuario li:hover
{
   border-top: none;
}

#main-menu
{
   background: #fff;
   display: inline-block;
   margin: 0 auto;
   padding: 0;
   font-size: 18px;

}

#main-menu li
{
   background: none;
   font-size: 18px;
}

#main-menu li a:hover
{
   background: rgb(255,255,255);
   border-radius: 0 0 0 0;
   color: rgb(164,199,53);
}
#main-menu a
{
   color: #FFF;
   margin: 0 auto;
}

#mobile-menu-button
{
   float: right;
   margin: -3em 0 0 0;
   width: 44px;
}

#mobile-main-menu
{
   display: none;
   background: rgb(250,250,250);
}


#mobile-main-menu li
{
   list-style: none;
   margin: 0;
}

#mobile-main-menu a:hover
{
   background-color: #a3d900;
   color: #fff;
   text-decoration: none;

}


button {
   background-color: #eee;
   border: none;
   padding: 5px 10px;
   border-radius: 20px; /* Establece un borde redondeado */
   cursor: pointer;
}


   #container-slider .arrowPrev{

      left: 15px;

   }

   #container-slider .arrowNext{

      right: 15px !important;

   }

   #slider{
      height: 600px;
      min-height: 580px;
   }

   #slider li {
      background-size: 100%  100%; /* Ancho automático y alto 100% para ajustar la imagen al alto del slider */
      background-position: center; /* Esto centrará la imagen */
      background-repeat: no-repeat; /* Esto evitará la repetición de la imagen */
      height: 100%; /* Esto asegurará que el <li> tenga el mismo alto que el slider */
  }
  


   #slider li .content_slider{

      padding: 10px 35px;

   }

   .btnSlider{

      padding: 10px 30px;

      font-size: 10pt;

   }


}

/*****responsive para laptop*********/
@media (min-width: 1025px) and (max-width: 1429px){

/********DISEÑO DE MENU DESPLEGABLE ***************************/
#header-menu
{
    margin: 1em 0 0 0;
   height: 0 auto;
   padding: 0 auto;
   width: 12%;
}

/*************EFECTOS DEL BOTON ACCEDER *************/
#acceder
{
   border: 2px solid rgb(164,199,53); 
   color: rgb(50,50,50);
   margin-top: 0.5em;
   float: right;
}
#acceder:hover
{
   background-color: rgb(164,199,53);
   color: #fff;
   box-shadow: 0 5px 15px 7px rgba(252,225,245, 0.6);
}


#menu-desplegable
{
   margin: 3.5em 0 0.2em 0;
   padding: auto;
   height: 46px;
   width: 80%;
   font-family: 'Roboto', sans-serif;
}

#menu-principal
{
   display: inline-block;
   width: 80%;
}


#main-menu li {
    font-size: 17px;
    position: relative;
}

#main-menu li a{
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  font-size: 16px;
}
#main-menu li a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background-color: rgb(164,199,53);
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#main-menu li a:hover:before, #main-menu li a:focus:before, #main-menu li a:active:before {
  left: 0;
  right: 0;
}

#main-menu li a:hover {
    background: rgb(255, 255, 255);
    border-radius: 0 0 0 0;
    color: rgb(164,199,53);
}

li:hover ul
{
   background: #678;
   border-radius: 0 0 0 0;
   display: block;
   margin-top: 0;
}
li #menu_desplegable
{
   background: #FFF;
   border-radius: 0 0 5px 5px;
   box-shadow: rgba(245,245,245,0.7) 5px 5px 10px;
}

li #menu_desplegable li a
{
   color: #333;
}

/*Color de las letras del menu*/
li #menu_desplegable li a:hover
{
    color: rgb(164,199,53);
}

li #menu_desplegable li:hover
{
   border-top: none;
}

li #menu_usuario
{
   background: #FFF;
   border-radius: 0 0 5px 5px;
   box-shadow: rgba(245,245,245,0.7) 5px 5px 10px;
   width: 120%;
}

li #menu_usuario li a
{
   color: #333;
}

li #menu_usuario li a:hover
{
   color: rgb(164,199,53);
}

li #menu_usuario li:hover
{
   border-top: none;
}

#main-menu
{
   background: #fff;
   display: inline-block;
   margin: 0 auto;
   padding: 0;
   font-size: 18px;

}

#main-menu li
{
   background: none;
   font-size: 18px;
}

#main-menu li a:hover
{
   background: rgb(255,255,255);
   border-radius: 0 0 0 0;
   color: rgb(164,199,53);
}
#main-menu a
{
   color: #FFF;
   margin: 0 auto;
}

#mobile-menu-button
{
   float: right;
   margin: -3em 0 0 0;
   width: 44px;
}

#mobile-main-menu
{
   display: none;
   background: rgb(250,250,250);
}


#mobile-main-menu li
{
   list-style: none;
   margin: 0;
}

#mobile-main-menu a:hover
{
   background-color: #a3d900;
   color: #fff;
   text-decoration: none;

}


button {
   background-color: #eee;
   border: none;
   padding: 5px 10px;
   border-radius: 20px; /* Establece un borde redondeado */
   cursor: pointer;
}


   #container-slider .arrowPrev{

      left: 15px;

   }

   #container-slider .arrowNext{

      right: 15px !important;

   }

   #slider{
      height: 600px;
      min-height: 580px;
   }

   #slider li {
      background-size: 100%  100%; /* Ancho automático y alto 100% para ajustar la imagen al alto del slider */
      background-position: center; /* Esto centrará la imagen */
      background-repeat: no-repeat; /* Esto evitará la repetición de la imagen */
      height: 100%; /* Esto asegurará que el <li> tenga el mismo alto que el slider */
  }
  


   #slider li .content_slider{

      padding: 10px 35px;

   }

   .btnSlider{

      padding: 10px 30px;

      font-size: 10pt;

   }


}