*{
  margin: 0;
  
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(../fonts/MaterialIcons-Regular.woff2) format('woff2'),
    url(../fonts/MaterialIcons-Regular.woff) format('woff'),
    url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
}

@font-face{
  font-family: letraLora;
  src: url(../font-family/lora/static/Lora-SemiBold.ttf);
}

@font-face{
  font-family: letraDmsans;
  src: url(../font-family/dmsans/static/DMSans-ExtraLight.ttf);
}

@font-face{
  font-family: letraRaleway;
  src: url(../font-family/raleway/static/Raleway-ExtraLight.ttf);
} 

@font-face{
  font-family: letraGveret;
  src: url(../font-family/Gveret/GveretLevin-Regular.ttf);
} 

@font-face{
  font-family: letraIndie;
  src: url(../font-family/Indie/IndieFlower-Regular.ttf);
} 

.letraLora{
  font-family: letraLora;
}

.letraDmsans{
  font-family: letraDmsans;
}

.letraRaleway{
  font-family: letraRaleway;
}

.letraGveret{
  font-family: letraGveret;
  color: white;
}

.letraIndie{
  font-family: letraIndie;
}

.textoUno {
 font-family: serif;
}


.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}
/* Rules for sizing the icon. */
.material-icons.md-14 { font-size: 14px; }
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }
.material-icons.md-60 { font-size: 60px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }


.borde{
  border: solid 1px  #f0b27a;
  border-radius: 10%;
}

.boton{
  border-top-left-radius: 25px 20px;
  border-bottom-left-radius: 25px 20px;
  border-top-right-radius: 25px 20px;
  border-bottom-right-radius: 25px 20px;
  background-color: #097F77;
  width: 140px;
  color: white;
}

.boton : hover{
  background-color:  #097F77;
  color: white;
}
.contenedor{
	margin-left: 100px;
	margin-right: 100px;
	margin-top:114px;
  margin-bottom:260px;
}

.cont-inicio {
  margin-bottom: 60px;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0px;
  position: relative;
  padding-bottom: 10em;
  min-height: 100vh;

}

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 2.5rem;    /* altura de pie de página */
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 13.5rem;            /* altura de pie de página */
}

.footer {
  padding: .5em 0;
  position: absolute;
  bottom: .5;
  width: 100%;
  height: auto rem;
  background-color: #611232;
}

.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
  background-color: #E9C835;
}

.main-nav {
  position: fixed;
  margin-left: 8px;
  top: 30px; /* Altura del top-nav */
  width: 99%;
  height: 100px;
  z-index: 1000; /* Por debajo del top-nav */
}

.botin{ /* funcion para que un boton o texto o imagen tenga el efecto de click*/
  cursor: pointer;
}

.click{ /* funcion para que un boton o texto o imagen tenga el efecto de click*/
  cursor: pointer;
}

/*-------------- funciones para modificacion de imagenes, efecto --------------------- */
.contenedor-redondeado {
  border-radius: 15px; /* Redondea las 4 esquinas por igual y ademas le da un efecto*/
  padding: 20px;
}

.imgRedonda { /* Redondea las 4 esquinas por igual de una imagen o contenedor */
    border-radius:15px;
}

.sombra:hover {
  /*filter: grayscale(80%);*/
  /*filter: opacity(.5);*/
  
  filter: brightness(60%);
}

.img-cir {
  width: 380px;
  height:450px;
  border-radius: 50%;
}

.mi-fondo { /*sirve para poner una imagen de fondo a un div*/
  
  background-image: url('../images/inicio/3.1.png'); /* Ruta de la imagen */

  /* 2. Ajustar la imagen al div (responsive) */
  background-size: cover; /* Ajusta la imagen al div */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita repetición */
  
  /* 3. Definir tamaño del div (necesario si no hay contenido alto) */
  width: 400px; /* Ancho deseado */
  height: 400px; /* Altura necesaria para que se vea */
  
  /* 4. Estilos para centrar el texto (opcional) */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  /* 5. Color de texto para mejor legibilidad */
  /*color: #61855D;*/
  font-family: Arial, sans-serif;
  
  /* 6. Aumentar contraste si la imagen es muy clara */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/*codigo para poner texto dentro de una imagen*/
.img-voces {
  position: relative; /* Contenedor de referencia */
  text-align: left;
  color: white; /* Color del texto */
}

.texto-voces {
  position: absolute; /* Posicionamiento sobre la imagen */
  top: 50%;
  left: 50%;
  right: -30%;
  transform: translate(-50%, -50%); /* Centrado exacto */
  /*font-size: 18px;*/
  font-weight: bold;
}

/*------------------ finaliza el codigo----------------*/

/*  Ajustar el pading de las imagenes para que se muevan dentro de su contenedor,
es decir se ajustan dentro con cierto espaciado */
.ajuste_contenido{
  padding-top: 30px;
  padding-right: 50px;
  padding-bottom: 30px;
  padding-left: 50px;
}
/*----------------------------fin del codigo--------------*/
/*------------------ finaliza el codigo----------------*/

.barra{
	background-color: #000033;
}

.div-contenido{
  width: auto;
  height: auto;
  padding: 0px 20px 35px 0px;
  overflow: hidden;
}

/*  Le da color y diseño a la barra del nav, los botones */
#menu{
  background-color: #EDECE4;
  color: #611232;

}

