body{
  font-family: "Lato", sans-serif;  
}
main{
  position: relative;
  width: 100%;  
  display: flex;
  justify-content: center;
  align-items: center;  
}
main img{ 
  width: 100%;  
  height: auto;
}
/*/////////////////////////////////////////// MAIN ///////////////////////////////////////////////*/
.main_content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_content_left{  
  width: 50%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 50px;
  position: relative;
  z-index: 500;
  border-right: solid 5px #FFFFFF;
}
.main_content_right{  
  width: 50%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 50px;
  z-index: 500;
}
.main_content_right h2,
.main_content_left h2{
  font-size: 50px;
  color: #FFFFFF;
}
/*//////////////////////////////////////// MISION/VISION ///////////////////////////////////////////*/
.bloque{  
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.icono{
  transition: transform 1s ease, opacity 1s ease;
  z-index: 2;
}
.texto{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  max-width: 600px;
  text-align: justify;
  z-index: 1;
  position: absolute;
  padding: 30px;
}
.texto h2{
  text-align: center;
}
.textop{
  text-align: justify;
}
/*///////////////////////////////////////// RESPONSIVE /////////////////////////////////////////////*/
@media screen and (max-width: 600px){
  .main_content_right h2,
  .main_content_left h2{
    font-size: 30px;
    color: #FFFFFF;
  }
}