*{
    --verde:#2D4B51;
    --naranja: #F38230;
    --gris: #2E2D2C;
    --gris-claro: #d7d7d7;
    --blanco: #fff;

    --space-section: 4rem;
    --space-inner: 2rem;


}

html{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--blanco);
}

body{

    font-family: 'Raleway', sans-serif, 'Roboto';

}

h2{
  font-size: 45px;
  font-weight: bold;
}

h3{
  font-size: 35px;
  font-weight: bold;
}

p{
  font-size: 25px;
}

.contenedor{
  
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin: 0 auto;

}

.header{
  width: 100%;
  margin: 0;
  padding: 0;
}

  .header img{
    width: 100%;
  }

.barra-logoxxl{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 10vh;
  background-color: var(--gris);
  margin: 0 auto;
}

  .barra-logoxxl img{
    width: 20%;
  }

.descripcion-principal{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--space-inner) auto;
}

.descripcion-principal img{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen-texto{
  
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--naranja);
  margin: var(--space-inner) auto;
  box-shadow: 0px 10px 9px 0px var(--gris);
  border-radius: 15px;
}

  .imagen-texto .contenedor-texto{
      
    width: 50%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: var(--blanco);

  }

    .imagen-texto .contenedor-texto p{
        
      width: 80%;
      height: 100%;
    }

  .imagen-texto img{
    
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: var(--naranja);
    border-radius: 10px;
  }


.imagen-texto{
  
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--naranja);
  margin: 0 auto;
  
}

  .imagen-texto .contenedor-texto{
      
    width: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: var(--blanco);
     

  }

    .imagen-texto .contenedor-texto p{
        
      width: 80%;
      height: 100%;
    }

    .imagen-texto .contenedor-imagen{
      
      width: 50%;
  
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
  
      color: var(--blanco);
  
    }

  .imagen-texto img{
    
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: var(--naranja);
  }


/*  IMAGEN TEXTO */

.imagen-texto-verde{
    
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color:  var(--verde);
  }

/* PROGRAMAS*/

.programas{
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--space-inner) auto;
  border-radius: 5px;

}

  .programas img{
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    /* margin: var(--space-inner) auto;
    border-radius: 15px;
    box-shadow: 0px 10px 9px 0px var(--gris); */
  }

/* DESCRIPCIÓN GENERAL */

.descripcion-general{
  width: 100VW;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--space-inner) auto;
  border-radius: 5px;
}

.descripcion-general img{
  width: 90%;

  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 15px;
}



/*15 AÑOS*/
.anios15 img{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--space-inner) auto;
}


/*CALIDAD IMUSA*/
.calidad-imusa{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--space-inner) auto;
}

  .calidad-imusa img{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--space-inner) auto;
  }

/*FOOTER*/

.footer{
  width: 70vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 25%;
  background-color: var(--naranja);
  border-radius: 10px;
  margin: 0 auto;
  margin-top: var(--space-section);
  color: var(--blanco);
  text-align: center;
}

  .footer img{
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 25%;
    background-color: var(--naranja);
    border-radius: 10px;
    margin-top: var(--space-inner);
  }

/*responsive de min width*/
@media screen and (max-width: 600px){

  .barra-logoxxl img{
    width: 60%;
  }

  .imagen-texto{

    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .imagen-texto .contenedor-texto{
    width: 100%;
  }


}