/*  PALETA DE COLOR 
color: #4D4D4D;    GRIS-MARRON
color: #1D2B38     NEGRO-AZUL
color: #FAB23C     AMARILLO
color: #9599A2     GRIS (SUBRAYADO DE TITULOS)  */


* {
  box-sizing: border-box; margin: 0;
}

html {
	font-size: 62.5%;
}

body {
    font-size: 1.6rem; 
    font-family: 'Open Sans', sans-serif;
}

header {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
}

.navbar {
	/*width: 100%;
	height: auto;*/
	background: #373334;
	display: flex;
	/*flex-direction: row;*/
	justify-content: space-between;
	align-items: center;
	padding: 2rem 10% 2rem 10%;
}

/*-------LOGO-------*/
.logo {
	width: fit-content;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.logo-img{
    width: 6.0rem;
    padding: 0.2rem;
    border: 1px solid transparent;   
    border-radius: 50%;
    border-style: dotted;
    border-width: 0.25em;
    transition: 0.25s ease-in ;
   /* Repito aca las mismas propiedas que en hover para que no se mueva el resto de las cosas (se movian un poquitiito para abajo) */
}

.logo-texto {
	font-size: 3.0rem;
	padding-left: 0.3rem;
	color: #EFF3F6;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
    cursor: pointer;
    display: inline-block;  
}

/*-------------NAV ITEMS ----------------*/
.nav-items {
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	width: fit-content; 
}

.nav-items li {
	font-size: 1.5rem;
	margin-left: 2em;
	color: #EFF3F6;
	line-height: 40px;
    cursor: pointer;
}

.nav-items li a{
	text-decoration: none;
	color: #EFF3F6;
    cursor: pointer;
}

.nav-items li a:hover{
	color: #FAB23C;
	transition: 0.25s;
}

span.logo-texto:hover {
	color: #FAB23C;
	transition: 0.25s ;
}

img.logo-img:hover {
    padding: 0.2em;
    transition: 0.15s ease-in ;
}


/*------------------NAV 2 ----------*/
#nav2 {
    font-size: 1.2rem;
	width: 100%;
	height: auto;
	background: #fff;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	box-shadow: 0 5px 6px #ccc;
    padding-right: 10%;
}

/*----------BARRA DE BÚSQUEDA--------*/
#busqueda {
	display: flex;  
}

#busqueda input {
  padding: 0.6em;
  font-size: 1.7rem;
  border: 2px solid #ccc;
  float: left;
  flex-grow: 1;
  background: #F3F2F0;
  border-radius: 10px;
}

#busqueda input:focus{
	outline: none;
	border: solid 2px #1D2B38;
}

#busqueda button {
  flex-grow: 0.1;
  padding: 0.5em;
  width: 3em;
  background: #FAB23C;
  color: #fff;
  font-size: 1.5rem;
  border:none;
  border-left: none; /* Prevent double borders */
  cursor: pointer;
  border-radius: 10px;
  margin-left: 0.6em;
}

#busqueda button:hover {
  background: #d69833;
}

/*-----------------NAV ITEMS 2---------------*/
.nav-items2 {
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
    align-items: center; 
    height: 100%;
}

.nav-items2 li{
	font-size: 1.8rem;
	margin-left: 2em;
	font-weight: bold;
	height: 100%;
	line-height: 10px;
	font-weight: 0,600;
}

.nav-items2 li a{
  display: inline-block;
  padding-top: 1rem;
  position: relative;
  color: #1D2B38;
  padding-bottom: 0.8em;
  text-decoration: none;
  cursor: pointer;
}

.nav-items2 .li-ul a:after {
  font-size: 1.4rem;
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleY(0);
  height: 0.3em;
  bottom: 0;
  left: 0;
  background-color: #FAB23C;
  transform-origin: bottom right;
  transition: transform 0.10s ease-out;
}

.nav-items2 .li-ul a:hover:after {
  transform: scaleY(1);
  transform-origin: bottom left;
}

/*----------------SIDEBAR (tengo que seguirla despues)

#side-menu {
	width: 25%;
	height: auto;
	background: pink;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	padding: 4.0rem;
	align-self: flex-end;
}

.hamburguesa div {
  width: 3.5rem;
  height: 0.5rem;
  background-color: black;
  margin: 0.6rem 0;

}

.sidebar-items2{

}

-------------------SIDEBAR*/

