/*BARRA DE NAVEGACION*/
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@100;200;300;600;700;900&family=Open+Sans:wght@300;400;500;600;700;800&family=Poppins:ital,wght@0,300;400;500;700;1,200&family=Raleway:wght@300;400;500;600;700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,500&family=Raleway:wght@300;400;500;600;700&family=Bitter:ital,wght@0,100..900;1,100..900&display=swap');

.dropdown-toggle::after {
  content: none;
}

/* html, body {
  max-width: 100%;
  overflow-x: hidden;
} */

/* font-family: 'Barlow Semi Condensed', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: "Bitter", serif;
font-family: 'Roboto', sans-serif; */
/* font-family: 'Raleway', sans-serif; */


@media (max-width: 575.98px) {
  .img-logo {
    width: 150px;
    height: 75px;
  }

  .navbar {
    background-color: #fff;
    padding-right: 40px;
  }

  .navbar-scrolled {
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .navbar a:hover {
    color: #0000CC;
  }

  .barra a {
    font-family: 'Raleway', sans-serif;
    position: relative;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 20px;
    letter-spacing: 1px;
    transition: 0.3s ease;
    padding-top: 20px;
  }

  .navbar li:hover>ul {
    display: block;
  }

  .navbar-scrolled a {
    color: #2F2F2F;
  }

  .barra a:hover:before {
    width: 100%;
  }

  .dropdown li a {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 11.5px;
    font-weight: 600;
    padding-top: 8px;
    margin-left: 4px;
    color: #000;
  }

  /* Estilos menú hamburguesa */
  .menu2 {
    width: 30px;
    height: 20px;
    position: relative;
    margin-top: 3px;
    margin-bottom: 5px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
  }

  .menu2 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    background: #2F2F2F;
  }

  .menu2 span:nth-child(1) {
    top: 0px;
  }

  .menu2 span:nth-child(2) {
    top: 10px;
  }

  .menu2 span:nth-child(3) {
    top: 20px;
  }

  .menu2.open span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
  }

  .menu2.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }

  .menu2.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
  }

  /* Cuando el menú colapsa en móviles */
  .navbar-collapse {
    background-color: white;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  /* Para que los ítems del menú se vean en columna */
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding: 0.75rem 1rem;
    color: #000;
    font-size: 16px;
    font-weight: 600;
  }

  /* Oculta el botón hamburguesa cuando el mega menú está activo */
  .mega-menu-overlay:not(.d-none)+.menu2 {
    display: none !important;
      flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  }

  /* Mega menú en móviles */
  .mega-menu-overlay {
    position: fixed;
    /* Que cubra toda la pantalla */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;

    background-color: rgba(0, 0, 0, 0.8);
    /* Fondo negro semi-transparente */
    backdrop-filter: blur(10px);
    /* Desenfoque del fondo */
    -webkit-backdrop-filter: blur(10px);
    /* Soporte para Safari */

    overflow-y: auto;
    z-index: 9999;
    /* Que esté encima de todo */
  }

  .mega-menu-container {
    width: 100%;
    max-width: none;
  }
.mega-menu-overlay ul li {
  margin-bottom: 10px;
}
  .mega-menu-overlay ul li a {

    text-align: left;
    padding: 1rem 0;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;

  
  }

  .mega-menu-overlay ul li a:hover {
    color: #ff7f50;
  }

  .close-mega-menu {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 2rem;
    color: #ff4d4d;
    border: 2px solid #ff4d4d;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    z-index: 1110;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    padding: 0;
  }

  /* Oculta mega menú con clase d-none */
  .mega-menu-overlay.d-none {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {

  .img-logo {
    width: 180px;
    height: 90px;
  }

  .navbar {
    background-color: #fff;
    padding-right: 100px;
  }

  .navbar-scrolled {
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .navbar a:hover {
    color: #073763;

  }

  .barra a {
    font-family: 'Raleway', sans-serif;
    position: relative;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 12px;
    letter-spacing: 0px;
    transition: 0.3s ease;
    padding-top: 20px;

  }

  .navbar li:hover>ul {
    display: block;
  }

  .barra a:before {
    content: '';
    position: absolute;
    background: #000;
    width: 0px;
    height: 2px;
    bottom: 0px;
    left: 0px;
    transition: 0.3s ease;
    color: #2F2F2F;

  }

  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .barra a:hover:before {
    width: 100%;
  }

  .dropdown li a {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    margin-left: 0px;
    color: #2F2F2F;

  }

  /* Overlay mega menú */
  .mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    /* 50% transparencia */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    /* encima del navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 15px;
      flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  }

  .mega-menu-overlay.d-none {
    display: none !important;
  }

  /* Contenedor del mega menú centrado y con ancho máximo 75% */
  .mega-menu-container {
    max-width: 75vw;
      display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
  padding: 0 20px;
  }

  /* Estilo enlaces */
  .mega-menu-overlay ul li a {
    color: white;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-bottom: 30px;
    transition: color 0.3s ease;
    font-size: 20px;
    text-align: left;
  }

.mega-menu-container ul:last-child li {
  margin-bottom: 1px; /* o el valor que necesites */
}

  .mega-menu-overlay ul li a:hover {
    color: #ff7f50;
    /* un color resaltado */
  }

  /* Botón cerrar */
  .close-mega-menu {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 2px solid #ff4d4d;
    border-radius: 50%;
    background: none;
    color: #ff4d4d;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    line-height: 1;
  }

  /* Para links del navbar que abren el mega menú (Servicios) */
  #openMegaMenu {
    cursor: pointer;
  }



  /*PORTADA*/
  .hero-section {
    height: 100vh;
    overflow: hidden;
  }

  /* Imagen ajustada para cubrir */
  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 0;
  }

  /* Capa oscura encima de la imagen */
  .overlay {
    background-color: rgba(0, 0, 0, 0.0);
    z-index: 1;
  }

  /* Texto encima */
  .hero-text {
    z-index: 2;
    padding: 0 15px;
  }
}

@media (min-width: 1200px) {

  .img-logo {
    width: 200px;
    height: 100px;
  }

  .navbar {

    transition: all 0.5s;
  }

  .navbar-scrolled {
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .barra a {

    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    letter-spacing: 1.5px;
    transition: 0.3s ease;
    color: #2F2F2F;
  }

  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .navbar a:hover {
    color: #b70000;

  }

  .navbar li:hover>ul {
    display: block;
  }

  .btn-2 {
    margin-left: 30px;
    letter-spacing: 1px;
  }

  .barra a:before {
    content: '';
    position: absolute;
    background: #b70000;
    width: 0px;
    height: 2px;
    bottom: 0px;
    left: 0px;
    transition: 0.3s ease;
    color: #2F2F2F;

  }

  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .barra a:hover:before {
    width: 100%;
  }

  .dropdown li a {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 16px;
    font-weight: 300;
    margin-left: 0px;
    color: #2F2F2F;
  }

  .dropdown-item:hover {
    background-color: #FFFFFF;
  }

  .link-contact {
    display: none;
  }


  .nav-link {
    color: #2F2F2F;
  }

  .d-inline-block {
    padding: auto;

  }


  .nav-link {
    color: #2F2F2F;
  }

  .d-inline-block {
    padding: auto;

  }

  /* Overlay mega menú */
  .mega-menu-overlay {
      flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    /* 50% transparencia */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    /* encima del navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

  .mega-menu-overlay.d-none {
    display: none !important;

  }

  /* Contenedor del mega menú centrado y con ancho máximo 75% */
  .mega-menu-container {
    max-width: 75vw;
  }

  /* Estilo enlaces */
  .mega-menu-overlay ul li a {
    color: white;
     font-weight: 700;
  text-decoration: none;
  color: white;
  display: block;
  width: 100%;
  padding: 10px 0;
  text-align: left;
  font-size: 18px;
  }

  .mega-menu-overlay ul li a:hover {
    color: #ff7f50;
    /* un color resaltado */
  }

  /* Botón cerrar */
  .close-mega-menu {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 2px solid #ff4d4d;
    border-radius: 50%;
    background: none;
    color: #ff4d4d;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    line-height: 1;
  }

  /* Para links del navbar que abren el mega menú (Servicios) */
  #openMegaMenu {
    cursor: pointer;
  }



  /*PORTADA*/
  .hero-section {
    height: 100vh;
    overflow: hidden;
  }

  /* Imagen ajustada para cubrir */
  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 0;
  }

  /* Capa oscura encima de la imagen */
  .overlay {
    background-color: rgba(0, 0, 0, 0.0);
    z-index: 1;
  }

  /* Texto encima */
  .hero-text {
    z-index: 2;
    padding: 0 15px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1300px) {

  .img-logo {
    width: 200px;
    height: 100px;
  }

  .navbar {
    transition: all 0.5s;
  }

  .navbar-scrolled {
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .barra a {

    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
    letter-spacing: 0px;
    transition: 0.3s ease;
    color: #2F2F2F;
  }

  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .navbar li:hover>ul {
    display: block;
  }

  .btn-2 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    letter-spacing: 1px;
    width: 105%;
  }

  .barra a:before {
    content: '';
    position: absolute;
    background: #000;
    width: 0px;
    height: 2px;
    bottom: 0px;
    left: 0px;
    transition: 0.3s ease;
    color: #2F2F2F;

  }

  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .barra a:hover:before {
    width: 100%;
  }

  .dropdown li a {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 16px;
    font-weight: 300;
    margin-left: 0px;
    color: #2F2F2F;
  }

  .dropdown-item:hover {
    background-color: #FFFFFF;
  }

  .link-contact {
    display: none;
  }

  /* Overlay mega menú */
  .mega-menu-overlay {
      flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    /* 50% transparencia */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    /* encima del navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 19px;
  }

  .mega-menu-overlay.d-none {
    display: none !important;
  }

  /* Contenedor del mega menú centrado y con ancho máximo 75% */
  .mega-menu-container {
    max-width: 75vw;
  }

  /* Estilo enlaces */
  .mega-menu-overlay ul li a {
 
  font-weight: 700;
  text-decoration: none;
  color: white;
  display: block;
  width: 100%;
  padding: 5px 0;
  text-align: left;
  font-size: 19px;
  }
.mega-menu-overlay ul li {
  margin-bottom: 20px;
    list-style: none;
  width: 100%;
  text-align: left;
}
  .mega-menu-overlay ul li a:hover {
    color: #ff7f50;
    /* un color resaltado */
  }

  /* Botón cerrar */
  .close-mega-menu {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 2px solid #ff4d4d;
    border-radius: 50%;
    background: none;
    color: #ff4d4d;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    line-height: 1;
  }

  /* Para links del navbar que abren el mega menú (Servicios) */
  #openMegaMenu {
    cursor: pointer;
  }



  /*PORTADA*/
  .hero-section {
    height: 100vh;
    overflow: hidden;
  }

  /* Imagen ajustada para cubrir */
  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 0;
  }

  /* Capa oscura encima de la imagen */
  .overlay {
    background-color: rgba(0, 0, 0, 0.0);
    z-index: 1;
  }

  /* Texto encima */
  .hero-text {
    z-index: 2;
    padding: 0 15px;
  }
}