#menu li>a{
  color: #61855D;
}

#menu li>a:hover{
  color: #a57f2c;
  border-bottom: 3px solid #a57f2c;
}

#menu>li>ul{
  display: none;
}
#menu>li:hover>ul {
  display:block;
}


/* aqui enpieza el codigo para la barra de navegacion lateral*/

 #wrapper {
    overflow-x: hidden;
 }

#sidebar-wrapper {
  min-height: 70vh;
  margin-left: -15rem;
  -webkit-transition: margin .25s ease-out;
  -moz-transition: margin .25s ease-out;
  -o-transition: margin .25s ease-out;
  transition: margin .25s ease-out;
  background-color: #eaeded;
}

#sidebar-wrapper .sidebar-heading {
  padding: 0.875rem 1.25rem;
  font-size: 1.2rem;
}

#sidebar-wrapper .list-group {
  width: 15rem;
}

#page-content-wrapper {
  min-width: 100vw;
}

#wrapper.toggled #sidebar-wrapper {
  margin-left: 0;
}

@media (min-width: 768px) {
  #sidebar-wrapper {
    margin-left: 0;
  }

  #page-content-wrapper {
    min-width: 0;
    width: 100%;
  }

  #wrapper.toggled #sidebar-wrapper {
    margin-left: -15rem;
  }
}
.btn-group, .btn-group-vertical {/* esto sirve para poner el boton de descarga de excel alineado al de busqueda en las tablas*/
    position: absolute !important;
}

div.dataTables_wrapper {/* sirve para manejar el scroll horizontal de las tablas*/
    width: 1300px;
    margin: 0 auto;
}

.ir_arriba {
  display:none;
  padding:10px;
  background:#611232;
  font-size:20px;
  color:#fff;
  cursor:pointer;
  position: fixed;
  bottom:250px;
  right:20px;
  border-radius: 50%;
}

.contenido_inicio{
  /*width: 80vw;
  max-width: 1300px;
  min-width: 320px;
  margin: auto;*/
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
}

.main{
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.div-content{
  width:auto;
  height: auto;
  overflow: hidden;
}


.main img{
  width: 100%;
  height: auto;
}

.conten{
  width: 100vw;
  max-width: 1200px;
  min-width: 320px;
  margin: auto;
}


@media screen and (max-width:1050px){
  .main{
    width: 100%;
  }
}

@media screen and (max-width:320px){
  .contenido_inicio{
    width: 100%;
  }
}

.cont_in {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*-------------------- aqui finaliza el codigo que estoy usando -------------------*/
.inp-cont {
  background-color: #424242;
}

.skill h4 {
  background-color: #097F77;
  text-align: center;
  color: white;
  border-radius: 5px;
  padding: 5px 0px;
  font-size: 1.1res;
  width: 200px;
  opacity: 0;
  transform: translate(0px,-100px);
}


.tools > div:hover h4 {
  opacity: 1;
  transform: translate(0px,-150px);
}

.boton_contacto{
  background-color:  #F6DB89;
}



.margen{
  padding: 5px 5px 5px 5px;
  box-sizing: border-box;
}

.cambio img{
  width: 95%;
  height: 100%;
}

.cambio2 img{
  width: 60%;
  height: 98%;
}

.cambio3 img{
  width: 95%;
  height: 60%;
}

.cambio4 img{
  width: 95%;
  height: 600px;
}

.cambio5 img{
  width: 95%;
  height: 300px;
}

.nombre h6{
  color: #097F77;
}


.conten_compras{
  width: 100vw;
  max-width: 900px;
  min-width: 320px;
  margin: auto;
}

.conten_compras2{
  width: 100vw;
  max-width: 850px;
  min-width: 320px;
  margin: auto;
}

.conten_compras3{
  width: 100vw;
  max-width: 770px;
  min-width: 320px;
  margin: auto;
}

.conten_compras4{
  width: 100vw;
  max-width: 890px;
  min-width: 320px;
  margin: auto;
}

.cambio6 img{
  width: 95%;
  height: 95%;
}

.cambio7 img{
  width: 60%;
  height: 500px;
}

.caja img {
  border: 5px solid darkblue;
  min-height: 200px;
  width: 300px;
  box-sizing: border-box;
}

.conten2{
  width: 100vw;
  max-width: 1240px;
  min-width: 320px;
  margin: auto;
}

/*aqui empieza el codigo para hacer el fondo obscuro de las imagenes*/
.conten_compras10{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1000px;
}

.contenedores .hoverimg{
  position: relative;
  width: 300px;
  height: 420px;
  overflow: hidden;
  cursor: pointer;
}

.contenedores .hoverimg img{
  width: 100%;
  height: 100%;
  transition: all 100ms ease-out;
}

.contenedores .hoverimg .hovercar{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 56, 53, 0.568);
  transition: all 100ms ease-out;
  opacity: 0;
  visibility: hidden;
  text-align: center;
}

.contenedores .hoverimg:hover > .hovercar{
  opacity: 1;
  visibility: visible;
}
/*aqui finaliza el codigo para hacer el fondo obscuro de las imagenes*/

.pruebas{
  width: 250px;
  height: 300px;
}

.pruebas2{
  width: 100%;
  height: 100%;
}

/*aqui empieza el codigo para hacer el fondo obscuro de las imagenes de comprar*/


.contenedores2 .hoverimg2{
  position: relative;
  width: 300px;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}

.contenedores2 .hoverimg2 img{
  width: 100%;
  height: 100%;
  transition: all 100ms ease-out;
}

.contenedores2 .hoverimg2 .hovercar2{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 56, 53, 0.568);
  transition: all 100ms ease-out;
  opacity: 0;
  visibility: hidden;
  text-align: center;
}