/* --------------------------------------------     MAIN-PAG.PRINCIPAL   -------------------------------------------------*/
.bibliotecainfo p{
    font-size: 1.2em;
    color: #000;
    text-align: justify;
}

.bibliotecainfo h2{
    /*font-size: 2em;*/
    font-weight: bold;
    margin-bottom: 0.5em;
}

.contenedor1{
    padding-top: 3%;
    position: relative;
    display: inline-block;
    width: 100%;
}

.contenedor1 img{
    background-repeat: no-repeat;
    background-size: auto;
    width: 100%;
}

.fondoinfo {
    width: 55%;
    height: fit-content;
    font-size: 1.5rem;
    position: absolute;                  /*desplazo la caja de su posicion original*/
    top:30%;
    left: 0%;
    padding-left: 10%;
    padding-right: 3%;
    padding-top: 3%;
    padding-bottom: 3%;
    background: #fff;
    opacity: 0.90;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 5px 5px 0px;
}

.bibliotecainfo {
    color: #1D2B38;
    width: 100%;
}

.contenedor2 {
    margin: 3% 10% 3% 10%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-size: 1em;
}

.contenedor2 img{
    width: 10em;
}

.contenedor2 h2{
    margin-bottom: 0.5em;
    font-size: 1.5em;
    cursor: pointer;
    width: 40%;
    border-bottom: solid 3px transparent;
}

.preview-biblioteca, .preview-crono{
    width: 48%;
    height: fit-content;
}

.preview-crono{
    position: relative;
    color: #1D2B38;
    height: fit-content;
    padding: 3%;
    background-color:white;
    border: solid 1px #B9B9B9;
    border-radius: 5px;
    display:flex;
    cursor: pointer;
} 

.preview-crono .texto-crono {
  margin-left: 5%;
}   

.preview-biblioteca{
    position: relative;
    color: #1D2B38;
    height: auto; /*fit-content Cambie esto porq quedaba mas corta la tarjeta  */
    padding: 3%;
    background-color:white;
    border: solid 1px #B9B9B9;
    border-radius: 5px;
    display: flex;
    cursor: pointer;
} 

.preview-biblioteca .texto-biblioteca {
    margin-left: 5%;
}

.contenedor-link a {
    color: #FAB23C;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    bottom: 11%;
    right: 8%;
    cursor: pointer;
    font-size: 1.2em;
}

.contenedor-link a:hover {
    text-decoration: underline;
    text-decoration-color: #FAB23C;
    text-decoration-thickness: 2px;
}

.preview-crono:hover, .preview-biblioteca:hover {
    transform: scale(1.01);
    transition: 0.20s ease-in-out;
    box-shadow: 0px 5px 10px #ccc;
}

/*-----------------NOTICIAS-------------------------------*/
.noticias h2 {
    padding-left: 10%;
    padding-right: 10%; 
    color: #4D4D4D;
    text-decoration: underline;
    text-decoration-color: #9599A2;
    text-decoration-thickness: 3px;
}

.contenedor3{
    background-color:#fff;
    box-shadow: -3px 3px 3px 3px #B9B9B9;
    border-radius: 5px;
    margin: auto;
    background-color:#fff;
    width: 80%;
    padding: 3%;
}

.contenedor3 img {
    width: 100%;
}

ul, li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.uslider {
    position: relative;
    width: 100%;
}

.uslider li img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.menu {
    text-align: center;
    margin-top: 2%;
}

.menu li {
    display: inline-block;
    text-align: center;
}

.menu li {
    margin-right: 0.4em;
}

.menu li a {
    display: inline-block;
    color: white;
    font-weight: bold;
    text-decoration: none;
    background-color: #FAB23C;
    padding: 10px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 100%;
}

.menu li a:hover {
    background-color: #ca953e;
    transition: 0.5s;
    cursor: pointer;
}

/* -------------------------------------------------- FOOTER ---------------------------------------------------------------*/
.footer {
    margin-top: 5%;
	background: #373334;
	text-align: center;
	margin-bottom: 0;
	color: #fff;
	width: 100%;
}

.mainfooter {
	display: flex;
	justify-content: space-between;
    align-items: center;
	padding-left: 1.6rem;
	padding-right: 1.6rem;
	width: 100%;
    font-size: 1.4rem;
    height: auto;
    padding-top: 2em;
    padding-bottom: 2em;
}