@media only screen and (min-width: 1301px) and (max-width: 1440px) {

  .img-logo {
    width: 200px;
    height: 100px;
  }

  .navbar {
    transition: all 0.5s;
  }

  .navbar-scrolled {
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .barra a {

    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
    letter-spacing: 1.5px;
    transition: 0.3s ease;
    color: #2F2F2F;
  }
  .navbar a:hover {
    color: #b70000;

  }
  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .navbar li:hover>ul {
    display: block;
  }

  .btn-2 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    letter-spacing: 1px;
    width: 105%;
  }

  .barra a:before {
    content: '';
    position: absolute;
    background: #b70000;
    width: 0px;
    height: 2px;
    bottom: 0px;
    left: 0px;
    transition: 0.3s ease;
    color: #2F2F2F;

  }

  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .barra a:hover:before {
    width: 100%;
  }

  .dropdown li a {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 16px;
    font-weight: 300;
    margin-left: 0px;
    color: #2F2F2F;
  }

  .dropdown-item:hover {
    background-color: #FFFFFF;
  }

  .link-contact {
    display: none;
  }

  /* Overlay mega menú */
  .mega-menu-overlay {
      flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    /* 50% transparencia */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    /* encima del navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 19px;
  }

  .mega-menu-overlay.d-none {
    display: none !important;
  }

  /* Contenedor del mega menú centrado y con ancho máximo 75% */
  .mega-menu-container {
    max-width: 75vw;
  }

  /* Estilo enlaces */
  .mega-menu-overlay ul li a {
 
  font-weight: 700;
  text-decoration: none;
  color: white;
  display: block;
  width: 100%;
  padding: 5px 0;
  text-align: left;
  font-size: 17px;
  }
.mega-menu-overlay ul li {
  margin-bottom: 20px;
    list-style: none;
  width: 100%;
  text-align: left;
}
  .mega-menu-overlay ul li a:hover {
    color: #ff7f50;
    /* un color resaltado */
  }

  /* Botón cerrar */
  .close-mega-menu {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 2px solid #ff4d4d;
    border-radius: 50%;
    background: none;
    color: #ff4d4d;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    line-height: 1;
  }

  /* Para links del navbar que abren el mega menú (Servicios) */
  #openMegaMenu {
    cursor: pointer;
  }



  /*PORTADA*/
  .hero-section {
    height: 100vh;
    overflow: hidden;
  }

  /* Imagen ajustada para cubrir */
  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 0;
  }

  /* Capa oscura encima de la imagen */
  .overlay {
    background-color: rgba(0, 0, 0, 0.0);
    z-index: 1;
  }

  /* Texto encima */
  .hero-text {
    z-index: 2;
    padding: 0 15px;
  }
}


@media (min-width: 2560px) {

  .img-logo {
    width: 250px;
    height: 120px;
  }

  .navbar {
    transition: all 0.5s;
  }

  .navbar-scrolled {
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .barra a {

    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 70px;
    letter-spacing: 1.5px;
    transition: 0.3s ease;
    color: #2F2F2F;
  }

  .navbar-scrolled a {

    color: #b70000;

  }

  .navbar li:hover>ul {
    display: block;
  }


  .barra a:before {
    content: '';
    position: absolute;
    background: #b70000;
    width: 0px;
    height: 3px;
    bottom: 0px;
    left: 0px;
    transition: 0.3s ease;
    color: #2F2F2F;

  }

  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .barra a:hover:before {
    width: 100%;
  }

  .dropdown li a {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 18px;
    font-weight: 300;
    margin-left: 0px;
    color: #2F2F2F;
  }

  .dropdown-item:hover {
    background-color: #FFFFFF;
  }

  .link-contact {
    display: none;
  }

  .btn-2 {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    height: 105%;
    width: 105%;
    font-size: 22px;
  }

  /* Overlay mega menú */
  .mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    /* 50% transparencia */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    /* encima del navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

  .mega-menu-overlay.d-none {
    display: none !important;
  }

  /* Contenedor del mega menú centrado y con ancho máximo 75% */
  .mega-menu-container {
    max-width: 75vw;
  }

  /* Estilo enlaces */
  .mega-menu-overlay ul li a {
    color: white;
    font-weight: 500;
    text-decoration: none;
    display: block;
    margin-bottom: 30px;
    transition: color 0.3s ease;
    font-size: 24px;
  }

  .mega-menu-overlay ul li a:hover {
    color: #ff7f50;
    /* un color resaltado */
  }

  /* Botón cerrar */
  .close-mega-menu {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 2px solid #ff4d4d;
    border-radius: 50%;
    background: none;
    color: #ff4d4d;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    line-height: 1;
    font-size: 40px;
  }

  /* Para links del navbar que abren el mega menú (Servicios) */
  #openMegaMenu {
    cursor: pointer;
  }



  /*PORTADA*/
  .hero-section {
    height: 100vh;
    overflow: hidden;
  }

  /* Imagen ajustada para cubrir */
  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 0;
  }

  /* Capa oscura encima de la imagen */
  .overlay {
    background-color: rgba(0, 0, 0, 0.0);
    z-index: 1;
  }

  /* Texto encima */
  .hero-text {
    z-index: 2;
    padding: 0 15px;
  }
}

/*===========================================================================================================================*/
/* 
/*CODIGO CSS PARA EL CAROUSEL*/
@media (max-width: 575.98px) {
  .carousel-item {
    height: 18rem;
    color: white;
    position: relative;
    top: 90px;
  }

  .carousel-inner {
    height: 18rem;
  }

  .carousel-item img {
    height: 200px;
  }

  .carousel-indicators li::marker {
    font-size: 0;
  }

  .carru-1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    margin-left: 5px;
    font-weight: 700;
    text-align: left;
    color: #2F2F2F;

  }

  .carru-2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    margin-left: 5px;
    text-align: left;
    color: #2F2F2F;
  }

  .text-c1 {
    display: none;
    /* font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #363636; */
  }

  .contenedor {

    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 0px;
    padding-right: 10px;
  }

  .inicio {
    font-family: 'Open Sans', sans-serif;
  }

  .btn {
    display: none;
  }

  .link2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 10px;
    color: #191919;
    margin-left: 5px;
  }

  .link2:hover {
    background-color: #000;
    border: #000;
    color: #fff;
  }

  .btn:hover {
    background-color: #FF5F1F;
    border: #FF5F1F;
    color: #fff;

  }

  .carousel-indicators {
    bottom: -24px;
  }
    #sismico {
  scroll-margin-top: 140px;
}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .carousel-item {

    height: 30rem;
    color: white;
    position: relative;
    top: 120px;
  }

  .carousel-inner {
    height: 30rem;
  }

  .carousel-item img {
    height: 360px;

  }

  .carousel-indicators li::marker {
    font-size: 0;
  }

  .carru-1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    margin-left: 20px;
    text-align: justify;
    color: #2F2F2F;
  }

  .carru-2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    margin-left: 20px;
    text-align: justify;
    color: #2F2F2F;
  }

  .text-c1 {
    display: none;

  }

  .contenedor {

    position: absolute;
    bottom: 190px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 0px;
    padding-right: 10px;
  }

  .inicio {
    font-family: 'Open Sans', sans-serif;
  }

  .btn {
    display: none;

  }

  .carousel-indicators {
    bottom: -15px;
  }

  .link2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    position: relative;
    font-size: 16px;
    color: #191919;
    margin-left: 20px;
  }

  .link2:hover {
    background-color: #000;
    border: #000;
    color: #fff;
  }

  .btn:hover {
    background-color: #FF5F1F;
    border: #FF5F1F;
    color: #fff;
  }
      #sismico {
  scroll-margin-top: 170px;
}
}

@media (min-width: 1200px) {
  .carousel-item {

    height: 51rem;
    color: white;
    position: relative;


  }

  .carousel-inner {
    height: 51rem;
  }

  .carousel-indicators li::marker {
    font-size: 0;
  }

  .carru-1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 50px;
    text-align: justify;
    color: #2F2F2F;
  }

  .carru-2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    text-align: justify;
    color: #2F2F2F;
  }

  .text-c1 {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 300;
    text-align: justify;
    inline-size: 750px;
    color: #363636;
  }

  .link2 {
    display: none;
  }

  .contenedor {

    position: absolute;
    bottom: 170px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 150px;
    padding-right: 150px;
  }

  .inicio {
    font-family: 'Open Sans', sans-serif;
  }

  .btn:hover {
    background-color: #FF5F1F;
    border: #FF5F1F;
    color: #fff;
  }
  #sismico {
  scroll-margin-top: 190px;
}
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .carousel-item {
    height: 33rem;
    color: white;
    position: relative;
  }

  .carousel-inner {
    height: 33rem;
  }

  .carousel-indicators {
    bottom: -15px;

  }

  .carousel-indicators li::marker {
    font-size: 0;
  }

  .carru-1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    text-align: justify;
    color: #2F2F2F;
  }

  .carru-2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    text-align: justify;
    color: #2F2F2F;
  }

  .text-c1 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
    inline-size: 450px;
    color: #363636;
  }

  .link2 {
    display: none;
  }

  .contenedor {

    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 150px;
    padding-right: 150px;
  }

  .inicio {
    font-family: 'Open Sans', sans-serif;
  }

  .btn {
    scale: 0.85;
    margin-left: -14px;
  }

  .btn:hover {
    background-color: #FF5F1F;
    border: #FF5F1F;
    color: #fff;
  }
      #sismico {
  scroll-margin-top: 110px;
}
}

@media (min-width: 2560px) {
  .carousel-item {

    height: 70rem;
    color: white;
    position: relative;

  }

  .carousel-inner {
    height: 70rem;
  }

  .carousel-indicators li::marker {
    font-size: 0;
  }

  .carru-1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 65px;
    text-align: justify;
    color: #2F2F2F;
  }

  .carru-2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 50px;
    text-align: justify;
    color: #2F2F2F;
  }

  .text-c1 {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 500;
    text-align: justify;
    inline-size: 1100px;
    color: #363636;
  }

  .link2 {
    display: none;
  }

  .contenedor {

    position: absolute;
    bottom: 260px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 150px;
    padding-right: 150px;
  }

  .inicio {
    font-family: 'Open Sans', sans-serif;
  }


  .btn:hover {
    background-color: #FF5F1F;
    border: #FF5F1F;
    color: #fff;
  }
    #sismico {
  scroll-margin-top: 220px;
}
}

/*CONTADOR*/
@media (max-width: 575.98px) {
  .counter-box {

    background: #042645;
    color: white;
    padding: 10px 0px;
    text-align: center;
  }

  .counter {
    font-size: 12px;
    font-weight: bold;
  }

  .label {
    font-size: 12px;
    margin-top: 0px;
  }

  .icon {
    font-size: 16px;
    margin-bottom: 0px;
    display: block;
  }
}


