/* VARIABLES */
:root {
	--font-size: ;
	--black: #000;
	--grey: #969797;
	--blue: #002D74;
	--swiper-theme-color: #000;
	--color-muted: rgba(0,0,0,.3);
	/* Bootstrap variables rewrite */
}

/* TYPEFACES */
@font-face {
	font-family: 'Graphik';
	src: url('../fonts/graphik-regular-webfont.woff2') format('woff2'),
		 url('../fonts/graphik-regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Graphik';
	src: url('../fonts/graphik-regularitalic-webfont.woff2') format('woff2'),
		 url('../fonts/graphik-regularitalic-webfont.woff') format('woff');
	font-weight: normal;
	font-style: italic;

}
@font-face {
	font-family: 'Graphik';
	src: url('../fonts/graphik-semibold-webfont.woff2') format('woff2'),
		 url('../fonts/graphik-semibold-webfont.woff') format('woff');
	font-weight: 700;
	font-style: normal;

}

/* GENERAL */
body {
	font-family: 'Graphik', system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #FFF;
	color: #000;
	font-size: 1.1rem;
	line-height: 1.5;
	min-height: 100vh;
}

.page-wrap{
	padding:5rem 0;
}
	@media (max-width: 991.98px) {
		.page-wrap{
			padding:1.5rem 0;
		}
	}
	
.container-fluid{
	padding-right: calc(var(--bs-gutter-x) * 1);
	padding-left: calc(var(--bs-gutter-x) * 1);
}
	@media (max-width: 991.98px) {
		.container-fluid{
			padding-right: calc(var(--bs-gutter-x) * .5);
			padding-left: calc(var(--bs-gutter-x) * .5);
		}
	}

:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}
a {
	color: var(--blue);
	text-decoration: none;
}
img {
	max-width: 100%;
}
/* HELPERS */
hr{
	border-color:rgba(0,0,0,.3);
}
.color-muted{
	color:var(--color-muted);
}
.img-full{
	width:100%;
	height:auto;
}
.titulo-xxl {
	font-size: 7.813rem;
	font-weight: normal;
	line-height: 1.1;
	letter-spacing: -0.02em;
}
.titulo-xl {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
	font-size: 5.375rem;
	font-weight: normal;
	line-height: 1.07;
	letter-spacing: -0.02em;
}
.titulo-l {
	font-size: 4.063rem;
	font-weight: normal;
	line-height: 1;
	letter-spacing: -0.02em;
}
.titulo-m {
	font-size: 3.438rem;
	font-weight: normal;
	line-height: 1.28;
	letter-spacing: -0.02em;
}
.titulo-s {
	font-size: 2.375rem;
	font-weight: normal;
	line-height: 1.15;
}

.text{
	font-size:1rem;
	line-height:1.35;
}
.text-s{
	font-size:0.875rem;
	line-height:1.3;
}
.text-m{
	font-size:1.25rem;
	line-height:1.7;
}
@media (max-width: 1400px) {
	html {
		font-size: 90%;
	}
}

@media (max-width: 991.98px) {
	.titulo-xxl{
	}
	.titulo-xl{
		font-size:2.8rem;
		line-height: 1;
	}
	.titulo-l{
		font-size: 2.2rem;
		line-height: 1;
	}
	.titulo-m{
	}
	.titulo-s{
	}
}