.container-mainfooter1 {
	max-width: 16%;
}

.container-mainfooter1 img {
	height: 4em;
	width: 10em;
}

.container-mainfooter1 img:hover {
    padding: 0.2em;
    transition: 0.15s ease-in ;	
}

.container-mainfooter2 {
	max-width: 20%;
}

.container-mainfooter3 {
	max-width: 20%;
}

.container-mainfooter4 {
	max-width: 20%;
}

.container-mainfooter5 {
	max-width: 20%;
}

.container-mainfooter5-images {
	display: flex;
	margin-left: 1em;
	margin-right: 1em;
	margin-top: 1em;
	justify-content: space-between;
}

.container-mainfooter5 img {
	height: 1.5em ;
	width: 1.5em;
    margin-right: .5rem;
    margin-left: .5rem;
}

.row-footer a img:hover {
    transition: 0.15s ease-in ;
    padding: 0.1rem;
}

.container-mainfooter6 {
	max-width: 16%;
    margin-right: 2em;
}

.h1footer {
	font-size: 1.1em;
}

.mainfooter p {
	font-size: 1em;
    font-weight: 400;
    margin-top: 0.4em;
}

.row2-footer{
    text-align: center;
 
    align-items: center;
}

.fas {
    margin-right: 0.5em;
    margin-top: 0.3em;
    font-size: 1.1em;  
}

.far {
    margin-right: 0.5em;
    font-size: 1.2em;
    margin-top: 0.5em;
}

/* ------------------------------------------------------ AYUDA -------------------------------------------------------------*/
.preg-ayuda {
	color: #1D2B38;
	padding-left: 10%;
	padding-right: 10%;
	padding-top: 3%;
	text-align: justify;
}

.preg-ayuda p {
	margin-top: 1%;
	margin-bottom: 3%;
}

.contacto-ayuda {
	color: #1D2B38;
	padding-left: 10%;
	padding-right: 10%;
	padding-top: 1%;
    text-align: center;
}

.contacto-ayuda a {
    color: #FAB23C;
    font-weight: bold;
    text-decoration: none;
}

.contacto-ayuda a:hover {
    color: #ca953e;
    transition: 0.5s;
    cursor: pointer;
}

/* --------------------------------------------   ACTIVIDADES Y CONCURSOS   ----------------------------------------------------*/
.titulo {
    font-size: 1.6rem;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 3%;
}

.titulo h2 {
    color: #1D2B38;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: #9599A2;
    margin-bottom: 1.0em;
}

.titulo p {
    margin-bottom: 2%;
    color: #1D2B38;
}

.actividad {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: fit-content;
    margin-left: 13%;
    margin-right: 13%;
    margin-top: 2%;
    margin-bottom: 2%;
    box-shadow: -3px 3px 3px 3px #b9b9b9;
    border-radius: 5px;
}

.tit-actividad {
    width: 100%;
    color: #1D2B38;
    background-color: #FAB23C;
    padding-top: 2%;
    padding-bottom: 1.5%;
    padding-left: 3.5%;
    padding-right: 3%;
    border-radius: 5px 5px 0px 0px;
}

.actividad-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 3%;
    padding-right: 3%;
}

.img-actividad {
    width: 40%;
    height: auto;
}

.img-actividad img {
    width: 100%;
}

.texto-actividad {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    width: 100%;
    margin-left: 2%;
}

.texto-actividad h3 {
    margin-bottom: .5em;
    font-size: 1.2em;
    color: #1D2B38;
}

.texto-actividad p {
    font-size: 1.0em;
}

/*---------------------------------------------------   CATALOGO  ----------------------------------------------------------*/
.buscador {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-top: 3%;
    color: #1D2B38;
}

.texto-buscador {
    margin-bottom: 1rem;
}

.tarjeta-libro {
    color: #1D2B38;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 3rem;
    background: #fff;
    box-shadow: -3px 3px 3px 3px #b9b9b9;
    border-radius: 5px;
    padding: 2%;
}

.tarjeta-libro h2 {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: #FAB23C;
}

.tarjeta-libro h3 {
    margin-top: 0.6%;
}

.descripcion-libro {
    margin-top: 0.6%;
}

.genero-libro {
    display: flex;
    align-items: baseline;
}