@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .counter-box {

    background: #042645;
    color: white;
    padding: 10px 0px;
    text-align: center;
  }

  .counter {
    font-size: 22px;
    font-weight: bold;
  }

  .label {
    font-size: 18px;
    margin-top: 0px;
  }

  .icon {
    font-size: 30px;
    margin-bottom: 0px;
    display: block;
  }
}


@media (min-width: 1200px) {

  /*CODIGO CONTADOR*/
  .counter-box {

    background: #042645;
    color: white;
    padding: 5px 5px;
    text-align: center;
  }

  .counter {
    font-size: 28px;
    font-weight: bold;
  }

  .label {
    font-size: 22px;
    margin-top: 0px;
  }

  .icon {
    font-size: 33px !important;
    margin-bottom: 0px;
    display: block;
  }
}

@media only screen and (min-width: 1350px) and (max-width: 1440px) {
  .counter-box {

    background: #042645;
    color: white;
    padding: 8px 8px;
    text-align: center;
  }

  .counter {
    font-size: 26px;
    font-weight: bold;
  }

  .label {
    font-size: 21px;
    margin-top: 0px;
  }

  .icon {
    font-size: 30px !important;
    margin-bottom: 10px;
    display: block;
  }
}

@media (min-width: 2560px) {

  /*CODIGO CONTADOR*/
  .counter-box {

    background: #042645;
    color: white;
    padding: 5px 5px;
    text-align: center;
  }

  .counter {
    font-size: 32px;
    font-weight: bold;
  }

  .label {
    font-size: 26px;
    margin-top: 0px;
  }

  .icon {
    font-size: 33px !important;
    margin-bottom: 0px;
    display: block;
  }
}

/**************EFECTO PARALLAX****************/
/*CODIGO PARALLAX*/



@media (max-width: 575.98px) {

  /* Estilos exclusivos para pantallas de 375px o menores */
  .parallax-section {
    position: relative;
    height: 200px;
    overflow: hidden;

  }

  .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 230%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
    background: #000;
  }

  .parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);

  }

  .parallax-content h2 {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 14px; 
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-left: 0px;
    color: #FFFFFF;
  }

  .normal-content {
    padding: 60px 15px;
    background-color: #f8f9fa;
    text-align: center;
  }
}


@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .parallax-section {
    position: relative;
    height: 300px;
    overflow: hidden;

  }

  .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
  }

  .parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);

  }

  .parallax-content h2 {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-left: 0px;
    color: #FFFFFF;
  }

  .normal-content {
    padding: 60px 15px;
    background-color: #f8f9fa;
    text-align: center;
  }

}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .parallax-section {
    position: relative;
    height: 300px;
    overflow: hidden;

  }

  .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
  }

  .parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);

  }

  .parallax-content h2 {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-left: 0px;
    color: #FFFFFF;
  }

  .normal-content {
    padding: 60px 15px;
    background-color: #f8f9fa;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .parallax-section {
    position: relative;
    height: 420px;
    overflow: hidden;
  }

  .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
  }

  .parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);

  }

  .parallax-content h2 {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 34px;
    font-weight: 600;
    margin-left: 0px;
    color: #FFFFFF;
  }

  .normal-content {
    padding: 60px 15px;
    background-color: #f8f9fa;
    text-align: center;
  }
}


@media (min-width: 2560px) {
  .parallax-section {
    position: relative;
    height: 520px;
    overflow: hidden;
  }

  .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
  }

  .parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);

  }

  .parallax-content h2 {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 46px;
    font-weight: 600;
    margin-left: 0px;
    color: #FFFFFF;
  }

  .normal-content {
    padding: 60px 15px;
    background-color: #f8f9fa;
    text-align: center;
  }
}



/*FIN CODIGO PARALLAX*/

/*===========================================================================================================================*/