/* HEADER */
.main-header{
	background:transparent;
	padding:10px 0;
	transition: all 0.3s ease; 
}
	.body:not(.page-home) .main-header,
	.main-header.scrolled {
		background-color: #FFF;
	}
	.main-header-wrap{
		display:flex;
		justify-content:space-between;
		align-items:center;
		width:100%;
		position:relative;
		/* In case the logo is positioned "absolute" */
		min-height: 85px;
	}
	@media (max-width: 991.98px) {
		.main-header-wrap{
			display:flex;
			justify-content:space-between;
			flex-direction: row-reverse;
			align-items:center;
		}
	}
		/* Main header logo */
		.main-header-logo{
			flex:0 0 280px;
			text-decoration:none;
			font-size:14px;
			/* Enforce the title being centered regardless of other navbar item sizes */
			position: absolute;
			top: 0;
			left: 50%;
			transform: translateX(-50%);
		}
			/* White/Black logo switching */
			.main-header-logo #site-logo-black {
				display: none;
			}

			.main-header-logo .scrolled #site-logo-black {
				display: block;
			}

			.main-header-logo .scrolled #site-logo-white {
				display: none;
			}

			@media (max-width: 991.98px) {
				.main-header-logo{
					flex:0 0 70%;
					font-size:10px;
					z-index:9999;
				}
					.main-header-logo svg{
						max-width:113px;
					}
			}
			.main-header-logo svg path{
				fill:#FFF;
				transition: all .3s ease;
			}
				body:not(.page-home) .main-header .main-header-logo svg path,
				body.menu-open .main-header .main-header-logo svg path,
				.main-header.scrolled .main-header-logo svg path{
					fill:#002D74;
				}
			.main-header-logo span{
				display:block;
				text-align:center;
				color:#979797;
				margin-top:3px;
			}
			@media (max-width: 991.98px) {
				.main-header-logo span{
					text-align:left;
					margin-top:0;
				}
			}
			
		/* Main header button */
		.main-header-btn{
			display:flex;
			gap:6px;
			align-items:center;
			text-decoration:none;
			flex:0 0 20%;
		}
			@media (min-width: 992px) {
				.main-header-btn{
					display:flex;
					gap:6px;
					align-items:center;
					text-decoration:none;
					flex:0 0 20%;
					opacity:0;
					pointer-events:none;
				}
					.main-header.scrolled .main-header-btn{
						opacity:1;
						pointer-events: all;
						z-index:9999;
					}
			}
			@media (max-width: 991.98px) {
				.main-header-btn{
					gap:0;
					align-items:center;
					justify-content:flex-end;
					flex:0 0 30%;
					z-index:9999;
				}
			}
			.main-header-btn .btn-nav-icon{
				height:14px;
				width:14px;
				display:block;
				position:relative;
			}
				.main-header-btn .btn-nav-icon span{
					width:14px;
					height:1px;
					background:#FFF;
					position:absolute;
					top:2px;
					left:0;
					border-radius:100px;
					transition: all .3s ease;
				}
					body:not(.page-home) .main-header .main-header-btn .btn-nav-icon span,
					body.menu-open .main-header .main-header-btn .btn-nav-icon span,
					.main-header.scrolled .main-header-btn .btn-nav-icon span{
						background:#000;
					}
					.main-header-btn .btn-nav-icon span:nth-child(2){
						top:6px;
					}
					.main-header-btn .btn-nav-icon span:nth-child(3){
						top:10px;
					}
				@media (max-width: 991.98px) {
					.main-header-btn .btn-nav-icon{
						height:24px;
						width:24px;
					}
						.main-header-btn .btn-nav-icon span{
							width:24px;
							height:2px;
							top:2px;
	
						}
							.main-header-btn .btn-nav-icon span:nth-child(2){
								top:9px;
							}
							.main-header-btn .btn-nav-icon span:nth-child(3){
								top:16px;
							}
				}
			.main-header-btn .btn-nav-text{
				font-size:1rem;
				line-height:1.35;
				color:#FFF;
				transition: all .3s ease;
			}
				@media (max-width: 991.98px) {
					.main-header-btn .btn-nav-text{
						display:none;
					}
				}
				.main-header.scrolled .main-header-btn .btn-nav-text{
					color:#000;
				}
		/* Main header prenav */
		.main-header-prenav{
			display:flex;
			flex-direction: column;
			flex:0 0 20%;
			position:absolute;
			top:50%;
			left:0;
			transform:translateY(-10px);
		}
			.main-header.scrolled .main-header-prenav{
				display:none;
			}
			.main-header-prenav a{
				color:#FFF;
				text-decoration:none;
				margin-bottom:.2rem;
				transition: all .3s ease;
			}
			body:not(.page-home) .main-header-prenav a,
			body.menu-open .main-header-prenav a{
				color:rgba(0,0,0,.4);
			}
				body:not(.page-home) .main-header-prenav a:hover,
				body:not(.page-home) .main-header-prenav a.active,
				body.menu-open .main-header-prenav a:hover,
				body.menu-open .main-header-prenav a.active{
					color:rgba(0,0,0,1);	
				}
		@media (max-width: 991.98px) {
			.main-header-prenav{
				display:none!important;
			}
		}
		
		/* Main header search */
		.main-header-search{
			display:flex;
			text-decoration:none;
			flex:0 0 20%;
			justify-content:flex-end;
		}
			@media (max-width: 991.98px) {
				.main-header-search{
					display:none;
				}
			}
			.main-header-search-btn{
				display:flex;
				gap:10px;
				align-items:center;
				border-bottom:1px solid rgba(255,255,255,.25);
				text-decoration:none;
				padding:4px 0;
				transition: all .3s ease;
			}
				.main-header-search-btn:hover{
					border-bottom:1px solid rgba(255,255,255,1);
				}
				body:not(.page-home) .main-header .main-header-search-btn,
				body.menu-open .main-header .main-header-search-btn,
				.main-header.scrolled .main-header-search-btn{
					border-bottom:1px solid rgba(0,0,0,.5);
				}
					.main-header.scrolled .main-header-search-btn:hover{
						border-bottom:1px solid rgba(0,0,0,1);
					}
				.main-header-search .main-header-search__txt{
					font-size:1rem;
					line-height:1.35;
					color:#FFF;
					transition: all .3s ease;
				}
				body:not(.page-home) .main-header .main-header-search .main-header-search__txt,
				body.menu-open .main-header .main-header-search .main-header-search__txt,
				.main-header.scrolled .main-header-search .main-header-search__txt{
					color:#000;
				}
				.main-header-search .main-header-search__img path{
					fill:#FFF;
					transition: all .3s ease;
				}
					body:not(.page-home) .main-header .main-header-search .main-header-search__img path,
					body.menu-open .main-header .main-header-search .main-header-search__img path,
					.main-header.scrolled .main-header-search .main-header-search__img path{
						fill:#000;
					}
					
				