.genero-libro p {
    margin-left: 1%;
    background: #cfcfcf;
    padding-top: 0.3%;
    padding-bottom: 0.3%;
    padding-left: 0.6%;
    padding-right: 0.6%;
}

.editorial-libro, .año-libro, .rating-libro {
    display: flex;
    align-items: baseline;
    width: -webkit-fill-available;
}

.editorial-libro p, .año-libro p, .rating-libro p {
    margin-left: 1.2%;
}

.editorial-año-libro {
    display: flex;
    margin-top: 0.6%;
}

/*----------------- No se encontro el libro --------------------*/
.no-libro {
    color: #1D2B38;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 3rem;
    background: #fff;
    box-shadow: -3px 3px 3px 3px #b9b9b9;
    border-radius: 5px;
    padding: 2%;
}

/* --------------------------------------------   RADIO COMUNITARIA   ----------------------------------------------------*/
.titulo-radio {
	color: #1D2B38;
	padding-top: 3%;
	padding-bottom: 2%;
	padding-left: 10%;
	padding-right: 10%;
	text-decoration: underline;
    text-decoration-color: #9599A2;
    text-decoration-thickness: 3px;
}

.info-radio {
	color: #1D2B38;
	padding-top: 2%;
	padding-left: 10%;
	padding-right: 10%;
	text-align: justify;
}

.info-radio p {
	margin-top: 1%;
}