/*QUIENES SOMOS*/
/* Responsive Apertura */
/* @media only screen and (min-width: 768px) and (max-width: 1024px)  { */
/* font-family: 'Barlow Semi Condensed', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Roboto', sans-serif; */
/* font-family: 'Raleway', sans-serif; */
@media (min-width: 1200px) {
  .apertura {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    inline-size: 1200px;
    overflow-wrap: break-word;
    margin-top: 30px;

  }

  .qsomos {
    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    font-size: 33px;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 1.9em;

  }

  .mensaje {

    color: aliceblue;
    background: #042645;
    height: 140px;

  }

  .about1 {
    color: #04213B;


  }

  .about2 {

    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    /* transform:  scale(0.5); */
    transition: all 1s ease-in-out;
  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    text-align: justify;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1.9em;
    color: #2F2F2F;
    margin-bottom: 40px;

  }

  .active {
    opacity: 1;
    transform: none;
    /* transform: scale(1); */
  }

  .foto {
    /*   -webkit-animation-name: fright;
      animation-name: fright; */


    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    opacity: 0;

    /* transform: translate3d(-100%, 0, 0); */
    transform: scale(0.5);
    transition: all 1s ease-in-out;
    max-height: 450px;
    overflow: hidden;


  }

  .active2 {
    opacity: 1;
    /*  transform: none; */
    transform: scale(1);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .apertura {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    inline-size: 1200px;
    overflow-wrap: break-word;
    margin-top: 20px;


  }

  .qsomos {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 1.9em;
  }

  .mensaje {

    color: aliceblue;
    background: #042645;
    height: 110px;

  }

  .about1 {
    color: #04213B;

  }

  .about2 {

    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    /* transform:  scale(0.5); */
    transition: all 1s ease-in-out;
  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.6em;
    color: #2F2F2F;
    margin-bottom: 35px;

  }

  .active {
    opacity: 1;
    transform: none;
    /* transform: scale(1); */
  }

  .foto {
    /*   -webkit-animation-name: fright;
      animation-name: fright; */


    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    opacity: 0;

    /* transform: translate3d(-100%, 0, 0); */
    transform: scale(0.5);
    transition: all 1s ease-in-out;
    max-height: 380px;
    overflow: hidden;
  }

  .active2 {
    opacity: 1;
    /*  transform: none; */
    transform: scale(1);
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .apertura {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    text-align: justify;
    letter-spacing: 1.4px;
    inline-size: 750px;
    overflow-wrap: break-word;
    margin-top: 12px;
    margin-left: 10px;
    margin-right: 10px;

  }

  .qsomos {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 1px;
    line-height: 1.9em;
    color: #2F2F2F;
  }

  .mensaje {

    color: aliceblue;
    background: #042645;
    height: 100px;

  }

  .about1 {
    color: #04213B;

  }

  .about2 {

    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translate3d(-100%, 0, 0);

    transition: all 1s ease-in-out;
  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    text-align: justify;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.5em;
    color: #2F2F2F;
    margin-top: 10px;
    margin-bottom: 12px;
  }

  /*  .active {
    opacity: 1;
    transform: none;
  
  } */

  .foto {



    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    opacity: 0;


    transform: scale(0.5);
    transition: all 1s ease-in-out;

  }
   .active {
  opacity: 1;
  transform: none;

}



.active2 {
  opacity: 1;

  transform: scale(1);
}
  /*   .active2 {
    opacity: 1;
    
    transform: scale(1);
  } */
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .apertura {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    text-align: justify;
    letter-spacing: 1.4px;
    inline-size: 650px;
    overflow-wrap: break-word;
    margin-top: 12px;
    margin-left: 10px;
    margin-right: 10px;

  }

  .qsomos {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 1.9em;
    color: #2F2F2F;
  }

  .mensaje {

    color: aliceblue;
    background: #042645;
    height: 110px;

  }

  .about1 {
    color: #04213B;

  }

  .about2 {

    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    transition: all 1s ease-in-out;
  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    text-align: justify;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.6em;
    color: #2F2F2F;
  }

  /*  .active {
    opacity: 1;
    transform: none;
  
  } */

  .foto {



    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    opacity: 0;


    transform: scale(0.5);
    transition: all 1s ease-in-out;

    max-height: 340px;
    overflow: hidden;
  }

  /*   .active2 {
    opacity: 1;
    
    transform: scale(1);
  } */
   .active {
  opacity: 1;
  transform: none;

}



.active2 {
  opacity: 1;

  transform: scale(1);
}
}

@media (min-width: 2000px) {
  .apertura {
    font-family: 'Raleway', sans-serif;
    font-size: 34px;
    inline-size: 1500px;
    overflow-wrap: break-word;
    margin-top: 25px;

  }

  .qsomos {
    font-family: 'Raleway', sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin-top: 45px;
    letter-spacing: 1px;
    line-height: 1.9em;
  }

  .mensaje {

    color: aliceblue;
    background: #042645;
    height: 160px;

  }

  .about1 {
    color: #04213B;

  }

  .about2 {

    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    /* transform:  scale(0.5); */
    transition: all 1s ease-in-out;
  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    text-align: justify;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1.8em;
    color: #2F2F2F;
    margin-bottom: 60px;

  }

  .active {
    opacity: 1;
    transform: none;
    /* transform: scale(1); */
  }

  .foto {
    /*   -webkit-animation-name: fright;
      animation-name: fright; */


    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    opacity: 0;

    /* transform: translate3d(-100%, 0, 0); */
    transform: scale(0.5);
    transition: all 1s ease-in-out;
    max-height: 550px;
    overflow: hidden;
  }

  .active2 {
    opacity: 1;
    /*  transform: none; */
    transform: scale(1);
  }
}

@media (max-width: 575.98px) {
  .apertura {
    font-family: 'Raleway', sans-serif;
    text-align: justify;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14.5px;
    overflow-wrap: break-word;
    margin-top: 18px;

  }

  .qsomos {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: 1px;

  }

  .mensaje {

    color: aliceblue;
    background: #042645;
    height: 120px;

  }

  .about1 {
    color: #04213B;

  }

  .about2 {

    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    /*  opacity: 0;
    transform: translate3d(-100%, 0, 0);
    transition: all 1s ease-in-out; */
  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    text-align: justify;
    font-size: 12px;
  }

  .active {
    opacity: 1;
    transform: none;

  }

  .foto {
    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    max-height: 250px;
    overflow: hidden;
  }
.active2 {
  opacity: 1;

  transform: scale(1);
}
    /*  opacity: 0;
    transform: scale(0.5);
    transition: all 1s ease-in-out; */
  }

@media (max-width: 375px) {
  .apertura {
    font-family: 'Raleway', sans-serif;
    text-align: justify;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    overflow-wrap: break-word;
    margin-top: 18px;

  }

  .qsomos {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: 1px;

  }

  .mensaje {

    color: aliceblue;
    background: #042645;
    height: 120px;

  }

  .about1 {
    color: #04213B;

  }

  .about2 {

    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    /* transform:  scale(0.5); */
    transition: all 1s ease-in-out;
  }

  .text-s {
    text-align: justify;
  }

  .active {
    opacity: 1;
    transform: none;
    /* transform: scale(1); */
  }

  .foto {
    /*   -webkit-animation-name: fright;
      animation-name: fright; */


    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;
    opacity: 0;

    /* transform: translate3d(-100%, 0, 0); */
    transform: scale(0.5);
    transition: all 1s ease-in-out;
  }

  .active2 {
    opacity: 1;
    /*  transform: none; */
    transform: scale(1);
  }
}



/*================================================================================================*/


/*MERCADOS*/
/*-----------------------------------------------------*/
/* .t-mercado {
  font-family: 'Raleway', sans-serif;
  margin-left: 15px;

} */

/* **************************************************************************************************** */
/*ICONOS DE MERCADO*/
@media (max-width: 575.98px) {
  .frame1 {
    background-color: #042645;
  }

  .cuadro {
    font-family: 'Open Sans', sans-serif;
    color: #FFFFFF;
    padding-top: 8px;
    font-size: 10px;
  }

  .bi {
    font-family: 'Open Sans', sans-serif;
    color: #FFFFFF;
    font-size: 18px;
  }

  .vr {
    font-family: 'Open Sans', sans-serif;
    color: #FFFFFF;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .frame1 {
    background-color: #042645;


  }

  .cuadro {
    font-family: 'Open Sans', sans-serif;
    /* background: crimson; */
    color: #FFFFFF;
    padding-top: 8px;
    font-size: 17px;

  }

  .bi {
    font-family: 'Open Sans', sans-serif;
    /* background: crimson; */
    color: #FFFFFF;
    font-size: 22px;
  }

  .vr {
    font-family: 'Open Sans', sans-serif;
    /* background: crimson; */
    color: #FFFFFF;
  }

}

@media (min-width: 1200px) {
  .frame1 {
    background-color: #042645;

  }

  .cuadro {
    font-family: 'Open Sans', sans-serif;
    /* background: crimson; */
    color: #FFFFFF;
    padding-top: 8px;
    font-size: 22px;

  }


  .bi {
    font-family: 'Open Sans', sans-serif;
    /* background: crimson; */
    color: #FFFFFF;
    font-size: 26px;
  }

  .vr {
    font-family: 'Open Sans', sans-serif;
    /* background: crimson; */
    color: #FFFFFF;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .frame1 {
    background-color: #042645;

  }

  .cuadro {
    font-family: 'Open Sans', sans-serif;
    /* background: crimson; */
    color: #FFFFFF;
    padding-top: 8px;
    font-size: 20px;

  }


  .bi {
    font-family: 'Open Sans', sans-serif;
    /* background: crimson; */
    color: #FFFFFF;
    font-size: 26px;
  }

  .vr {
    font-family: 'Open Sans', sans-serif;
    /* background: crimson; */
    color: #FFFFFF;
  }

}

@media (min-width: 2560px) {
  .frame1 {
    background-color: #042645;

  }

  .cuadro {
    font-family: 'Open Sans', sans-serif;
    /* background: crimson; */
    color: #FFFFFF;
    padding-top: 8px;
    font-size: 28px;

  }


  .bi {
    font-family: 'Open Sans', sans-serif;
    /* background: crimson; */
    color: #FFFFFF;
    font-size: 32px;
  }

  .vr {
    font-family: 'Open Sans', sans-serif;
    /* background: crimson; */
    color: #FFFFFF;
  }
}


/* ********************************************************************************************* */

/**************PRIMER EFECTO PARALLAX****************/
/* Responsive */
@media (max-width: 575.98px) {

  .container-fluid,
  .row {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    /* sólo si es necesario */

  }

  .text-principal h2 {

    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-left: auto;
    margin-top: auto;
    color: #2F2F2F
  }

  .text-principal p {

    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    margin-left: auto;
    margin-top: auto;
    color: #64748b;
  }

  .content-column {
    background-color: #FFFFFF;
    /* background-color: #f8f9fa; */
    min-height: 300px;
    height: 300px;
    /* Altura fija */
  }

  .parallax-column {
    height: 280px;
    /* debe coincidir con .content-column */

    background-size: cover;
    /* cambia a cover para eliminar espacios */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: #f8f9fa;
    /* igual que el fondo del contenido */
    overflow: hidden;
  }

}

@media only screen and (min-width: 768px) and (max-width: 1024px) {

  .container-fluid,
  .row {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    /* sólo si es necesario */
  }

  .text-principal h2 {

    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    font-weight: 600;
    margin-left: auto;
    margin-top: auto;
    color: #2F2F2F;
  }

  .text-principal p {

    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-left: auto;
    margin-top: auto;
    color: #64748b;
  }

  .content-column {
    background-color: #FFFFFF;
    /* background-color: #f8f9fa; */
    min-height: 320px;
    height: 320px;
    /* Altura fija */
  }

  .parallax-column {
    height: 320px;
    /* debe coincidir con .content-column */

    background-size: cover;
    /* cambia a cover para eliminar espacios */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: #f8f9fa;
    /* igual que el fondo del contenido */
    overflow: hidden;
  }

}

@media (min-width: 1200px) {

  .container-fluid,
  .row {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    /* sólo si es necesario */
  }

  .text-principal h2 {

    font-family: 'Poppins', sans-serif;
    font-size: 45px;
    font-weight: 600;
    margin-left: auto;
    margin-top: auto;
    color: #2F2F2F;
  }

  .text-principal p {

    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-left: auto;
    margin-top: auto;
    color: #64748b;
  }

  .content-column {
    background-color: #FFFFFF;
    /* background-color: #f8f9fa; */
    min-height: 400px;
    height: 400px;
    /* Altura fija */
  }

  .parallax-column {

    height: 400px;
    /* debe coincidir con .content-column */
    background-size: cover;
    /* cambia a cover para eliminar espacios */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: #f8f9fa;
    /* igual que el fondo del contenido */

  }
}

@media only screen and (min-width: 1025px) and (max-width: 1440px) {

  .container-fluid,
  .row {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    /* sólo si es necesario */
  }

  .text-principal h2 {

    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-left: auto;
    margin-top: auto;
    color: #2F2F2F;
  }

  .text-principal p {

    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    inline-size: 500px;
    align-items: center;
    font-weight: 500;
    margin-left: auto;
    margin-top: auto;
    color: #64748b;
  }

  .content-column {
    background-color: #FFFFFF;
    /* background-color: #f8f9fa; */
    min-height: 400px;
    height: 400px;
    /* Altura fija */
  }

  .parallax-column {
    height: 400px;
    /* debe coincidir con .content-column */

    background-size: cover;
    /* cambia a cover para eliminar espacios */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: #f8f9fa;
    /* igual que el fondo del contenido */
    overflow: hidden;
  }

}

@media (min-width: 2560px) {

  .container-fluid,
  .row {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    /* sólo si es necesario */
  }

  .text-principal h2 {

    font-family: 'Poppins', sans-serif;
    font-size: 55px;
    font-weight: 600;
    margin-left: auto;
    margin-top: auto;
    color: #2F2F2F;
  }

  .text-principal p {

    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    font-weight: 400;
    margin-left: auto;
    margin-top: auto;
color: #64748b;
  }

  .content-column {
    background-color: #FFFFFF;
    /* background-color: #f8f9fa; */
    min-height: 600px;
    height: 600px;
    /* Altura fija */
  }

  .parallax-column {
    height: 600px;
    /* debe coincidir con .content-column */

    background-size: cover;
    /* cambia a cover para eliminar espacios */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: #f8f9fa;
    /* igual que el fondo del contenido */
    overflow: hidden;
  }

}


/*FIN PRIMER EFECTO PARALLLAX*/
/**************EFECTO PARALLAX****************/
/*CODIGO PARALLAX*/

@media (max-width: 575.98px) {
  .parallax-section {
    position: relative;
    height: 250px;
    overflow: hidden;
  }

  .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 290%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
  }

  .parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;


    background: rgba(0, 0, 0, 0.3);

  }

  .parallax-content h2 {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    inline-size: 300px;
    margin-left: 0px;
    color: #FFFFFF;
  }

  .normal-content {
    padding: 60px 15px;
    background-color: #f8f9fa;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .parallax-section {
    position: relative;
    height: 320px;
    overflow: hidden;
  }

  .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
    background-color: #000;
  }

  .parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);

  }

  .parallax-content h2 {
    font-family: 'Roboto', sans-serif;
    position: relative;
    font-size: 22px;
    font-weight: 700;
    margin-left: 0px;
    inline-size: 500px;
    color: #FFFFFF;
  }

  .normal-content {
    padding: 60px 15px;
    background-color: #f8f9fa;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .parallax-section {
    position: relative;
    height: 420px;
    overflow: hidden;
  }

  .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
  }

  .parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);

  }

  .parallax-content h2 {
    font-family: 'Roboto', sans-serif;
    position: relative;
    font-size: 34px;
    font-weight: 600;
    margin-left: 0px;
    color: #FFFFFF;
  }

  .normal-content {
    padding: 60px 15px;
    background-color: #f8f9fa;
    text-align: center;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .parallax-section {
    position: relative;
    height: 420px;
    overflow: hidden;
  }

  .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
  }

  .parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);

  }

  .parallax-content h2 {
    font-family: 'Roboto', sans-serif;
    position: relative;
    font-size: 32px;
    font-weight: 600;
    margin-left: 0px;
    inline-size: 800px;
    color: #FFFFFF;
  }

  .normal-content {
    padding: 60px 15px;
    background-color: #f8f9fa;
    text-align: center;
  }
}

@media (min-width: 2560px) {
  .parallax-section {
    position: relative;
    height: 520px;
    overflow: hidden;
  }

  .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
  }

  .parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);

  }

  .parallax-content h2 {
    font-family: 'Roboto', sans-serif;
    position: relative;
    font-size: 44px;
    font-weight: 600;
    margin-left: 0px;
    color: #FFFFFF;
  }

  .normal-content {
    padding: 60px 15px;
    background-color: #f8f9fa;
    text-align: center;
  }
}



/**************FIN EFECTO PARALLAX****************/





/*FIN CODIGO PARALLAX*/

/*SERVICIOS*/

@media (min-width: 1200px) {
  #servicios {
    scroll-margin-top: 130px;
    /* Ajusta este valor al alto de tu header */
  }

  .msj-servicios {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);
    width: 100%;
  }

  .nservicios {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 0px;
    margin-left: 65px;
    margin-bottom: 5px;
  }

  .title-services {

    font-family: 'Raleway', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #2F2F2F;
    margin-top: 50px;
    margin-left: 65px;
    margin-bottom: 20px;
  }

  .label1 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label1 img {
    margin-top: 30px;
    width: 100%;
    height: 280px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    transition: 0.5s ease;
  }

  .label1 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }


/* font-family: 'Barlow Semi Condensed', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: "Bitter", serif;
font-family: 'Roboto', sans-serif; */
/* font-family: 'Raleway', sans-serif; */

  .label1 h2 {
    margin-top: 30px;
    text-align: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: black;

  }

  .label1 p {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    text-align: justify;
    inline-size: 450px;
    margin-left: 70px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
  }

  .label1 img:hover {


    transition: all 0.8s ease;
    opacity: 0.5;
  }

  .label2 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label2 img {
    margin-top: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 340px;
    height: 220px;
    /* border: 0.5px solid;
   border-color: #D6D6D6; */
  }

  .label2 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label2 h2 {
    margin-top: 30px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: black;
  }

  .label2 p {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    text-align: justify;
    inline-size: 390px;
    margin-left: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
  }

  .label2 img:hover {
    transition: all 0.8s ease;
    opacity: 0.5;
  }

  .btn-serv1 {
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
    display: inline-block;
    /* Para que no se expanda */
  }

  .link3 {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  #servicios {
    scroll-margin-top: 125px;
    /* Ajusta este valor al alto de tu header */
  }

  .msj-servicios {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .nservicios {
    font-family: 'Raleway', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 0px;
    margin-left: 65px;
    margin-bottom: 5px;
  }

  .title-services {

    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2F2F2F;
    margin-top: 50px;
    margin-left: 65px;
    margin-bottom: 20px;
  }

  .label1 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label1 img {
    margin-top: 30px;
    width: 440px;
    height: 270px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    transition: 0.5s ease;
    /* border: 0.5px solid;
   border-color: #D6D6D6; */

  }

  .label1 h2 {
    margin-top: 30px;
    text-align: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: black;
  }


  .label1 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label1 p {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    text-align: justify;
    inline-size: 440px;
    margin-left: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
  }

  .label1 img:hover {
    /*  transition: all 0.6s ease;
    -webkit-transform: scale(1.18);  */
    /*  transform: scale(1.5);  */

    transition: all 0.8s ease;

    opacity: 0.5;
  }

  .label2 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label2 img {
    margin-top: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 340px;
    height: 220px;
    /* border: 0.5px solid;
   border-color: #D6D6D6; */
  }

  .label2 h2 {
    margin-top: 30px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: black;
  }


  .label2 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label2 p {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    text-align: justify;
    inline-size: 320px;
    margin-left: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
  }

  .label2 img:hover {
    transition: all 0.8s ease;
    opacity: 0.5;
  }

  .btn-3 {
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    margin-top: 50px;
    margin-bottom: 50px;


  }

}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  #servicios {
    scroll-margin-top: 125px;
    /* Ajusta este valor al alto de tu header */
  }

  .msj-servicios {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .nservicios {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 0px;
    margin-left: 20px;
    margin-bottom: 5px;
  }

  .title-services {

    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #2F2F2F;
    margin-top: 50px;
    margin-left: 65px;
    margin-bottom: 20px;
  }

  .label1 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label1 img {
    margin-top: 40px;
    width: 300px;
    height: 190px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    transition: 0.5s ease;
    /* border: 0.5px solid;
   border-color: #D6D6D6; */

  }


  .label1 h2 {
    margin-top: 30px;
    text-align: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: black;
  }

  .label1 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label1 p {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    text-align: justify;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 500;
     color: #64748b;
  }

  .label1 img:hover {
    /*  transition: all 0.6s ease;
    -webkit-transform: scale(1.18);  */
    /*  transform: scale(1.5);  */

    transition: all 0.8s ease;

    opacity: 0.5;
  }

  .label2 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label2 img {
    margin-top: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 220px;
    height: 180px;

    /* border: 0.5px solid;
   border-color: #D6D6D6; */
  }

  .label2 h2 {
    margin-top: 30px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: black;
  }

  .label2 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label2 p {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;

    margin-left: 10px;
    font-size: 14px;
    inline-size: 220px;
    font-weight: 500;
     color: #64748b;
  }

  .label2 img:hover {
    transition: all 0.8s ease;
    opacity: 0.5;
  }

  .btn-3 {
    display: none;

  }

  .link3 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

}

@media (min-width: 2560px) {

  #servicios {
    scroll-margin-top: 140px;
    /* Ajusta este valor al alto de tu header */
  }

  .msj-servicios {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .nservicios {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 0px;
    margin-left: 65px;
    margin-bottom: 5px;
  }

  .title-services {

    font-family: 'Raleway', sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #2F2F2F;
    margin-top: 50px;
    margin-left: 65px;
    margin-bottom: 20px;
  }

  .label1 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label1 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label1 img {
    margin-top: 30px;
    width: 520px;
    height: 340px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    transition: 0.5s ease;
    /* border: 0.5px solid;
   border-color: #D6D6D6; */

  }


  .label1 h2 {
    margin-top: 30px;
    text-align: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: black;
  }

  .label1 p {
  font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    text-align: justify;
    inline-size: 680px;
    margin-left: 70px;
    font-size: 17px;
    font-weight: 500;
    color: #64748b;
  }

  .label1 img:hover {
    /*  transition: all 0.6s ease;
    -webkit-transform: scale(1.18);  */
    /*  transform: scale(1.5);  */

    transition: all 0.8s ease;

    opacity: 0.5;
  }

  .label2 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label1 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label2 img {
    margin-top: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 380px;
    height: 260px;
    /* border: 0.5px solid;
   border-color: #D6D6D6; */
  }

  .label2 h2 {
    margin-top: 30px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: black;
  }

  .label2 p {
   font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    text-align: justify;
    inline-size: 550px;
    margin-left: 30px;
    font-size: 17px;
    font-weight: 500;
    color: #64748b;
  }

  .label2 img:hover {
    transition: all 0.8s ease;
    opacity: 0.5;
  }

  .btn-3 {
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 50px;


  }

}


@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #servicios {
    scroll-margin-top: 125px;
    /* Ajusta este valor al alto de tu header */
  }

  .msj-servicios {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .nservicios {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 0px;
    margin-left: 15px;
    margin-bottom: 5px;
  }

  .title-services {

    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2F2F2F;
    margin-top: 20px;
    margin-left: 15px;
    margin-bottom: 20px;
  }

  .label1 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label1 img {

    margin-top: 20px;
    width: 480px;
    height: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    transition: 0.5s ease;


  }


  .label1 h2 {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: black;
  }

  .label1 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label1 p {
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    text-align: justify;
    margin-left: 5px;
    margin-right: 30px;
    font-size: 16px;
    font-weight: 500;
     color: #64748b;
  }

  .label1 img:hover {


    transition: all 0.8s ease;

    opacity: 0.5;
  }

  .label2 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label2 img {
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 220px;

  }

  .label2 h2 {
    margin-top: 30px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    margin-left: 0px;
    margin-right: 18px;
    font-weight: 700;
    color: black;
  }

  .label2 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label2 p {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    text-align: justify;
    margin-left: 0px;
    margin-right: 30px;
    font-size: 16px;
    font-weight: 500;
     color: #64748b;
  }

  .label2 img:hover {
    transition: all 0.8s ease;
    opacity: 0.5;
  }

  .btn-3 {
    display: none;

  }

  .link3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 19px;
    color: #191919;

  }

  .link3:hover {

    border: #000;
    color: #fff;
  }

}

@media (max-width: 575.98px) {
  #servicios {
    scroll-margin-top: 105px;
    /* Ajusta este valor al alto de tu header */
  }

  .msj-servicios {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .nservicios {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 0px;
    margin-left: 6px;
    margin-bottom: 5px;
  }

  .title-services {

    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2F2F2F;
    margin-top: 20px;
    margin-left: 6px;
    margin-bottom: 10px;
  }

  .label1 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label1 img {
    margin-top: 20px;
    width: 375px;
    height: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    transition: 0.5s ease;
    /* border: 0.5px solid;
   border-color: #D6D6D6; */

  }


  .label1 h2 {
    margin-top: 30px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: black;
  }

  .label1 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label1 p {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    text-align: justify;
    margin-left: 2px;
    font-size: 14px;
    font-weight: 500;
     color: #64748b;
  }

  .label1 img:hover {
    /*  transition: all 0.6s ease;
    -webkit-transform: scale(1.18);  */
    /*  transform: scale(1.5);  */

    transition: all 0.8s ease;

    opacity: 0.5;
  }

  .label2 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label2 img {
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 360px;
    height: 240px;
    /* border: 0.5px solid;
   border-color: #D6D6D6; */
  }

  .label2 h2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: black;
  }

  .label2 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label2 p {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    text-align: justify;
    margin-left: 2px;
    font-size: 14px;
    font-weight: 500;
     color: #64748b;
  }

  .label2 img:hover {
    transition: all 0.8s ease;
    opacity: 0.5;
  }

  .link3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #191919;

  }


}

@media (max-width: 375px) {
  #servicios {
    scroll-margin-top: 105px;
    /* Ajusta este valor al alto de tu header */
  }

  .msj-servicios {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .nservicios {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 5px;
    margin-left: 10px;
    margin-bottom: 5px;
  }

  .title-services {

    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2F2F2F;
    margin-top: 20px;
    margin-left: 10px;
    margin-bottom: 10px;
  }

  .label1 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label1 img {
    margin-top: 20px;
    width: 340px;
    height: 280px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    transition: 0.5s ease;
    /* border: 0.5px solid;
     border-color: #D6D6D6; */

  }


  .label1 h2 {
    margin-top: 30px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: black;
  }

  .label1 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label1 p {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    text-align: justify;
    margin-left: 16px;
    font-size: 14px;
    font-weight: 500;
     color: #64748b;
  }

  .label1 img:hover {
    /*  transition: all 0.6s ease;
      -webkit-transform: scale(1.18);  */
    /*  transform: scale(1.5);  */

    transition: all 0.8s ease;

    opacity: 0.5;
  }

  .label2 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .label2 img {
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 340px;
    height: 230px;
    /* border: 0.5px solid;
     border-color: #D6D6D6; */
  }

  .label2 h2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: black;
  }

  .label2 a {
    color: black;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label2 p {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    text-align: justify;
    margin-left: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
  }

  .label2 img:hover {
    transition: all 0.8s ease;
    opacity: 0.5;
  }

  .label3 {

    margin-top: 10px;
  }
}