/* SEARCH LAYER */
.main-header-search .offcanvas-top{
	width:100vw!important;
	height:100vh!important;
	background:#002D74;
	color:#FFF;
}
	.search-results h5{
		color: rgba(255,255,255,.5);
		margin-bottom: 1.5rem;
	}
	.search-results ul{
		list-style:none;
		padding:0;
	}
		.search-results a{
			color: #FFF;
			text-decoration: none;
		}
	.card-search{
		
	}
	.card-search .card-search-img{
		flex: 0 0 80px;
		background: rgba(0,0,0,.2);
		border-radius:10px;
		display:flex;
		align-items:center;
		justify-content:center;
		margin-right:1rem;
		aspect-ratio:3/4;
	}
		.card-search .card-search-img img{
			max-width:65%;
			height:auto;
			display:block;
		}
		.card-search h3{
			font-weight:bold;
		}
	
	
/* MENU LAYER */
.offcanvas-nav{
	padding-top:75px;
}
	.offcanvas-nav .offcanvas-body{
		padding:0;
	}
.offcanvas-nav:before{
	content:'';
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	background:#FFF;
	z-index:-1;
}
.offcanvas-nav .navbar-nav .nav-item > .nav-link{
	padding:10px 0;
	padding-right: calc(var(--bs-gutter-x) * 1);
	padding-left: calc(var(--bs-gutter-x) * 1);
}
.has-submenu{}
	.sub-menu{
		height:100vh;
		width:400px;
		background:#FFF;
		position:absolute;
		top:0;
		visibility: hidden;
		left: 0px!important; /* Initially hide the subnav off-screen */
		transition: left 0.3s ease, visibility 0s linear 0.3s;
		overflow:scroll;
		z-index:-2;
		padding-top:85px;
		padding-right: calc(var(--bs-gutter-x) * 1);
		padding-left: calc(var(--bs-gutter-x) * 1);
	}
	.sub-menu.active{
		visibility:visible;
		left:400px!important;
		transition-delay: 0s;
	}
	
	@media (max-width: 991.98px) {
		.offcanvas-nav{
			width:100vw!important;
			padding-top:85px;
		}
		.offcanvas-nav .navbar-nav .nav-item > .nav-link{
			padding:10px 0;
			padding-right: calc(var(--bs-gutter-x) * .5);
			padding-left: calc(var(--bs-gutter-x) * .5);
			font-size: 2rem;
			text-align: right;
		}
		.has-submenu{
		}
		.submenu-close{
			padding:10px 0;
		}
		.sub-menu{
			width:100vw;
			z-index:1;
			left: -100vw!important;
			padding-top: 85px;
			opacity:1;
			padding-right: calc(var(--bs-gutter-x) * .5);
			padding-left: calc(var(--bs-gutter-x) * .5);
		}
		.sub-menu.active{
			left:0!important;
		}
	}