/* --- SLIDER --- */
ul, li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.contenedor-slider{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
ul.slider-radio{
    position: relative;
    width: 100%;
    height: 300px;
	text-align: center;
}

ul.slider-radio li {
    left: 0px;
    top: 0px;
    
    width: inherit;
    height: inherit;
    /*transition: opacity .5s;*/
    background:#fff;
}

ul.slider-radio li img {
    width: 80%;
    height: 300px;
    object-fit: cover;
}

.menu-radio li a:hover {
    background-color: #ca953e;
    transition: 0.5s;
    cursor: pointer;
}

.menu-radio {
    text-align: center;;
    margin: 12px;
}

.menu-radio li {
    display: inline-block;
    text-align: center;
}

.menu-radio li a {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    background-color: #fab13cc9;
    padding: 7px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 100%;
    margin-right: 5px;
}

.link-radio:hover {
    background-color: #ca953e;
    transition: 0.5s;
    cursor: pointer;
}

/* -------- BOTON RADIO ------ */
.contenedor-linkR {
	margin-top: 3%;
	display: flex;
	justify-content: center;
}

.link-radio {
	background-color: #FAB23C;
	width: 40rem;
	padding: 2%;
	border-radius: 20px;
}

.link-radio img {
	width: 30px;
	margin-left: 5%;
}

.link-radio a {
	display: flex;
	justify-content: center;
	color: white;
	font-weight: bold;
	text-align: center;
	align-items: center;
    text-decoration: none;
}

/* --------------------------------------------   QUIENES SOMOS   ---------------------------------------------------- */
.info-quienes-somos {
	color: #1D2B38;
	padding-top: 3%;
	padding-bottom: 3%;
	padding-left: 10%;
	padding-right: 10%;
	text-align: justify;
}

h2.titulo-integrantes {
	color: #1D2B38;
	padding-left: 10%;
	padding-right: 10%;
	text-decoration: underline;
    text-decoration-color: #9599A2;
    text-decoration-thickness: 3px;
}

.integrantes {
	display: flex;
	height: fit-content;
    flex-direction: column;
    align-content: center;
}

.integrantex img {
	width: 13%;
}

.integrantex {
	box-shadow: -3px 3px 3px 3px #b9b9b9;
    border-radius: 5px;
	display:flex;
	align-items: center;
	padding: 3%;
	margin-top: 2%;
    margin-left: 10%;
    margin-right: 10%;
}

.info-integrante {
	color: #1D2B38;
	margin-left: 2%;
}

.info-integrante h3 {
	text-decoration: underline;
    text-decoration-color: #FAB23C;
    text-decoration-thickness: 3px;
}

.info-integrante p {
	margin-top: 2%;
	text-align: justify;
}

/*--------------DONDE ESTAMOS----------*/
.googlemap {
    border: 3px solid #FAB23C;
    width: 350px;
    height: 300px;
}

.map1 {
    box-shadow: -3px 3px 3px 3px #b9b9b9;
    border-radius: 5px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4%;
}
.mapacont1 {
    display: flex;
    margin-top: 0;
    align-items: center;
    justify-content: space-evenly;
    background: #fff;
    padding: 30px;
    font-size: 80%;
    border-radius: 0px 0px 5px 5px;
}

.mapa1info {
    color:#1D2B38;
    margin-left: 30px;
}

.divtitmap1 {
    background:#FAB23C;
    height: 60px;
    color: #1D2B38;
    display: flex;
    align-items: center;
    padding-left: 3.5%;
    padding-right: 3.5%;
    border-radius: 5px 5px 0px 0px;
}

/*----------------------------------------  DISEÑO RESPONSIVE    --------------------------------------------------------------------*/

@media only screen and (max-width: 1050px) {
    .mainfooter {
       flex-wrap: wrap;
       justify-content: space-around;
       font-size: 1.2rem;
       
    }
    .container-mainfooter1, .container-mainfooter2, .container-mainfooter3, .container-mainfooter4, .container-mainfooter5, .container-mainfooter6 {
        min-width: 100%;
        margin: 1em;
    }

    .container-mainfooter5-images {
        justify-content: space-evenly;
    }

    .container-mainfooter5 img {
        height: 2.2em;
        width: auto;
        
    }
    .container-mainfooter1 img {
        width: 17em;
        height: auto;
    }
    
    .contenedor2 {
        flex-direction: column;
        font-size: 1.2rem;
        margin: 3% 6%;
    }

    .contenedor2 img {
        width: 7em;
    }
    .contenedor2 h2{
        margin-bottom: 0;
    }
    .contenedor-link {
        margin-top: 29%;
    }
    
    .preview-biblioteca, .preview-crono{
        width: 100%;
        
    }

    .preview-biblioteca {
        margin-top: 3%;
    }

    .contenedor3 {
        width: 90%;
        padding-right: 6%;
        padding-left: 6%;
        box-shadow: 0px 2px 6px 0px #b9b9b9;
    } 

    .bibliotecainfo p {
        font-size: 1em;
        color: #000;
    }

    .bibliotecainfo h2 {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 0.3em;
    }

    .contenedor1 {
        padding-top: 3%;
        position: relative;
        display: inline-block;
        width: 100%;
        font-size: .6rem;
        height: auto;
    }

    .contenedor1 img {
        background-repeat: no-repeat;
        background-size: cover;
        height: 100%;
    }

    .fondoinfo {
        width: 95%;
        height: fit-content;
        font-size: 1.7em;
        position: absolute;                  /*desplazo la caja de su posicion original*/
        top: 13%;
        left: 0%;
        padding-left: 10%;
        padding-right: 3%;
        padding-top: 3%;
        padding-bottom: 3%;
        background: #fff;
        opacity: 0.90;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 0px 5px 5px 0px;    
    }

    /*-----------------NOTICIAS-------------------------------*/
    .contenedor3 {
        width: 90%;
        padding: 3%;
        margin-top: 1%;
    }

    .uslider li img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .menu {
        text-align: center;
        margin-top: 2%;
    }

    .menu li {
        display: inline-block;
        text-align: center;
    }

    .menu li {
        margin-right: 0.4em;
    }

    .menu li a {
        display: inline-block;
        font-weight: bold;
        text-decoration: none;
        padding: 6%;
        width: 3rem;
        height: 3rem;
        font-size: 17px;
        border-radius: 100%;
    }

    /*--------------------------ACTIVIDADES-------------------------*/
    .titulo {
        padding-right: 6%;
        padding-left: 6%;
        font-size: 1.2rem;
    }

    .titulo h2 {
        margin-bottom: .5em;
    }

    .actividad {
        margin-top: 1.5em;
        box-shadow: 0px 2px 6px 0px #b9b9b9;
        margin-left: 6%;
        margin-right: 6%;
        font-size: 1.2rem;
    }

    .tit-actividad {
        font-size: 2rem;
        display: flex;
        justify-content: center;
    }

    .actividad-cont {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1em;
    }

    .img-actividad {
        width: 100%;
        margin-bottom: .3em;
    }

    /*-------------- Radio ----------------------*/
    .link-radio {
        width: 26rem;
    }

    .info-radio {
        padding-left: 6%;
        padding-right: 6%;
    }

    .titulo-radio {
        padding-left: 6%;
        padding-right: 6%;
        margin-bottom: .5em;
    }

    ul.slider-radio li img {
        width: 88%;
        height: auto;
        object-fit: cover;
    }

    .texto-actividad {
        margin-left: 0;
    }

    .texto-actividad h3 {
        margin-bottom: .3em;
    }

    ul.slider-radio {
        height: 8.8em;
    }

    .menu-radio li a {
        padding: 4px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    /*----------------CATALOGO----------*/
    .buscador {
        display: flex;
        align-items: center;
        padding-left: 6%;
        padding-right: 6%;
        font-size: 1.2rem;
    }

    #busqueda input {
        font-size: 1.3rem;
    }

    /*-----TARJETAS LIBROS----*/
    .tarjeta-libro {
        display: flex;
        flex-direction: column;
        color: #1D2B38;
        margin-left: 6%;
        margin-right: 6%;
        margin-top: 2.5rem;
        background: #fff;
        box-shadow: 0px 2px 6px 0px #b9b9b9;
        border-radius: 5px;
        padding: 1em;
        font-size: 1.2rem;
    }

    .tarjeta-libro h2 {
        text-decoration: underline;
        text-decoration-thickness: 3px;
        text-decoration-color: #FAB23C;
    }

    .tarjeta-libro h3 {
        margin-top: 0.5rem;
    }

    .descripcion-libro {
        margin-top: 0.5rem;
    }

    .genero-libro {
        align-items: baseline;
        flex-wrap: wrap;
    }

    .editorial-libro, .año-libro, .rating-libro, .genero-libro{
        margin-top: 0.5rem;
    }

    .editorial-libro p, .año-libro p, .rating-libro p, .genero-libro p  {
        margin-left: 1.2%;
    }
    
    .genero-libro p{
        margin-top: 0.5rem;
    }

    .editorial-año-libro {
        display: flex;
        margin-top: 0.6%;
        flex-direction: column;
    }

    /*------------ ¿Donde Estamos? -------------*/
    .mapacont1 {
        flex-direction: column;
        align-items: flex-start;
        padding: 1em;
    }

    .map1 {
        margin-left: 6%;
        margin-right: 6%;
        width: auto;
        margin-top: 5%;
        box-shadow: 0px 2px 6px 0px #b9b9b9;
        font-size: 1.2rem;
    }

    .titmap1 {
        font-size: 1.8rem;  
    }

    .googlemap {
        width: 100%;
        height: 100%;
        border: 1px solid #FAB23C;
    }

    .mapa1info {
        margin-left: 0;
        margin-top: 1em;
    }

    .divtitmap1 {
        display: flex;
        justify-content: center;
        font-size: 2rem;
    }

    /*-------------- ¿Quienes Somos? -----------------*/
    .info-quienes-somos {
        text-align: justify;
        padding-left: 6%;
        padding-right: 6%;
        font-size: 1.2rem;
    }

    h2.titulo-integrantes {
        padding-left: 6%;
        padding-right: 6%;
        font-size: 2rem;
    }

    .integrantex {
        margin-left: 6%;
        margin-right: 6%;
        margin-top: 1.5em;
        padding: 1em;
        width: auto;
        box-shadow: 0px 2px 6px 0px #b9b9b9;
        font-size: 1.2rem;
    }

    .integrantex img {
        width: 26%;
    }

    .info-integrante {
        margin-left: 1em;
    }

    .info-integrante p{
        margin-top: .4em;
        text-align: left;
    }

    /*------------- Ayuda ---------------*/
    .preg-ayuda {
        padding-left: 6%;
        padding-right: 6%;
        text-align: left;
        font-size: 1.2rem;
    }


    
 /*----- NAVBAR----- */
    .navbar {
        flex-direction: column;
        padding:2rem 6% 1rem 6%;
    }
    .logo{
        width: 100%;
        justify-content: center;
    }

    .logo-texto{
        font-size: 2.3rem;
    }

    .logo-img{
        width: 5rem;
    }

    .nav-items {
        margin-top: 1rem;
    }
    .nav-items li {
        font-size: 1.5rem;
        margin: 0;
        padding-left: 0.4em;
        padding-right: 0.4em;
    }
    #nav2 {
        justify-content: center;
        padding: 1rem 6% 1rem 6%;
    }
    .nav-items2{
        flex-direction: column;
        width: 100%;
    }
    .nav-items2 li{
        margin-left: 0;
        font-size: 1.5rem;
    }
}