  /*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/


  @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');  
  :root{
    --yellow1:#F5DF4D;
    --yellow2:#FFD71D;
    --yellow3:#F7A802;

    --second1:#9EFF8C;
    --second2:#FF570F;
    --second3:#7A4A00;
    --second4:#281700;
  }
footer{
  font-family: 'Poppins', sans-serif;

}

  body {
    background: #fff;
    color: #000000;
    font-family: 'Poppins', sans-serif;
  font-weight: 400px;
  }

  a {
    color: #FFD71D;
    transition: 0.5s;
    font-family: 'Poppins', sans-serif;

  }

  a:hover, a:active, a:focus {
    color: #FFD71D;
    outline: none;
    text-decoration: none;
  }

  p {
    padding: 0;
    color: #072348;
    margin: 0 0 1 0;
    font-size: 15px;
  }

  h1 {
    font-family: 'Poppins', sans-serif;
    margin: 0 0 20px 0;
    padding: 0;
    color: #072348;
    font-family: 'Poppins', sans-serif;
  font-weight: 600;
   font-size: 24px;
    margin-top: 50px;
  }


  h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin: 0 0 20px 0;
    padding: 0;
  }

  /* Prelaoder */
  #preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff url("../img/preloader.svg") no-repeat center center;
  }

  /* Back to top button */
  .back-to-top {
    position: fixed;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    padding: 6px 12px 9px 12px;
    font-size: 16px;
    border-radius: 2px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
  }

  @media (max-width: 768px) {
    .back-to-top {
      bottom: 15px;
    }
  }

  .back-to-top:focus {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    outline: none;
  }

  .back-to-top:hover {
    background: var(--yellow2);
    color: #fff;
  }

  /*--------------------------------------------------------------
  # Welcome
  --------------------------------------------------------------*/
  #hero {
    display: table;
    width: 100%;
    height: 87.5vh;
    background: url(../img/Mineria2.jpg) top center fixed;
    background-size: cover;
  }

  #hero .hero-logo {
    margin: 50px;
  }

  #hero .hero-logo img {
    max-width: 56%;
  }

  @media (max-width: 768px) {
    #hero .hero-logo img {
    max-width: 100%;
    }
  }

  #hero .hero-container {
    background: rgba(0, 0, 0, 0.7);
    display: table-cell;
    margin: 0;
    padding: 0;
    text-align: center;
    vertical-align: middle;
  }

  #hero h1 {
    margin: 30px 0 10px 0;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
    color: #fff;
  }

  @media (max-width: 768px) {
    #hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
  }

  #hero h2 {
    color: #000000;
    margin-bottom: 50px;
  }

  @media (max-width: 768px) {
    #hero h2 {
      font-size: 24px;
      line-height: 26px;
      margin-bottom: 30px;
    }
    #hero h2 .rotating {
      display: block;
    }
  }

  #hero .rotating > .animated {
    display: inline-block;
  }

  #hero .actions a {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
  }

  #hero .btn-get-started {
    background: #03C4EB;
    border: 2px solid #03C4EB;
    color: #fff;
  }

  #hero .btn-get-started:hover {
    background: none;
    border: 2px solid #fff;
    color: #fff;
  }

  #hero .btn-services {
    border: 2px solid #fff;
    color: #fff;
  }

  #hero .btn-services:hover {
    background: #03C4EB;
    border: 2px solid #03C4EB;
  }

  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    background: #072348;
    padding:10px 0;
    height: 80px;
  }

  #header #logo {
    float: left;
  }

  #header #logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
  }


  #header #logo h1 a, #header #logo h1 a:hover {
    color: #fff;
  }

  #header #logo img {
 
    max-height: 70px;
    max-width: 100%;
  }

  @media (max-width: 768px) {
    #header {
      height: 80px;
    }
    #header #logo h1 {
      font-size: 26px;
    }
    #header #logo img {
      max-height: 40px;
    }
  }

  .is-sticky #header {
    background: rgba(7, 35, 72, 0.85);
  }

  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Nav Menu Essentials */
  .nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    font-size: px;
    list-style: none;
    color: #072348;
    font-weight: 400;
    
  }

  .nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
  }

  .nav-menu li {
    position: relative;
    white-space: nowrap;
  }

  .nav-menu > li {
    float: left;
  }

  .nav-menu li:hover > ul,
  .nav-menu li.sfHover > ul {
    display: block;
  }

  .nav-menu ul ul {
    top: 0;
    left: 100%;
  }

  .nav-menu ul li {
    min-width: 180px;
  }

  /* Nav Menu Arrows */
  .sf-arrows .sf-with-ul {
    padding-right: 30px;
  }

  .sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-style: normal;
    font-weight: normal;
  }

  .sf-arrows ul .sf-with-ul:after {
    content: "\f105";
  }

  /* Nav Meu Container */
  #nav-menu-container {
    float: right;
    margin: 5px 0;
  }

  @media (max-width: 768px) {
    #nav-menu-container {
      display: none;
    }
  }


  /* Nav Meu Styling */
  .nav-menu a {
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-family: 'Poppins', sans-serif;;
    font-weight: 300;
    font-size: 16px;
    outline: none;
  }

  .nav-menu a:hover, .nav-menu li:hover > a, .nav-menu .menu-active > a {
    color: #FFD71D;
  }

  .nav-menu ul {
    margin: 4px 0 0 15px;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
  }

  .nav-menu ul li {
    background: #fff;
    border-top: 1px solid #f4f4f4;
  }

  .nav-menu ul li:first-child {
    border-top: 0;
  }

  .nav-menu ul li:hover {
    background: #f6f6f6;
  }

  .nav-menu ul li a {
    color: #333;
  }

  .nav-menu ul ul {
    margin: 0;
  }

  /* Mobile Nav Toggle */
  #mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
  }

  #mobile-nav-toggle i {
    color: #fff;
  }

  @media (max-width: 768px) {
    #mobile-nav-toggle {
      display: inline;
    }
  }

  /* Mobile Nav Styling */
  #mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
  }

  #mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #mobile-nav ul li {
    position: relative;
  }

  #mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
  }

  #mobile-nav ul li a:hover {
    color: #fff;
  }

  #mobile-nav ul li li {
    padding-left: 30px;
  }

  #mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
  }

  #mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #03C4EB;
  }

  #mobile-nav ul .menu-item-active {
    color: #03C4EB;
  }

  #mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    display: none;
  }

  /* Mobile Nav body classes */
  body.mobile-nav-active {
    overflow: hidden;
  }

  body.mobile-nav-active #mobile-nav {
    left: 0;
  }

  body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
  }

  /*--------------------------------------------------------------
  # Sections
  --------------------------------------------------------------*/
  /* Sections Common
  --------------------------------*/
  .section-title {
    font-size:25px;
    color: #111;
    text-align: center;
    font-weight: 700;
    margin: 0;
  }

  .section-description {
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
  }

  .section-title-divider {
    width: 50px;
    height: 3px;
    background: var(--second2);
    margin: 0 auto;
    margin-bottom: 20px;
  }

  /* Get Started Section
  --------------------------------*/
  #about {
    background: #fff;
    padding: 80px 0;
  }

  #about .about-container {
    background: url(../img/sobre-nosotros1.png) left top no-repeat;
  }

  #about .about-content {
    background: #fff;
  }

  #about .about-title {
    color: #020202;
    font-weight: 700;
    font-size: 28px;
  }

  #about .about-text {
    font-size: 12px;
    line-height: 26px;
    
  }

  #about .about-text:last-child {
    margin-bottom: 0;
  }

  /* Services Section
  --------------------------------*/
  #services {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("../img/services-bg.jpg") fixed center center;
    background-size: cover;
    padding: 80px 0 60px 0;
  }

  #services .service-item {
    margin-bottom: 20px;
  }

  #services .service-icon {
    float: left;
    background: rgba(0, 0, 0, 0);
    padding: 16px;
    border-radius: 50%;
    transition: 0.5s;
    border: 2px solid var(--second2);
  }

  #services .service-icon i {
    color: var(--second3);
    font-size: 24px;
  }

  #services .service-item:hover .service-icon {
    background: var(--second4);
  }

  #services .service-item:hover .service-icon i {
    color: var(--yellow2);
  }

  #services .service-title {
    margin-left: 80px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
  }

  #services .service-title a {
    color: #111;
  }

  #services .service-description {
    margin-left: 80px;
    line-height: 24px;
  }

  /* Subscribe Section
  --------------------------------*/
  /* #subscribe {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/subscribe-bg.jpg) fixed center center;
    background-size: cover;
    padding: 80px 0;
  }

  #subscribe .subscribe-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
  }

  #subscribe .subscribe-text {
    color: #fff;
  }

  #subscribe .subscribe-btn-container {
    text-align: center;
    padding-top: 20px;
  }

  #subscribe .subscribe-btn {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
  }

  #subscribe .subscribe-btn:hover {
    background: #03C4EB;
    border: 2px solid #03C4EB;
  } */

  /* Portfolio Section
  --------------------------------*/
  /* #portfolio {
    background: #fff;
    padding: 80px 0;
  }

  #portfolio .portfolio-item {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 260px;
    width: 100%;
    display: table;
    overflow: hidden;
    margin-bottom: 30px;
  }

  #portfolio .portfolio-item .details {
    height: 260px;
    background: #fff;
    display: table-cell;
    vertical-align: middle;
    opacity: 0;
    transition: 0.3s;
    text-align: center;
  }

  #portfolio .portfolio-item .details h4 {
    font-size: 16px;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    font-weight: 700;
    color: #333333;
  }

  #portfolio .portfolio-item .details span {
    display: block;
    color: #666666;
    font-size: 13px;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }

  #portfolio .portfolio-item:hover .details {
    opacity: 0.8;
  }

  #portfolio .portfolio-item:hover .details h4 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  #portfolio .portfolio-item:hover .details span {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  #contact {
    padding: 80px 0;
  }

  #contact .info {
    color: #333333;
  }

  #contact .info i {
    font-size: 32px;
    color: var(--yellow3);
    float: left;
  }

  #contact .info p {
    padding: 0px 0px 0px 50px;
    line-height: 24px;
  }

  #contact .form #sendmessage {
    color: #03C4EB;
    border: 1px solid #03C4EB;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  #contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  #contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
    display: block;
  }

  #contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
  }

  #contact .form input, #contact .form textarea {
    border-radius: 0;
    box-shadow: none;
  }

  #contact .form button[type="submit"] {
    background: var(--second4);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
  }

  #contact .form button[type="submit"]:hover {
    background: var(--yellow3);
  } */

  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
    #footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background: #072348;
    padding: 20px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;

  }


  #footer .copyright {
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }

  #footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #ccc;
  }
  #footer .descrip-menu .list-footer:hover{
    color:#FFD71D;
    letter-spacing: 1px;
    
  }