/* HERO HOME + SWIPER */
.hero-home{
	height:100vh;
	width:100vw;
}
.section-libros {
	overflow: hidden;
}
.swiper, .swiper-wrapper {
	overflow: visible;
}
.swiper-home{
	height:100%;
}
	.swiper-home .swiper-wrapper{
		height:100%;
	}
		.swiper-home .swiper-wrapper .swiper-slide{
			height:100%;
		}
			.swiper-home .swiper-wrapper .swiper-slide:before{
				content:'';
				display:block;
				position:absolute;
				top:0;
				left:0;
				width:100vw;
				height:100vh;
				/* background:rgba(0,0,0,.5); */
				/* background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.7) 100%);  */
			}
			.swiper-home .swiper-wrapper .swiper-slide .hero-home-img{
				object-fit:cover;
				height:100%;
				width:100%;
				object-position: center;
			}
			.swiper-home .swiper-wrapper .swiper-slide h2{
				position:absolute;
				bottom:20%;
				left:20px;
				color:#FFF;
				text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
			}
	.swiper-pagination-home{
		width:100%;
		display:flex;
		bottom:25px!important;
		padding:0 10px;
	}
		.swiper-pagination-home .swiper-pagination-bullet{
			flex:0 1 50%;
			border-radius:0;
			background:transparent;
			padding:20px;
			border-top:1px solid #FFF;
			border-bottom:1px solid #FFF;
			font-size:24px;
			color:#FFF;
			display:block;
			line-height:1;
			height:auto;
			text-align:left;
			margin:0 10px!important;
			position:relative;
		}
			.swiper-pagination-home .swiper-pagination-bullet-active{
				border-top:1px solid rgba(255,255,255,.5);
				border-bottom:1px solid rgba(255,255,255,.5);
			}
			.swiper-pagination-home .swiper-pagination-bullet h5{
				font-size:1rem;
				margin-bottom:.5rem;
			}
			.swiper-pagination-home .swiper-pagination-bullet p{
				font-size:1rem;
				margin-bottom:0;
			}
			.swiper-pagination-bullet:hover{
				color: #FFF !important;
				opacity: 1;
				transition: all .3s ease;
			}
			
	@media (max-width: 991.98px) {
		.swiper-home .swiper-wrapper .swiper-slide h2{
			position:absolute;
			top:6rem;
			left:15px;
			font-size:42px;
		}
		.swiper-pagination-home{
			flex-direction:column;
			flex-wrap:nowrap;
		}
			.swiper-pagination-home .swiper-pagination-bullet{
				width:100%!important;
				border-bottom:0;
				padding:.5rem 0;
			}
	}

	.swiper-pagination-home .swiper-progress-bar {
	  height: 1px; /* Adjust the height of the progress bar */
	  background-color: #FFF; /* Customize the progress bar color */
	  width: 100%;
	  transition: width 0.1s ease; /* Adjust the transition duration */
	  left:0;
	  top:-1px;
	  position:absolute;
	  z-index:3;
	  display:none;
	  transform-origin: left center;
	  transition: all 5s linear;
	}

	.swiper-pagination-home .swiper-pagination-bullet-active .swiper-progress-bar{
		display:block;
		animation: progress 5s linear both;
	}

	@keyframes progress {
		0%{
			transform: scaleX(0);
		}
		100%{
			transform: scaleX(1);
		}
	}
	
	
/* SECTION GLOBAL */
.section{
	padding:3rem 0 7.5rem 0;
}
	.section .section-pretitle{
		font-size:1rem;
		color:#979797;
	}
	.section .container-fluid{
		/* max-width:1600px; */
	}
	.section-title{
		margin-bottom:3rem;
	}
	@media (max-width: 991.98px) {
		.section{
			padding:1.5rem 0 2rem 0;
		}
			.section .section-pretitle{
				font-size:1rem;
			}
			.section-title{
				margin-bottom:1.5rem;
			}
	}
	
.page-header{
	padding:11rem 0 3rem 0;
}
	.page-header nav{
		margin-bottom:0;
		color:rgba(0,0,0,.4);
	}
	.page-header a{
		color:rgba(0,0,0,.4);
		text-decoration:none;
		transition: all .3s ease;
	}
		.page-header a:hover,
		.page-header a.active{
			color:rgba(0,0,0,1);
		}
	.page-header p{
		color:rgba(0,0,0,.4);
		padding:0;
		margin:0;
	}
	.page-header-breadcrumbs{
		border-bottom:1px solid rgba(0,0,0,.1);
		padding-bottom:1rem;
	}
	@media (max-width: 991.98px) {
		.page-header{
			padding:5rem 0 1rem 0;
		}
	}
	
/* PAGINATION */
.pagination{
	padding:8rem 0 0 0;
}
	.page-item .page-link{
		border-radius:0!important;
		border-left:0!important;
		border-right:0!important;
		margin:0 8px;
		padding:14px 0;
		width:70px;
		text-align:center;
		color:rgba(0,0,0,.4);
		border-color:rgba(0,0,0,.1);
		transition: all .3s ease;
	}
	.page-item.active .page-link,
	.page-item a.page-link:hover{
		background:transparent;
		color:rgba(0,0,0,1);
		border-bottom-color:rgba(0,0,0,1);
	}
	.page-item.disabled .page-link{
		background:transparent;
		opacity:.3;
	}

/* SECTION LINKS */
.section-links__nav {
	max-width: 70vw;
	display: flex;
	flex-wrap: wrap;
}
.section-links a {
	font-size:4.063rem;
	line-height: 1.23;
	color:#000;
	text-decoration:none;
	position: relative;
	margin-right: 60px;
	display: block;
}
.section-links-small a {
	margin-right: 40px;
}
	.section-links a:after{
		content:'/';
		padding:0 10px;
		position: absolute;
		top: 50%;
		right: -55px;
		transform: translateY(-50%);
		color:#979797;
	}
	.section-links-small a:after {
		right: -37px;
	}
	.section-links a.no-after:after {
		content: none;
	}
	.section-links-small{
		padding-bottom:4.5rem;
	}
		.section-links-small a{
			font-size:2.125rem;
			line-height: 1.31;
		}
		
	@media (max-width: 991.98px) {
		.section-links__nav {
			max-width: 100%;
		}
		.section-links a{
			font-size:1.8rem;
			line-height: 1.15;
			color:#000;
			text-decoration:none;
			margin-right: 30px;
		}
		.section-links a:after {
			right: -30px;
		}
	}
	