.contenedores2 .hoverimg2:hover > .hovercar2{
  opacity: 1;
  visibility: visible;
}
/*aqui finaliza el codigo para hacer el fondo obscuro de las imagenes de comprar*/

/*aqui empieza el codigo para hacer el fondo obscuro de las imagenes de murales*/


.contenedores3 .hoverimg3{
  position: relative;
  width: 680px;
  height: auto;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}

.contenedores3 .hoverimg3 img{
  width: 100%;
  height: 100%;
  transition: all 100ms ease-out;
}

.contenedores3 .hoverimg3 .hovercar3{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 56, 53, 0.568);
  transition: all 100ms ease-out;
  opacity: 0;
  visibility: hidden;
  text-align: center;
}

.contenedores3 .hoverimg3:hover > .hovercar3{
  opacity: 1;
  visibility: visible;
}
/*aqui finaliza el codigo para hacer el fondo obscuro de las imagenes de murales*/

.imagen{
  width: 320px;
  height: 420px;
}

.imagen:hover {
  /*filter: grayscale(80%);*/
  /*filter: opacity(.5);*/
  
  filter: brightness(60%);
}

.imagen1{
  width: 340px;
  height: 200px;
}

.imagen1:hover {
  /*filter: grayscale(80%);*/
  /*filter: opacity(.5);*/
  
  filter: brightness(60%);
}

.imagen2{
  width: 320px;
  height: 450px;
}

.imagen2:hover {
  /*filter: grayscale(80%);*/
  /*filter: opacity(.5);*/
  
  filter: brightness(60%);
}

.imagen3{
  width: 680px;
  height: 420px;
}

.imagen3:hover {
  /*filter: grayscale(80%);*/
  /*filter: opacity(.5);*/
  
  filter: brightness(60%);
}

.imagen4{
  width: 250px;
  height: 300px;
}

.imagen4:hover {
  /*filter: grayscale(80%);*/
  /*filter: opacity(.5);*/
  
  filter: brightness(60%);
}

.imagen5{
  width: 250px;
  height: 250px;
}

.imagen5:hover {
  /*filter: grayscale(80%);*/
  /*filter: opacity(.5);*/
  
  filter: brightness(60%);
}

.imagen6{
  width: 300px;
  height: 250px;
}

.imagen6:hover {
  /*filter: grayscale(80%);*/
  /*filter: opacity(.5);*/
  
  filter: brightness(60%);
}

.titulos {
  text-shadow: -3px -3px 5px #6B034E,
  -6px -6px 5px #F6DB89,
  -9px -9px 5px #ffffff;
}

/*codigo para hacer desaparecer imagenes y aparecer texto*/
.nuestrocontenedor{
  position: relative;
}

.nuestraimagen{
  display: block;
  width: 100%;
  height: auto;
}

.nuestrobloque{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 1.5s ease;
  background-color: #c3ac76;
}

.nuestrotexto{
  color: white;
  font-size: 13px;
  position: absolute;
  top: 10px;
  left: 5px;
  right: 5px;
  text-align: justify;
}

.nuestrocontenedor:hover .nuestrobloque{
  opacity: 1;
}

/* fin del codigo para hacer desaparecer imagenes y aparecer texto*/
.zoom{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 30%;
  margin: 5%;
  grid-gap: 30px;
}

.zoom img{
  width: 100%;
  cursor: pointer;
} 
.escala :hover{
  transform: scale(1.6);
  transition: 4s;
}

.btn-flotante {
  padding: 18px 30px; /* Relleno del boton */
  position: fixed;
  bottom: 250px;
  right: 40px;
  transition: all 300ms ease 0ms;
  z-index: 99;
}

.color{
  color: #61aced;
}
.colorBlanco{
  color: #ffffff;
}
/* Estilo para la tabla de oferta educativa*/

.horizontal {
  border-collapse: separate;
  border-spacing: 10px;
}
/* Fin del estilo para la tabla de oferta educativa*/
.embed-container {
    position: relative;
    padding-bottom: 56%;
    height: 0;
    overflow: hidden;
}
.embed-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 30%;
}



.moficar-cont-imagen {
  padding: 0px;
}

#preview-tileset {
  float: left;
}