#footer .descrip-menu .list-footer{
  color:white;
}
  .info div{
      padding: 5px 0px 15px 0px;
  }
 
  #footer .copyright .btn{
  color: #FFD71D;
  }
  #footer .copyright .btn:hover{
  color: white;
  }
  .card {
    flex: 1;
    max-width: 100%px;
    margin: 1em;
    text-align: center;
    padding: 1.5em;
    text-align:left;

    box-sizing: border-box;
  }
 
  
  .yellow-rectangle {
    background-color:#162430;
    display: flex;
    height: 50px;
  justify-content: center;
  align-items: center;
  }
    
  .mission-vision-values-container {
    color: rgb(0, 0, 0);
    padding: 2em;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  .sec_card {
      padding: 20px; /* Ajusta el relleno según sea necesario */
    background-color: #ffffff; /* Color de fondo blanco o el que prefieras */
    border-radius: 30px; /* Bordes redondeados según sea necesario */
    margin: 50px; /* Esto centra horizontalmente el contenedor */

  }
  .card-title {
    color:  #072348;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px; /* Ajusta el margen superior según sea necesario */
  }    
/*---------------------ICONOS --------------------------------------------*/
.iconos {
  margin-top: 1em;
  margin-bottom: 1em;
  display: flex;
  justify-content: center; /* Alinea los elementos horizontalmente al centro */
  align-items: flex-start; /* Alinea los elementos verticalmente al inicio (arriba) */
  flex-wrap: wrap; /* Para que los elementos se envuelvan en una nueva línea si no hay suficiente espacio */
}



.iconos i {
  font-size: 2em; /* Ajusta el tamaño de los iconos según sea necesario */
  border-radius: 50%;
  background-color: #ffffff;
  padding: 1em;
  margin: 0.5em; /* Ajusta el espacio entre los iconos según sea necesario */
  transition: background-color 0.3s ease;
}

@media (max-width: 500px) {
  .iconos i {
    font-size: 1.5em; /* Ajusta el tamaño para pantallas más pequeñas */
  }
} 


        /*--------------------------------lista ---------------------------t*/

    .carousel__lista {
      display: flex;
      flex-direction: row; /* Ajusta la dirección a "row" para mostrar las imágenes en una fila */
      justify-content: center; /* Alinea los elementos al centro horizontalmente */
      align-items: center; /* Alinea los elementos al centro verticalmente */
    }
    .carouselClientes {
      position: relative;
      width: 100%;
      height: 100px;
      background: #ffffff;
      margin-top: 30px;
      margin-bottom: 20px;
      
  }
  
    .carousel__elemento {
      text-align: center;
      margin: 0 30px; /* Añade margen entre los elementos si lo deseas */

    }
    /*lista tamaño de las marcas*/
    .carousel__lista .carousel__elemento img {
      width: 120px;
      
    }
    .carousel__lista {
      overflow: hidden;
    }
    /* MARCO DE NSOTRO */
    .about-container {
      background-color: rgb(56, 55, 55);
      color: white;
      padding: 40px;
      border-radius: 10px; /* Ajusta según sea necesario */
      overflow: hidden; /* Evita que el contenido se salga del contenedor */
  }
  
  .about-text {
      font-size: 15px;
      line-height: 1.6;
      text-align: justify;
justify-content: center;
  }
  
.carousel__lista {
	overflow: hidden;
}



.carousel__contenedor {
	position: relative;
    margin-left: 100px;
    margin-right: 100px;
}



.carousel__anterior,
.carousel__siguiente {
	position: absolute;
	display: block;
    margin-top: 5px;
	width: 30px;
	height: 30px;
	border: none;
	top: calc(50% - 35px);
	cursor: pointer;
	line-height: 30px;
	text-align: center;
	background: none;
	color: rgb(22, 23, 36);
	opacity: 20%;
}

.carousel__anterior:hover,
.carousel__siguiente:hover {
	opacity: 100%;
}
.carousel__anterior {
	left: -30px;
}

.carousel__siguiente {
	right: -30px;
}

.carousel__lista {
	overflow: hidden;
}

.carousel__elemento {
	text-align: center;
}

.carousel__indicadores .glider-dot {
	display: block;
	width: 10px;
	height: 10px;
	background: rgb(48, 38, 38);
	opacity: .2;
	border-radius: 50%;
}

.carousel__indicadores .glider-dot:hover {
	opacity: .5;
}

.carousel__indicadores .glider-dot.active {
	opacity: 1;
}



/* bootton */
.section-title-divider-2 {
  width: 250px;
  height: 3px;
  background: var(--second2);
  margin: 0 auto;
  margin-bottom: 5px;
  background-color: #F7A802;
  margin-top: -5px;
}

.section-title-divider-3 {
  width: 100%;
  height: 2px;
  background: var(--second2);
  margin: 0 auto;
  margin-bottom: 5px;
  background-color: #F7A802;
  margin-top: -5px;
}
/* CONTACTANOS--------- */
.text-con {
  font-size: 14px;
  line-height: 1.6;
  margin-left: 100px;
  text-align: justify;

}
.formulario{
  margin-top: 30;
}
.abc-container img{
  max-width: 80%;
display: block;
margin: 0 auto; /* Centra la imagen dentro del contenedor */
}
.swiper-container {
  width: 100%;
  }

.swiper-slide {
  text-align: center; /* Centra el contenido dentro del slide */
  }
 /* Estilos del menú desplegable */
.dropdown {
  position: relative;
  display: inline-block;
}



.top-bar {
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
  height: 50px;
  background-color: #072348;
  margin-bottom: 0.5px;
}


.top-bar .text {
  display: flex;
  align-items: center;
  height: 37px;
   color: white;
  font-size: 15px;
}

.top-bar .text a {
  color: white; /* Color del texto del enlace */
  text-decoration: none; /* Elimina el subrayado del enlace */
font-size: 18px;
}

/* Agregué estilos para los íconos y enlaces */
.top-bar .text i {
  margin-right: 5px;
}



/* Estilo del botón desplegable */
.dropbtn {
  padding: 30px;
  text-decoration: none;
}

/* Estilos del contenido del menú desplegable */
.dropdown-content {
  display: none;
  border-radius: 10px;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Estilos de las opciones del menú desplegable */
.dropdown-content a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #000000;
}

/* Cambiar el color de fondo cuando se pasa el ratón sobre las opciones */
/* .dropdown-content a:hover {
  background-color: #072348 ;
} */

/* Mostrar el menú desplegable cuando el mouse está sobre el botón */
.dropdown:hover .dropdown-content {
  display: block;
}
/* --- */
.cuadrado1{
  margin-top: 100px;
  background-color: rgba(217, 217, 217, 0.13);
  padding: 10px;
}










.libro:focus {
  outline: none;
}


.libro{
  background-color: transparent;
  border: none;
  outline: none; /* Elimina el contorno al hacer clic */

}