/* SECTION AUTHOR */
.card-author{
	position:relative;
	aspect-ratio: auto 3/4;
	width:100%;
}
	.card-author:before{
		content:'';
		display:block;
		position:absolute;
		top:0;
		left:0;
		bottom:0;
		right:0;
		background: rgb(0,0,0);
		background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%); 
	}
	.card-author .card-author-title{
		color:#FFF;
		position:absolute;
		margin:0;
		top:0;
		left:0;
		padding:30px;
	}
	.card-author .card-author-img{
		object-fit:cover;
		height:100%;
		width:100%;
	}
	.card-author .card-author-txt{
		color:#FFF;
		position:absolute;
		padding:30px;
		bottom:0;
		left:0;
		margin:0;
	}

/* Mostrar 5 items en una row en devices lg (usado en colecciones) */
@media (min-width: 992px) {
	.col-lg-5-items {
		flex: 0 0 auto;
		width: 20%;
	}
}
.coleccion-container {
	background:#FFF;
	text-decoration:none;
	color:#000;
}
	.coleccion-img {
		position:relative;
		aspect-ratio: auto 3/4;
		width:100%;
		display:flex;
		align-items:center;
		justify-content:center;
		border-radius:5px;
	}
		.coleccion-img img{
			max-height:75%;
			max-width:75%;
			transition: all .3s ease;
			/* box-shadow: 0px 10px 22px -18px rgba(0,0,0,0.75); */
		}
		.coleccion-img:hover img {
			transform: scale(1.025);
			/* box-shadow: 0px 10px 40px -18px rgba(0,0,0,0.5); */
		}
	.coleccion-title{
		margin-top:.75rem;
		font-size:1.25rem;
		margin-bottom:.5rem;
	}
	.coleccion-txt{
		font-size:1rem;
		margin-bottom:1rem;
		color:#979797;
		text-align: justify;
	}

.card-libro{
	background:#FFF;
	text-decoration:none;
	color:#000;
}
	.card-libro-img{
		position:relative;
		aspect-ratio: auto 3/4;
		background:#F3F5F5;
		width:100%;
		display:flex;
		align-items:center;
		justify-content:center;
		border-radius:5px;
	}
		.card-libro-img img{
			max-height:75%;
			max-width:75%;
			transition: all .3s ease;
			box-shadow: 0px 10px 22px -18px rgba(0,0,0,0.75);
		}
		.card-libro-img:hover img {
			transform: scale(1.025);
			box-shadow: 0px 10px 40px -18px rgba(0,0,0,0.5);
		}
	.card-libro-title{
		margin-top:.75rem;
		font-size:1.25rem;
		margin-bottom:.5rem;
	}
	.card-libro-edition{
		font-size:1.1rem;
		color:#979797;
		margin-bottom:.5rem;
	}
	.card-libro-txt{
		font-size:1rem;
		margin-bottom:1rem;
		color:#979797;
	}
	
/* SLIDER AUTHOR */
.swiper-pagination-author{
	width:100%;
	display:flex;
	background:#FFF;
	gap:10px;
}
	.swiper-pagination-author .swiper-pagination-bullet{
		flex:0 1 50%;
		border-radius:0;
		background:transparent;
		border-top:1px solid #000;
		border-bottom:1px solid #000;
		font-size:1rem;
		color:#000;
		display:block;
		line-height:1;
		height:auto;
		text-align:center;
		margin:0!important;
		position:relative;
		padding:.8rem 0;
	}
		.swiper-pagination-author .swiper-pagination-bullet-active{
			border-top:1px solid rgba(0,0,0,.2);
			border-bottom:1px solid rgba(0,0,0,.5);
		}

			.swiper-pagination-author .swiper-pagination-bullet span{
				font-size:1rem;
				margin-bottom:0;
			}

			.swiper-pagination-author .swiper-progress-bar {
  				height: 1px; /* Adjust the height of the progress bar */
  				background-color: rgba(0,0,0,.5); /* Customize the progress bar color */
  				width: 100%;
  				transition: width 0.1s ease; /* Adjust the transition duration */
  				left:0;
  				top:-1px;
  				position:absolute;
  				z-index:3;
  				display:none;
  				transform-origin: left center;
  				transition: all 5s linear;
			}

					.swiper-pagination-author .swiper-pagination-bullet-active .swiper-progress-bar{
						display:block;
						animation: progress 5s linear both;
					}
					
	
	.section-navigation-btns{
		display:flex;
		align-items:center;
		background:#F3F5F5;
		border-radius:100px;
		padding:0 5px;
	}
	.section-navigation-btn{
		padding:6px 15px 12px 15px;
	}
	.section-navigation-btn.swiper-button-disabled{
		opacity:.3;
	}
	
