*{
      margin: 0;
      padding: 0;
}

/*Estilos Hero*/

.hero{
    height:500px;
    background-image: url("../img/historia/baner.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center ;
    overflow: hidden;
}
.hero-description{
    height: 500px;
    background-color:rgba(4,7,32,0.7) ;
    display: flex;
    justify-content: center !important;
    flex-wrap: wrap-reverse;     
}
  
.hero-description h1 {
    margin: 140px;
    color: rgb(250, 250, 250);
    display: flex;
    align-items: center;
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 800;   
    text-align: center; 
}


/*Estilos Historia*/

 .historia h3{
    color: var(--primary-color); 
    text-transform: uppercase;
    font-weight: 600;   
    text-align: center; 
} 

.historia p{    
    font-weight: 300;   
    text-align: justify !important; 
}

/*Botones leer mas*/

.content  {
	text-align: justify;
	
}

 .content p  {
	font-size: 18x;
}
  
  .read-more-content {
    display: none;
  }
  
  .read-more-btn {
    
    text-align: center;
   
    cursor: pointer;
	text-decoration: none !important;
  }

  /*Estilos de Mision y Vision*/
 
  .nav-tabs .nav-link {
    background: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid transparent;
    color: var(--border-color);
    font-weight: var(--font-weight-bold);
    margin: auto;
    position: relative;
    top: 1px;
  }
  
  .nav-tabs .nav-link:hover,
  .nav-tabs .nav-item.show .nav-link, 
  .nav-tabs .nav-link.active {
    background: transparent;
    border-color: transparent;
    border-bottom-color: var(--primary-color);
    color: var(--dark-color);
  }
  
/*------ Estilos Galeria----------*/

.gallery{
  width: 100%;
  height: auto;
  text-align: center;
  margin: auto;
}
.gallery img{
  width: 368px;
  height: auto;;
  transition: 0.5s;
}
.gallery img:hover{
  filter: grayscale(80%);
  transform: scale(1.02);
}

