/* Estilos biblioteca de proyectos */

/* Estilos generales */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #00394d;
}

a {
  color: #ffe6f2;
  text-decoration: none;
}

a:hover {
  color: #ff80bf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
}


/* Header */

#header {
  z-index: 997;
  transition: all 0.5s;
  height: 80px;
  background: rgba(25, 28, 31, 0.8);
}

#header.header-scrolled {
  height: 80px;
  background: rgba(25, 28, 31, 0.8);
}



/* Barra de navegacion - Tamanyos grandes (desktop) */

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-projs: center;
}

.navbar li {
  position: relative;
}

.navbar-brand,
.navbar-brand:hover {
  display: flex;
  align-projs: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-family: "Permanent Marker", cursive;
  color: #d4c4cc;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-projs: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: #fff; 
  white-space: nowrap;
  transition: 0.3s;
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 28px;
  line-height: 0;
  margin-left: 5px;
  margin-right: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #f9c;
}


/* Barra de navegacion - Tamanyos pequenyos (dispositivos moviles) */

.mobile-nav-toggle {
  color: #ffe6f2;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(36, 41, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #ffe6f2;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 14px;
  color: #3b434a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #c06;
}

.navbar-mobile i {
  display: none;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


/* Estilos generales secciones */
section {
  padding: 80px 0;
}

.section-bg {
  background-color: white;
}

.section-head {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-head h1 {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #cc0066;
  position: relative;
  z-index: 2;
}

.section-head h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #0086b3;
  position: relative;
  z-index: 2;
}

.section-head p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-head h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-head h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

}



/* Seccion biblioteca - listado de proyectos*/

#biblioteca h1 {
  margin: 0 0 10px 0;
  font-size: 60px;
  font-family: "Permanent Marker", cursive;
  color: #c06;
  text-transform: uppercase;
}

#biblioteca h2 {
  color: #0086b3;
  margin-bottom: 30px;
  font-size: 44px;
  font-family: 'Caveat', cursive;
  letter-spacing: 1px;
}

.biblioteca #biblioteca-filtro {
  list-style: none;
  margin-bottom: 60px;
}

.biblioteca #biblioteca-filtro li {
  cursor: pointer;
  display: inline-block;
  margin: 0 10px 10px 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
  text-transform: uppercase;
  /*color: #444444;*/
  color: #00394d;
  transition: all 0.3s ease-in-out;
  border: 2px solid #fff;
}

.biblioteca #biblioteca-filtro li:hover,
.biblioteca #biblioteca-filtro li.filtro-activo {
  color: #cc0066;
  border-color: #cc006680;
}

.biblioteca .card {
	margin: 15px;
	padding: 5px;
	border-color: #c06;
	font-family: 'Raleway', sans-serif;
}

.biblioteca .card h3 {
	/*font-family: 'Raleway', sans-serif;*/
	color: #c06;
}

.biblioteca .card:hover {
	border-color: #c06;
	background-color: rgb(255, 230, 242);
	box-shadow: 5px 5px 15px lightgray;
}

.biblioteca .card .card-links a {
	font-size: 30px;
	margin: 10px;
	color: #0086b3;
}

.biblioteca .card .card-links a:hover {
	color: #c06;
}

.biblioteca .card .img-credit {
  font-size: 15px;
  font-style: italic;
  margin-top: 16px;
  color: #002533;
}

.biblioteca .card .img-credit a {
  color: #004b66;
  text-decoration: underline;
}


/* Footer */
#footer {
  color: #d8ddde;
  background-color: #00394d;
  font-size: 14px;
  padding: 50px 0;
  position: relative;
}

#footer .container {
  position: relative;
}

#footer h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer .footer-head h1 {
  font-size: 32px;
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
  color: #ff4d85aa;
}

#footer .footer-head h2 {
  font-size: 28px;
  font-family: 'Caveat', cursive;
  letter-spacing: 1px;
}

#footer .footer-head h3 {
  margin: 0 0 50px 0;
  font-size: 14px;
  opacity: 0.6;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer a {
  color: #d8ddde;
}

#footer .social-links {
  display: flex;
}

#footer .social-links i {
  font-size: 22px;
  margin: 0 10px 15px 0;
  display: flex;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  padding: 2px 0;
  margin-right: 4px;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

