@keyframes borderMove {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.list-box {
	padding: 1rem;
	margin: 0.5rem 0;
	border-left: 5px solid #1150ff;
	border-radius: 10px;
	background-color: #fffbef;
	transition: 0.3s ease-in-out;
}
.list-box:hover {
	background-color: #1d77ec;
	color: white;
	transform: translateY(-3px);
	transform: translateX(5px);
}

.books-background {
	background-color: white;
	background-image: url("../../assets/images/background-books-bw.png");
	background-blend-mode: multiply;
}
body {
	background-color: white;
	background-image: url("../../assets/images/background-books-bw.png");
	background-blend-mode: multiply;
}
.container-scroll {
	overflow-y: auto;
	height: auto;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE 10+ */
}

.scrollable-hidden::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Edge */
}

@media (max-width: 767px) {
	.container-scroll {
		overflow-y: none;
		height: auto;
	}
}

/* ici  color  */
.bg-ici {
	background-color: #009ad9;
}
.text-ici {
	color: #009ad9;
}
.lmc-hero {
	background-image: url("../images/banner-books.jpg");
	background-size: cover;
	background-position: center center;
	position: relative;
	color: #fff;
}
.lmc-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}
.lmc-hero .hero-inner {
	position: relative;
	z-index: 2;
}
.lmc-hero .hero-title {
	color: #fff;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.lmc-hero .hero-sub {
	color: #f8f9fa;
}
.lmc-hero .hero-cta .btn {
	min-width: 160px;
}
@media (min-width: 768px) {
	.lmc-hero {
		padding: 5.5rem 0;
	}
}
@media (max-width: 767px) {
	.lmc-hero {
		padding: 3rem 0;
	}
}

a {
	position: relative;
	text-decoration: none; /* remove default underline */
	color: inherit; /* keeps the current text color */
}

a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px; /* adjust how far the line is from text */
	width: 100%;
	height: 2px; /* thickness of underline */
	background-color: currentColor; /* uses text color */
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease;
}

a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