/* ********************************************************************************************* */
/*Efectos de Servicios*/
@media (min-width: 1200px) {
  .text-ma {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-ma a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label1:hover .text-ma {
    width: 480px;
    height: 280px;
    margin-top: 30px;
    margin-left: 70px;
    visibility: visible;
    /* background-color: crimson; */
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    background-size: 200%;
    background-position: center;
    opacity: 0.85;

  }

  .text-mb {

    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-mb a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }


  .label2:hover .text-mb {
    width: 340px;
    height: 220px;
    margin-top: 50px;
    margin-left: 55px;
    visibility: visible;
    /* background-color: #2986CC; */
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    background-size: 200%;
    background-position: center;
    opacity: 0.85;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .text-ma {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 100px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-ma a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }


  .label1:hover .text-ma {
    width: 440px;
    height: 270px;
    margin-top: 30px;
    margin-left: 0px;
    visibility: visible;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 200%;
    background-position: center;
    opacity: 0.85;

  }

  .text-mb {

    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 100px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-mb a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .label2:hover .text-mb {
    width: 340px;
    height: 220px;
    margin-top: 50px;
    margin-left: 0px;
    visibility: visible;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    background-size: 200%;
    background-position: center;
    opacity: 0.85;
  }

}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .text-ma {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 100px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-ma a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }


  .label1:hover .text-ma {
    width: 100%;
    height: 230px;
    margin-top: 20px;
    visibility: visible;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 200%;
    background-position: center;
    opacity: 0.85;


  }

  .text-mb {

    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 120px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-mb a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }


  .label2:hover .text-mb {
    width: 100%;
    height: 200px;
    margin-top: 30px;
    margin-left: 0px;
    visibility: visible;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    background-size: 200%;
    background-position: center;
    opacity: 0.85;
  }

}

@media (min-width: 2560px) {
  .text-ma {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 150px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-ma a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }


  .label1:hover .text-ma {
    width: 590px;
    height: 340px;
    margin-top: 30px;
    margin-left: 120px;
    visibility: visible;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 200%;
    background-position: center;
    opacity: 0.85;

  }

  .text-mb {

    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 150px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-mb a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }


  .label2:hover .text-mb {
    width: 430px;
    height: 260px;
    margin-top: 50px;
    margin-left: 90px;
    visibility: visible;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    background-size: 200%;
    background-position: center;
    opacity: 0.85;
  }

}



@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .text-ma {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 150px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-ma a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }


  .label1:hover .text-ma {
    width: 100%;
    height: 310px;
    margin-top: 20px;
    visibility: visible;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 200%;
    background-position: center;
    opacity: 0.85;


  }

  .text-mb {

    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 120px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-mb a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcbonal: quita el subrayado */
  }

  .label2:hover .text-mb {
    width: 100%;
    height: 220px;
    margin-top: 30px;
    margin-left: 0px;
    visibility: visible;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    background-size: 200%;
    background-position: center;
    opacity: 0.85;
  }

}

@media (max-width: 575.98px) {
  .text-ma {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 100px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-ma a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .text-ma.visible-touch {
    visibility: visible;
    opacity: 0.85;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    height: 300px;
    margin-top: 20px;
    background-size: 200%;
    background-position: center;
  }

  .label1:hover .text-ma {
    width: 100%;
    height: 300px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    visibility: visible;
    align-items: center;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 200%;
    background-position: center;
    opacity: 0.85;

  }

  .text-mb {

    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 100px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-mb a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }

  .text-mb.visible-touch {
    visibility: visible;
    opacity: 0.85;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    height: 240px;
    margin-top: 20px;
    background-size: 200%;
    background-position: center;
    z-index: 10;
  }

  .label2:hover .text-mb {
    width: 100%;
    height: 240px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    visibility: visible;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    background-size: 200%;
    background-position: center;
    opacity: 0.85;
  }

}

@media (max-width: 375px) {
  .text-ma {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 100px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-ma a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }


  .label1:hover .text-ma {
    width: 100%;
    height: 280px;
    margin-top: 20px;
    margin-left: 0px;
    visibility: visible;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 200%;
    background-position: center;
    opacity: 0.85;

  }

  .text-mb {

    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 100px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;

    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    visibility: hidden;

  }

  .text-mb a {
    color: #FFFFFF;
    text-decoration: none;
    /* Opcional: quita el subrayado */
  }


  .label2:hover .text-mb {
    width: 100%;
    height: 230px;
    margin-top: 20px;
    margin-left: 0px;
    visibility: visible;
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    background-size: 200%;
    background-position: center;
    opacity: 0.85;
  }

}

/*TITULO DE BIN SERVICES*/
/*===============================================================================================================*/


@media (max-width: 575.98px) {

  .services-bim h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
    color: #363636;
  }

  .services-bim p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
    margin: 20px auto 0 auto;
    color: #616161;
  }

  .mercado h2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 25px;
    font-size: 24px;
    font-weight: 700;
    color: #363636;
  }


  .mercado p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
    margin: 20px auto 0 auto;
    color: #616161;
  }

  .t-services2 p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
  }

  .services-bim img {
  margin-top: 10px;
    width: 400px;
    height: 250px;

  }

.mercado img{
  margin-top: 10px;
}

  .btn-3 {
    display: none;

  }

  .link3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #191919;

  }

  .link3:hover {

    border: #000;
    color: #fff;
  }

  .btn-4 {
    display: none;

  }

  .link4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    text-align: center;
    margin-top: 20px;
    margin-bottom: -20px;
    font-size: 15px;
    color: #191919;

  }

  .link4:hover {

    border: #000;
    color: #fff;
  }
}


@media only screen and (min-width: 768px) and (max-width: 1023px) {

  .container-fluid,
  .row {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    /* sólo si es necesario */
  }

  .services-bim h2 {
     margin-top: 80px;
    font-size: 23px;
    margin-left: 20px;

    font-weight: 700;
    color: #363636;
  }

  .services-bim p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    inline-size: 280px;
    text-align: justify;
    margin-left: 20px;
    color: #616161;
  }
.services-bim img{
    margin-top: 20px;
   width: 600px;
   height: 250px;
}
  .mercado h2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 80px;
    font-size: 23px;
    margin-left: 20px;
    inline-size: 280px;
    font-weight: 700;
    color: #363636;
  }


  .mercado p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    inline-size: 280px;
    text-align: justify;
    margin-left: 20px;
    color: #616161;

  }
  
  .mercado img{
    margin-top: 50px;
   width: 400px;
   height: 250px;
  }

  .btn-3 {
    display: none;

  }

  .link3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    position: relative;
    text-align: center;
    margin-top: 14px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #191919;

  }

  .link3:hover {

    border: #000;
    color: #fff;
  }

  .btn-4 {
    display: none;

  }

  .link4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    position: relative;
    text-align: center;
    margin-top: 14px;
    margin-bottom:-20px;
    font-size: 16px;
    color: #191919;

  }

  .link4:hover {

    border: #000;
    color: #fff;
  }

}



@media (min-width: 1200px) {

  .container-fluid,
  .row {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    /* sólo si es necesario */
  }


  .services-bim h2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 200px;
    margin-left: 100px;
    font-size: 45px;
    font-weight: 600;
    color: #363636;
  }

  .services-bim p {
    font-family: 'Poppins', sans-serif;
    margin-left: 100px;
    font-size: 20px;
    font-weight: 500;
    text-align: justify;
    inline-size: 500px;
    color: #616161;
  }

  .services-bim img {
  margin-top: 30px;
    width: 700px;
    height: 500px;

  }

  .mercado h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin-top: 160px;
    margin-left: 50px;
    color: #363636;
  }

  .mercado p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-align: justify;
    margin-top: 20px;
    margin-left: 50px;
    inline-size: 600px;
    color: #616161;
  }

.mercado img{
  margin-top: 50px;
  width: 600px;
  height: 400px;
}

  .services-bim-img img {
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* o 'cover' si prefieres recorte */
  }

  .label3 {
margin-bottom: 50px;
  }

  .link3 {
    visibility: hidden;
  }

  .label4 {
    margin-top: 30px;
    margin-bottom: -30px;
  }

  .link4 {
    visibility: hidden;
  }

}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

  .services-bim h2 {
  font-family: 'Raleway', sans-serif;
    font-size: 28px;
    inline-size: 360px;
    font-weight: 600;
    margin-top: 100px;
    color: #363636;
  }

  .services-bim p {
     font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-align: justify;
    margin-top: 0px;
    inline-size: 360px;
    color: #616161;
  }

  .services-bim img{
   margin-top: 20px;
   width: 600px;
   height: 300px;
  }
  .mercado h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    inline-size: 360px;
    font-weight: 600;
    margin-top: 80px;
    color: #363636;
  }

  .mercado p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-align: justify;
    margin-top: 0px;
    inline-size: 360px;
    color: #616161;
  }
 

  .services-bim-img img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* o 'cover' si prefieres recorte */
  }

  .mercado img{
    margin-top: 50px;
   width: 350px;
   height: 250px;
  }


  .btn-3 {
    display: none;

  }

  .link3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    position: relative;
    text-align: center;
    margin-top: 14px;
    margin-bottom: 40px;
    font-size: 17px;
    color: #191919;

  }

  .link3:hover {

    border: #000;
    color: #fff;
  }

  .btn-4 {
    display: none;

  }

  .link4 {
    font-family: 'Raleway', sans-serif;
    display: block;
    width: fit-content; /* o un ancho fijo como 200px */
    font-weight: 300;
    text-align: center;
    font-size: 17px;
    display: block;
    width: fit-content; /* o un ancho fijo como 200px */
     margin: 40px auto 40px auto;
    text-align: center;
  }

  .link4:hover {

    border: #000;
    color: #fff;
  }

}


@media only screen and (min-width: 1200px) and (max-width: 1440px) {

  .container-fluid,
  .row {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    /* sólo si es necesario */
  }

  .services-bim h2 {
      font-family: 'Raleway', sans-serif;
    font-size: 36px;
    inline-size: 500px;
    font-weight: 600;
    margin-top: 130px;
    color: #363636;
  }

  .services-bim p {
      font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 400;
    text-align: justify;
    margin-top: 20px;
    inline-size: 400px;
    color: #616161;
  }

.services-bim img{
  margin-top: 30px;
  width: 8000px;
  height: 400px;
}

  .services-bim-img img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* o 'cover' si prefieres recorte */
  }

   .mercado h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    inline-size: 500px;
    font-weight: 600;
    margin-top: 130px;
    color: #363636;
  }

  .mercado p {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 400;
    text-align: justify;
    margin-top: 20px;
    inline-size: 400px;
    color: #616161;
  }

.mercado img{
  margin-top: 60px;
  width: 450px;
  height: 300px;

}

  .label3 {
    margin-top: -20px;
margin-bottom: 0px;
  }

  .link3 {
    visibility: hidden;
  }

  .label4 {
    margin-top: 30px;
    margin-bottom: -30px;
    scale: 1.2;
  }

  .link4 {
    visibility: hidden;
  }

}



@media (min-width: 2560px) {

  .services-bim h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 55px;
    font-weight: 600;
    margin-top: 300px;
     inline-size: 600px;
    /* arriba y centrado */
    color: #363636;
  }

  .services-bim p {
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    font-weight: 500;
    text-align: justify;
    margin-top: 20px;
    /* arriba y centrado */
    inline-size: 600px;
    color: #616161;
  }

  .services-bim img {
  margin-top: 50px;
    width: 900px;
    height: 600px;

  }

  .mercado h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 46px;
    font-weight: 600;
    margin-top: 190px;
  inline-size: 750px;
    color: #363636;
  }

  .mercado p {
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    font-weight: 500;
    text-align: justify;
    margin-top: 20px;
    inline-size: 600px;
    color: #616161;
  }

  .mercado img {

 margin-top:60px;
width: 700px;
height: 500px;
   
  
  }

  .services-bim-img img {
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* o 'cover' si prefieres recorte */
  }