/* SECTION CTA */
.section-cta{
	padding:1.5rem 15px;
	/*margin:3rem 0 6.5rem 0;*/
	margin:0;
	aspect-ratio: auto 16/9;
	position:relative;
	color:#FFF;
	background-repeat:no-repeat;
	background-position:center center;
	background-size: cover;
}
	.section-cta:before{
		content:'';
		display:block;
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
		background:rgba(0,0,0,.5);
		background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.7) 100%); 
		z-index:1;
	}
	.section-cta .container-fluid{
		z-index:2;
		position:relative;
	}
	.section-cta-inner{
		max-width:35%;
	}
	.section-cta-title{
		margin-bottom:2rem;
	}
	@media (max-width: 991.98px) {
		.section-cta-inner{
			max-width:100%;
		}
		.section-cta-title{
			margin-bottom:1rem;
		}
	}
	
.section-filters{}
	.section-filters-inner{
		border-top:1px solid rgba(0,0,0,.1);
		border-bottom:1px solid rgba(0,0,0,.1);
		padding:15px 0;
		align-items: center;
	}
	.section-filters-inner img{
		flex:0 0 17px;
	}
	.section-filters-inner img.img-filters-author{
		flex:0 0 13px;
	}
	
/* FOOTER */
.main-footer{
	background:#002D74;
	color:#FFF;
	padding:1.5rem 0 1rem 0;
	font-size:1rem;
	line-height:1.75;
}
	.main-footer a{
		color:#FFF;
		text-decoration:none;
	}
	.main-footer h5{
		color:rgba(255,255,255,.5);
		font-size:14px;
		margin-bottom:1rem;
	}
	.logo-footer{
		color:#979797;
		font-size:14px;
	}
		.logo-footer span{
			display:block;
			margin-top:5px;
		}
		
	.footer-newsletter{
		padding:3rem 0 8rem 0;
	}
		.footer-newsletter h3{
			margin-bottom:2rem;
			font-size:2.125rem;
			line-height:1.1;
		}
		.input-group-newsletter{
			
		}
			.input-group-newsletter .form-control{
				border:0;
				border-bottom:1px solid rgba(255,255,255,.3);
				padding:.5rem 0;
				color:rgba(255,255,255,1);
				border-radius:0;
				background:transparent;
				font-size:24px;
				outline:none!important;
				box-shadow:none!important;
			}
				.input-group-newsletter .form-control::placeholder{
					color:rgba(255,255,255,.3);
				}
				.input-group-newsletter .form-control:focus{
				}
			.input-group-newsletter .btn{
				border-radius:0;
				border:0;
				border-bottom:1px solid rgba(255,255,255,.3);
				padding:0;
			}
		.form-check-newsletter{
			font-size:14px;
			color:#CED5D7;
		}
			.form-check-newsletter label{
				font-size:14px;
				color:rgba(255,255,255,.5);
			}
			.form-check-newsletter .form-check-input{
				width:12px;
				height:12px;
				top:2px;
				position:relative;
			}
	.footer-links{
		padding-bottom:5rem;
	}
	.footer-links nav {
		margin-bottom: 1rem;
	}
	.footer-legal{
		font-size:14px;
		border-top:1px solid rgba(255,255,255,.2);
		padding-top:.7rem;
	}
	.footer-legal-links {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	.footer-legal-links a {
		flex: 1; 
		text-align: center;
		margin-right: 15px; /* Ajusta el margen según tus necesidades */
	}
	.footer-legal-links a:last-child {
		margin-right: 0; /* Elimina el margen del último enlace */
	}
	
	@media (max-width: 991.98px) {
		.footer-legal-links {
			flex-direction: column;
		}
		.footer-legal-links a {
			margin-right: 0; /* Elimina el margen derecho en vista móvil */
			margin-bottom: 10px; /* Añade un margen inferior para separación vertical */
		}
		.footer-legal-links a:last-child {
			margin-bottom: 0; /* Elimina el margen inferior del último enlace */
		}
	}
/* PAGE BOOK */
.section-book-intro{
	background:#FFF;
	min-height: 100vh;
}
	.book-info{
		padding:11rem 40px 0 40px;
		background:#FFF;
	}
	.book-img{
		/* padding:11rem 0 5rem 0; */
		display: flex;
		align-items: center;
		justify-content: center;
		background:#F3F5F5;
		min-height: 100vh;
	}
		.book-img img {
			max-width: 100%;      /* La imagen no excederá el tamaño del contenedor */
			max-height: 100vh;    /* Limita la altura máxima a la altura de la ventana */
			height: auto;         /* Mantiene las proporciones de la imagen */
			width: auto;          /* Mantiene el ancho sin forzarla a estirarse */
			display: block;       /* Elimina el espacio blanco alrededor */
			margin: 0 auto;       /* Centra la imagen */
		}
	.book-cta{
		border-top:1px solid rgba(0,0,0,.1);
		border-bottom:1px solid rgba(0,0,0,.1);
		padding:1rem 0;
	}
		.book-cta a{
			text-decoration:none;
			color:#000;
			transition: all .3s ease;
		}
			.book-cta a svg{
				position:relative;
				top:-3px;
				margin-right:3px;
			}
		.book-cta span{
			color:#002D74;
			font-size:20px;
		}
		@media (max-width: 991.98px) {
			.book-info{
				padding:3rem 0;
				background:#FFF;
			}
			.section-book-intro .col-lg-7.text-center.d-flex {
				background-color: #F3F5F5;
			}
		}
		@media (min-width: 992px) {
			.section-book-intro .container-fluid {
				padding: 0;
				overflow:hidden;
			}
		}

	
.book-info h2 {
	color: var(--grey);
	font-size: 1.9rem;
	font-weight: normal;
	line-height: 1.15;
}	
.book-info h1,
.author-info h1 {
	font-size: 2.8rem;
	letter-spacing: -0.02em;
	line-height: 1.28;
}
.book-description p {
	font-size: 1.8rem;
	letter-spacing: -0.01em;
	line-height: 1.3;
	font-weight: normal;
	font-style: italic;
	color: var(--blue);
	margin-top: 4rem;
}
.book-description a{
	color:#979797;
	text-decoration:none;
	position:relative;
	transition:all .3s ease;
}
	.book-description a:hover{
		color:#000;
	}
	.book-description a svg{
		transition:all .3s ease;
		transform: translateY(-1px);
	}
	.book-description a:hover svg{
		transform: translateY(1px);
	}
		.book-description a:hover svg path{
			fill:#000;
		}
.section-book-tabs{
	padding:8rem 0 8rem 0;
}
	.book-tabs-nav{
		padding:0;
		margin:0;
		list-style:none;
		position: sticky;
		top: 90px;
	}
	.book-tabs-nav .nav-item{
		overflow:hidden;
		position:relative;
	}	
	.book-tabs-nav .nav-item .nav-link{
		color:#979797;
		position:relative;
		left:-4rem;
		transition: all .3s ease;
	}
		.book-tabs-nav .nav-link svg {
			transform: translateY(-10%);
		}
		.book-tabs-nav .nav-item .nav-link:hover,
		.book-tabs-nav .nav-item .nav-link.active{
			color:#000;
			left:0;
		}
		.tab-content{
			padding:0 40px;
		}
		.book-tags{
			margin:1rem 0 1.5rem 0;
		}
			.book-tags a{
				background:#F3F5F5;
				color:#002D74;
				padding:.2rem .75rem;
				border-radius:5px;
				margin-right:5px;
				font-size: 1rem;
				text-decoration:none;
				margin-bottom: 10px;
				display: inline-block;
			}
			
.table {
	border: 0px solid transparent;
}

.table td {
	border-bottom: 1px solid #CCC;
	padding: .4rem .7rem .7rem .5rem;
}		
			
@media (max-width: 991.98px) {
	.book-description p {
		margin-top: 1rem;
	}
	.section-book-tabs{
		padding:5rem 0 5rem 0;
	}
		.book-tabs-nav{
			margin-bottom:2rem;
		}
		.book-tabs-nav .nav-item{
		}	
		.book-tabs-nav .nav-item .nav-link{
			font-size: 1.8rem!important;
			left: -2rem;
		}
			.book-tabs-nav .nav-item .nav-link svg{
				max-width: 1.5rem;
			}
			.tab-content{
				padding:0;
			}
}
			
	.section-book-author{
		background:#F3F5F5;
	}
		.section-book-author-text{
			padding:20px 0;
		}
		.section-book-author h2{
			font-size:clamp(2rem, 5vw, 5.375rem);
			margin-bottom:2rem;
		}
		.section-book-author-btn{
			border-top:1px solid rgba(0,0,0,.1);
			border-bottom:1px solid rgba(0,0,0,.1);
			padding:1rem 0;
			padding-right:100px;
			color:#000;
			text-decoration:none;
			position:relative;
			transition: all .3s ease;
		}
			.section-book-author-btn svg{
				position:absolute;
				right:0;
				top:50%;
				transform:translateY(-50%)translateX(0);
				transition: all .3s ease;
			}
				.section-book-author-btn svg path{
					transition: all .3s ease;
				}
					.section-book-author-btn:hover svg path{
						fill:#000;
					}
				.section-book-author-btn:hover svg{
					transform:translateY(-50%)translateX(2px);
				}
				
/* SECTION DISTRI */
.section-distri{}
	.section-distri h3{
	}
	.section-distri h4{
		color:#979797;
		font-size:1rem;
		margin-bottom:2.5rem;
	}
	.section-distri hr{
		border-color: rgba(0,0,0,.2);
	}
	.section-distri a{
		color:#000;
	}
	
/* SECTION HISTORIA */
.section-historia{
	background:#F3F5F5;
	padding:5rem 0;
	margin-bottom:5rem;
}
	.card-historia{
		height:100%;
		display:flex;
		flex-direction:column;
		justify-content:space-between;
	}
		.card-historia p{
			margin:0;
		}
	
	.section-historia .swiper-slide{
		background:#FFF;
		border-radius:5px;
		padding:1.5rem;
		height:auto;
	}

/* DICTIONARY */
.section-destacados h5 {
	margin: 2rem 0;
}

.dictionary-filter{
	padding:.8rem 0 5rem 0;
}
	.dictionary-filter a{
		color:rgba(0,0,0,.3);
		transition: all .3s ease;
		text-decoration:none;
		border-bottom:1px solid transparent;
		padding:0 2px;
		font-size:1.5rem;
	}
		.dictionary-filter a:hover,
		.dictionary-filter a.active{
			color:rgba(0,0,0,1);
			border-bottom:1px solid #000;
		}
		
.dictionary-row{
	padding:1rem 0 4rem 0;
}
	.dictionary-row h5{
		font-size:125px;
		color:#000;
		line-height:1;
	}
	.dictionary-row a{
		color:#000;
		text-decoration:none;
		line-height:2;
		font-size:20px;
	}
	.dictionary-row a:hover {
		color: var(--blue);
		text-decoration: underline;
		text-decoration-color: #CCC;
		text-underline-offset: 5px;
		text-decoration-thickness: 1px;
	}
	
	
/* TEXT CONTENT */
.text-content{
	
}	
	.text-content h3{
		margin:1rem 0 2rem 0;
	}
	
/* CARD SELLOS */
.card-sello{
	text-align:center;
	text-decoration:none;
}
	.card-sello-img{
		background:#F3F5F4;
		margin-bottom:1rem;
		padding:1rem;
	}
		.card-sello-img img{
			mix-blend-mode: multiply;
		}
		
		
/* FORMS */
.form-control{
	background:#F3F5F5;
	border-color:#F3F5F5;
	border-bottom:1px solid rgba(0,0,0,.2);
	color:#000;
	border-radius:0;
	padding:.75rem 1rem;
}
.form-control::placeholder{
	color:rgba(0,0,0,.2);
}

.btn-wide{
	padding-right:2rem;
	padding-left:2rem;
}

.btn-oceano{
	background:#002D74;
	color:#FFF;
	border-color:#002D74;
	padding: .8rem 1.6rem .9rem 1.6rem;
	border-radius: 3px;
}
	.btn-oceano:hover{
		background:#0045B2;
		color:#FFF;
		border-color:#0045B2;
	}




/* MEDIA QUERIES */
/* Small oceanos (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* Medium oceanos (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large oceanos (desktops, 992px and up) */
@media (min-width: 992px) {}

/* Extra large oceanos (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* Extra large oceanos (extralarge desktops, 1400px and up) */
@media (min-width: 1400px) {}

/* Extra small oceanos (portrait phones, less than 576px) */
@media (max-width: 575.98px) {}

/* Small oceanos (landscape phones, less than 768px) */
@media (max-width: 767.98px) {}

/* Medium oceanos (tablets, less than 992px) */
@media (max-width: 991.98px) {}

/* Large oceanos (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}

/* Extra large oceanos (extralarge desktops, 1400px and up) */
@media (max-width: 1399.98px){}




/* Customizing the collapse transition */
.main-header .collapse {
  transition: width 0.5s ease-out;
  overflow: hidden;
  width: 0;
  height:100vh!important;
  background:green;
  left:300px;
}

.main-header .collapse.show {
  width: 100%;
}

.main-header .collapsing {
  width: 100%;
}


.section-filters-layer .select2-selection{
	border-radius:0!important;
	box-shadow: none!important;
	border-color:#E5E5E5!important;
}
.section-filters-layer .clear-field-select{
	border-radius:0!important;
	border-color:#E5E5E5!important;
	color:#979797!important;
}
	.section-filters-layer .clear-field-select:hover{
		background:#E5E5E5!important;
	}
	
	.select2-dropdown{
		border-color:#E5E5E5!important;
		border-radius:0!important;
	}
	.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected="true"]:not(.select2-results__option--highlighted),
	.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted{
	  color: #000!important;
	  background-color: #E5E5E5!important;
	}
	
	.btn-primary{
		border-radius:0!important;
		background: var(--blue)!important;
		border-color: var(--blue)!important;
		transition: all .3s ease;
	}
		.btn-primary:hover{
			opacity:.7;
		}