.label3{
margin-bottom: 0px;
scale: 0.8;
}
} 


/*==================================================================================================*/

/*TITULO DE PROYECTOS*/

@media (min-width: 1200px) {

  .proyectos {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);
  }

  .card {
    max-width: 400px;
  }

  .card-img-top {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .btn {
    font-family: 'Raleway', sans-serif;
  }

  /*Mercado*/
  .mercado1 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado1:hover .text-m1 {
    visibility: visible;
  }

  .mercado1:hover img {
    transform: scale(1.5);
  }

  .text-m1 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #006600;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;


  }

  .img-m1 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado2 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado2:hover .text-m2 {
    visibility: visible;
  }

  .mercado2:hover img {
    transform: scale(1.5);
  }

  .text-m2 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #B01030;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m2 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado3 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado3:hover .text-m3 {
    visibility: visible;
  }

  .mercado3:hover img {
    transform: scale(1.5);
  }

  .text-m3 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #0B5394;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m3 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado4 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado4:hover .text-m4 {
    visibility: visible;
  }

  .mercado4:hover img {
    transform: scale(1.5);
  }

  .text-m4 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #E59400;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m4 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .ingcbd1 {
    position: absolute;
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin-left: 60px;
    margin-top: 140px;
    color: #363636;
  }

  .ingcbd2 {
    position: absolute;
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-left: 60px;
    margin-top: 200px;
    color: #363636;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
 

  .btn-3 {
    scale: 1.1;
  }

  .proyectos {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);
  }

  .card {
    max-width: 400px;
  }

  .card-img-top {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .btn {
    font-family: 'Raleway', sans-serif;
  }

  /*Mercado*/
  .mercado1 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado1:hover .text-m1 {
    visibility: visible;
  }

  .mercado1:hover img {
    transform: scale(1.5);
  }

  .text-m1 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #006600;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;


  }

  .img-m1 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado2 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado2:hover .text-m2 {
    visibility: visible;
  }

  .mercado2:hover img {
    transform: scale(1.5);
  }

  .text-m2 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #B01030;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m2 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado3 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado3:hover .text-m3 {
    visibility: visible;
  }

  .mercado3:hover img {
    transform: scale(1.5);
  }

  .text-m3 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #0B5394;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m3 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado4 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado4:hover .text-m4 {
    visibility: visible;
  }

  .mercado4:hover img {
    transform: scale(1.5);
  }

  .text-m4 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #E59400;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m4 {
    object-fit: cover;
    transition: 0.5s ease;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .proyectos {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);
  }


  .mercado1 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado1:hover .text-m1 {
    visibility: visible;
  }

  .mercado1:hover img {
    transform: scale(1.5);
  }

  .text-m1 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #006600;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;


  }

  .img-m1 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado2 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado2:hover .text-m2 {
    visibility: visible;
  }

  .mercado2:hover img {
    transform: scale(1.5);
  }

  .text-m2 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #B01030;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m2 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado3 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado3:hover .text-m3 {
    visibility: visible;
  }

  .mercado3:hover img {
    transform: scale(1.5);
  }

  .text-m3 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #0B5394;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m3 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado4 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado4:hover .text-m4 {
    visibility: visible;
  }

  .mercado4:hover img {
    transform: scale(1.5);
  }

  .text-m4 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #E59400;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m4 {
    object-fit: cover;
    transition: 0.5s ease;
  }





}

@media (min-width: 2000px) {
  .text-m1 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 34px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #006600;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .text-m2 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 34px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #B01030;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }



  .text-m3 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 34px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #0B5394;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }



  .text-m4 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 34px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #E59400;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .imgmercado {
    margin-top: 80px;
    scale: 1.2;
  }

  .btn-3 {
    scale: 1.2;
  }

}



@media only screen and (min-width: 768px) and (max-width: 1023px) {

  .proyectos {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);
  }

  .card {
    max-width: 400px;
  }

  .card-img-top {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .btn {
    font-family: 'Raleway', sans-serif;
  }

  /*Mercado*/
  .mercado1 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado1:hover .text-m1 {
    visibility: visible;
  }

  .mercado1:hover img {
    transform: scale(1.5);
  }

  .text-m1 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #006600;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;


  }

  .img-m1 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado2 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado2:hover .text-m2 {
    visibility: visible;
  }

  .mercado2:hover img {
    transform: scale(1.5);
  }

  .text-m2 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #B01030;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m2 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado3 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado3:hover .text-m3 {
    visibility: visible;
  }

  .mercado3:hover img {
    transform: scale(1.5);
  }

  .text-m3 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #0B5394;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m3 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado4 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado4:hover .text-m4 {
    visibility: visible;
  }

  .mercado4:hover img {
    transform: scale(1.5);
  }

  .text-m4 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #E59400;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m4 {
    object-fit: cover;
    transition: 0.5s ease;
  }


  .title-services {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2F2F2F;
    margin-top: 20px;
    margin-left: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .proyectos {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);
  }


  .title-services {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2F2F2F;
    margin-top: 20px;
    margin-left: 15px;

  }

  .imgmercado {

    margin-top: 10px;
    margin-bottom: 20px;
  }

  /*Mercado*/
  .mercado1 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado1:hover .text-m1 {
    visibility: visible;
  }

  .mercado1:hover img {
    transform: scale(1.5);
  }

  .text-m1 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #006600;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;


  }

  .img-m1 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado2 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado2:hover .text-m2 {
    visibility: visible;
  }

  .mercado2:hover img {
    transform: scale(1.5);
  }

  .text-m2 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #B01030;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m2 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado3 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado3:hover .text-m3 {
    visibility: visible;
  }

  .mercado3:hover img {
    transform: scale(1.5);
  }

  .text-m3 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #0B5394;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m3 {
    object-fit: cover;
    transition: 0.5s ease;
  }

  .mercado4 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .mercado4:hover .text-m4 {
    visibility: visible;
  }

  .mercado4:hover img {
    transform: scale(1.5);
  }

  .text-m4 {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: #E59400;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .img-m4 {
    object-fit: cover;
    transition: 0.5s ease;
  }


}

@media (max-width: 375px) {
  .ingcbd1 {
    position: absolute;
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-left: 1px;
    color: #363636;
  }

  .ingcbd2 {
    /*   position: absolute;
      font-family: 'Raleway', sans-serif;
      font-size: 12px;
      text-align: justify;
      font-weight: 600;
      margin-left: 5px;
      margin-top: 70px;
      color: #363636; */
    display: none;
  }

  .imgmercado {
    margin-top: 80px;
  }
}

/*fin*/




/*============================================================================================================*/
/*CONTACTO*/
@media (min-width: 1200px) {
  .contactenos {

    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);


  }

  .contact {
    background-color: #fff;
    /* background-image: url(/img/Untitled.png); */
    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;


  }


  .title-contact {

    font-family: 'Raleway', sans-serif;
    margin-left: 300px;
    margin-top: 40px;
    font-size: 36px;
    font-weight: 600;
    color: #2F2F2F;
  }


  .title-contact2 {
    margin-left: 300px;
    font-family: 'Raleway', sans-serif;
    font-size: 23px;
    margin-left: 305px;
    color: #2F2F2F;
    font-weight: 500;
  }


  .img-contact {
    background: linear-gradient(-70deg, #042645 50%, #073763 75%);
    margin-top: 30px;
    margin-right: 150px;
  }


  .formulario img {
    width: 600px;
    height: 415px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;



  }

  .info-contact {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
  }


  .iconos-form {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: #fffF;
    font-weight: 500;

  }

  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #fffF;
    font-weight: 500;

  }

  .info-icon {
    color: #fffF;
    font-size: 24px;
    font-weight: 700;
  }


}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .contactenos {

    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .contact {
    background-color: #fff;
    /*  background-image: url(/img/fservicios4.png); */
    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;

  }


  .title-contact {

    font-family: 'Raleway', sans-serif;
    margin-left: 65px;
    margin-top: 40px;
    font-size: 36px;
    font-weight: 600;
    color: #2F2F2F;
  }


  .title-contact2 {
    margin-left: 300px;
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    margin-left: 70px;
    color: #2F2F2F;
    font-weight: 400;
  }

  .info-contact {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
  }

  .msj-contact {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
  }

  .img-contact {
    background: linear-gradient(-70deg, #042645 50%, #073763 75%);
    margin-top: 30px;
    margin-right: 50px;
    width: 450px;
    height: 450px;
  }

  .formulario img {
    width: 450px;
    height: 450px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .formulario {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #FFFFFF;
  }


  .iconos-form {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #FFFFFF;


  }

  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #FFFFFF;

  }

  .info-icon {
    color: #FFFFFF;

    font-size: 20px;
    font-weight: 700;
  }



}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

  .contactenos {

    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .contact {
    background-color: #fff;
    /*  background-image: url(/img/fservicios4.png); */
    font-family: 'Raleway', sans-serif;
    color: black;

  }

  .info-contact {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
  }

  .msj-contact {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
  }

  .title-contact {

    font-family: 'Raleway', sans-serif;
    margin-left: 65px;
    margin-top: 30px;
    font-size: 30px;
    font-weight: 600;
    color: #2F2F2F;
  }


  .title-contact2 {
    margin-left: 300px;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    margin-left: 70px;
    color: #2F2F2F;
    font-weight: 400;
  }

  /*  .img-contact {
    background: linear-gradient(-70deg, #539ED6 50%, #2986CC 50%);
    margin-top: 30px;
    margin-bottom: 30px;
    margin-right: 20px;
  } */

  .img-contact {
    background: linear-gradient(-70deg, #042645 50%, #073763 75%);
    margin-top: 30px;
    margin-right: 50px;

    height: 380px;
    width: 380px;
  }


  .formulario img {
    width: 380px;
    height: 380px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .formulario {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #2F2F2F;
  }


  .iconos-form {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: #FFFFFF;

  }

  .iconos-form {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #FFFFFF;


  }

  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #FFFFFF;

  }

  .info-icon {
    color: #FFFFFF;
    font-size: 18px;
  }



}

@media (min-width: 2000px) {
  .contactenos {

    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .contact {
    background-color: #fff;
    font-family: 'Raleway', sans-serif;
    color: black;

  }


  .title-contact {

    font-family: 'Raleway', sans-serif;
    margin-left: 410px;
    margin-top: 40px;
    font-size: 42px;
    font-weight: 600;
    color: #2F2F2F;
  }


  .title-contact2 {
    margin-left: 410px;
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    color: #2F2F2F;
    font-weight: 400;
  }



  .img-contact {
    background: linear-gradient(-70deg, #042645 50%, #073763 75%);
    margin-top: 30px;
    margin-right: 150px;
  }

  .formulario img {
    width: 850px;
    height: 470px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .formulario {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #2F2F2F;
  }


  .iconos-form {
    font-family: 'Raleway', sans-serif;
    font-size: 34px;
    color: #FFFFFF;

  }

  .iconos-form {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    color: #FFFFFF;


  }

  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    color: #FFFFFF;

  }

  .info-icon {
    color: #FFFFFF;
    font-size: 28px;
  }

  .form-control {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
  }

}


@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .contactenos {

    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .contact {
    background-color: #fff;
    font-family: 'Raleway', sans-serif;
    color: black;

  }


  .title-contact {
    font-family: 'Raleway', sans-serif;
    margin-left: 16px;
    margin-top: 30px;
    font-size: 28px;
    font-weight: 600;
    color: #2F2F2F;
  }



  .title-contact2 {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    margin-left: 16px;

    padding-top: 5px;
    color: #2F2F2F;
    font-weight: 400;
  }


  .img-contact {
    background: linear-gradient(-70deg, #042645 50%, #073763 75%);
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .formulario img {
    width: 530px;
    height: 420px;
    margin-top: 30px;
    margin-left: 120px;
    margin-right: auto;
  }

  .formulario {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #2F2F2F;
  }


  .iconos-form {
    font-family: 'Raleway', sans-serif;
    font-size: 21px;
    color: #FFFFFF;

  }

  .iconos-form {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    color: #FFFFFF;
  }



  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #FFFFFF;

  }

  .form-control {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;

  }

  .info-icon {
    color: #FFFFFF;
    font-size: 22px;
  }


}

@media (max-width: 575.98px) {
  .contactenos {

    font-family: 'Raleway', sans-serif;
  
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .contact {
    background-color: #fff;

    font-family: 'Raleway', sans-serif;
    color: black;

  }

  .info-contact {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
  }

  .msj-contact {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
  }

  .title-contact {
    font-family: 'Raleway', sans-serif;
    margin-left: 4px;
    margin-top: 20px;
    font-size: 19px;
    font-weight: 600;
    color: #2F2F2F;
  }



  .title-contact2 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    margin-left: 4px;
    color: #2F2F2F;
    font-weight: 400;
  }


  /*  .img-contact {
    background: linear-gradient(-70deg, #539ED6 50%, #2986CC 50%);
    margin-top: 20px;
    margin-bottom: 5px;
    margin-right: 0px;
  } */

  .img-contact {
    background: linear-gradient(-70deg, #042645 50%, #073763 75%);
    margin-top: 30px;
width: auto;
   padding-left: 5px;
   padding-right: 5px;
   object-fit: cover;
  }


  .formulario img {
    width: auto;
    height: 300px;
    margin-top: 5px;
  object-fit: contain;
  }

  .formulario {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #2F2F2F;
  }


  .iconos-form {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    color: #FFFFFF;

  }

  .iconos-form {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
  }



  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #FFFFFF;

  }

  .form-control {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;

  }

  .info-icon {
    color: #FFFFFF;
    font-size: 20px;
  }


}

/*===============================================================================================================*/
/*FOOTER*/
@media (max-width: 575.98px) {
  .barra-fot {
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    letter-spacing: .15em;
    padding-top: 10px;
    padding-bottom: 10px;

  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: transparent;
    }
  }

  .active5 {
    animation:
      typing 5.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .icon-logo {
    padding-bottom: 12px;

  }

  .fot-icon {
    font-size: 22px;
    color: #fff;
    margin-left: 22px;

  }

  .fot-icon2 {
    padding: 5px;
    font-size: 20px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .logo2 {

    width: 150px;
    height: 75px;

    margin-left: auto;
    margin-right: auto;
  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #073763;

  }

.fot-2 span:first-of-type{
      font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
      display: inline-block; 
  margin-top: 5px;
    text-decoration: underline;
    color: #0B5394;
}
.fot-2 p:first-of-type {
  margin-top: 10px; /* Ajusta el valor según lo necesites */
}


  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    background-color: #282828;
    color: #FFFFFF;

  }

  .cpyr-2 {
        font-family: 'Raleway', sans-serif;
    font-size: 14px;
    background-color: #282828;
  display: inline-block;
  margin-left: 2px; /* opcional */
  margin-top: 5px;  /* crea un poco de espacio arriba */
}

 

  .fot-3 p {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .fot-4 h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
   text-decoration: underline;
    color: #0B5394;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .icon-contacto {

    color: #2F2F2F;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .barra-fot {
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    letter-spacing: .15em;
    padding-top: 10px;
    padding-bottom: 10px;

  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    100% {
      border-color: #FFFFFF;
    }
  }

  .active5 {
    animation:
      typing 5.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .icon-logo {
    padding-bottom: 12px;
    display: block;
    margin-left: 0px;
    margin-right: auto;

  }

  .fot-icon {
    font-size: 24px;
    margin-left: 20px;
    color: #fff;


  }

  .fot-icon2 {
    padding: 5px;
    font-size: 20px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .logo2 {
    width: 180px;
    height: 90px;

  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;

    font-weight: 600;
    color: #2F2F2F;

  }
.fot-2 span:first-of-type{
      font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-top: 2px;
      display: inline-block; /* o 'block' si quieres que se comporte como un div */
 
    text-decoration: underline;
    color: #0B5394;
}
.fot-2 p:first-of-type {
  margin-top: 8px; /* Ajusta el valor según lo necesites */
}


  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .fot-3 p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    background-color: #282828;
    color: #FFFFFF;

  }

  .fot-3 {
    margin-top: 0px;
  }


  .fot-4 h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    margin-left: 0px;
    font-weight: 700;
    text-decoration: underline;
    color: #0B5394;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;
  }

  .icon-contacto {
    margin-left: 0px;
    color: #2F2F2F;
  }
}


@media only screen and (min-width: 1024px) and (max-width: 1199px) {

  .barra-fot {
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    margin: 10px;
    letter-spacing: .20em;

  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    100% {
      border-color: transparent;
    }
  }

  .active5 {
    animation:
      typing 6.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .fot-icon {

    font-size: 20px;
    padding-left: 18px;
    color: #fff;

  }

  .fot-icon2 {
    padding: 5px;
    font-size: 20px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #2F2F2F;

  }
.fot-2 span:first-of-type{
      font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
      display: inline-block; /* o 'block' si quieres que se comporte como un div */
  margin-top: 15px; /* Ajusta según necesites */
    text-decoration: underline;
    color: #0B5394;
}
.fot-2 p:first-of-type {
  margin-top: 10px; /* Ajusta el valor según lo necesites */
}

  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .fot-3 p {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    background-color: #282828;
    color: #FFFFFF;

  }

  .foot-servicios {
    margin-top: 12px;
  }

  .foot-contacto {
    margin-top: 15px;
    margin-left: 0px;
  }

  .icon-contacto {
    margin-left: 0px;
    font-size: 10px;
    color: #2F2F2F;
  }

  .fot-3 {
    margin-top: 15px;
  }

  .fot-4 h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-top: 20px;
    color: #0B5394;
    text-decoration: underline;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .logo2 {
    width: 160px;
    height: 80px;
  }
}

@media (min-width: 1200px) {
  .barra-fot {
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    margin: 10px;
    letter-spacing: .20em;

  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: transparent;
    }
  }

  .active5 {
    animation:
      typing 6.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .fot-icon {

    font-size: 28px;
    padding: 5px;
    margin-left: 20px;
    color: #fff;

  }

  .fot-icon2 {
    padding: 8px;
    font-size: 25px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2F2F2F;


  }

/*   .fot-2 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: underline;
    color: #0B5394;
  } */
.fot-2 span:first-of-type{
      font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
      display: inline-block; /* o 'block' si quieres que se comporte como un div */
  margin-top: 20px; /* Ajusta según necesites */
    text-decoration: underline;
    color: #0B5394;
}
.fot-2 p:first-of-type {
  margin-top: 10px; /* Ajusta el valor según lo necesites */
}
  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .fot-3 p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    background-color: #282828;
    color: #FFFFFF;

  }

  .foot-servicios {
    margin-top: 20px;
  }

  .foot-contacto {
    margin-top: 24px;
    margin-left: 48px;
  }

  .icon-contacto {
    margin-left: 50px;
    font-size: 20px;
    color: #2F2F2F;
  }

  .fot-3 {
    margin-top: 20px;
  }

  .fot-4 h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
    letter-spacing: 1px;
    color: #0B5394;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2F2F2F;

  }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .barra-fot {
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    margin: 10px;
    letter-spacing: .20em;

  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: transparent;
    }
  }

  .active5 {
    animation:
      typing 6.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .fot-icon {

    font-size: 25px;
    padding: px;
    color: #fff;

  }

  .fot-icon2 {
    padding: 8px;
    font-size: 20px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #2F2F2F;

  }
.fot-2 span:first-of-type{
      font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
      display: inline-block; /* o 'block' si quieres que se comporte como un div */
  margin-top: 20px; /* Ajusta según necesites */
    text-decoration: underline;
    color: #0B5394;
}
.fot-2 p:first-of-type {
  margin-top: 10px; /* Ajusta el valor según lo necesites */
}


  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .fot-3 p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    background-color: #282828;
    color: #FFFFFF;

  }

  .foot-servicios {
    margin-top: 20px;
  }

  .foot-contacto {
    margin-top: 24px;
    margin-left: 10px;
  }

  .icon-contacto {
    margin-left: 10px;
    font-size: 16px;
    color: #2F2F2F;
  }

  .fot-3 {
    margin-top: 20px;
  }

  .fot-4 h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
   
    color: #0B5394;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2F2F2F;

  }

}

@media (min-width: 2000px) {
  .barra-fot {
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    margin: 10px;
    letter-spacing: .20em;

  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: transparent;
    }
  }

  .active5 {
    animation:
      typing 6.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .fot-icon {

    font-size: 36px;
    padding: 15px;
    color: #fff;

  }

  .fot-icon2 {
    padding: 10px;
    font-size: 30px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #2F2F2F;

  }

.fot-2 span:first-of-type{
      font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
      display: inline-block; /* o 'block' si quieres que se comporte como un div */
  margin-top: 20px; /* Ajusta según necesites */
    text-decoration: underline;
    color: #0B5394;
}
.fot-2 p:first-of-type {
  margin-top: 10px; /* Ajusta el valor según lo necesites */
}
  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .fot-3 p {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    background-color: #282828;
    font-size: 18px;
    color: #FFFFFF;

  }

  .foot-servicios {
    margin-top: 20px;
  }

  .foot-contacto {
    margin-top: 20px;
    margin-left: 20px;
  }

  .icon-contacto {
    margin-left: 20px;
    font-size: 24px;
    color: #2F2F2F;
  }

  .fot-3 {
    margin-top: 20px;
  }

  .fot-4 h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0B5394;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2F2F2F;

  }

}





/*============================================================*/


/*  * {
  outline: 1px solid rgba(255, 0, 0, 0.2); 
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 100vw;
  width: 5px;
  height: 100vh;
  background-color: red;
  z-index: 9999;
}   */