/*** Book type strcture styling ***/
.book-sec {
  --book-sec-gap: 56px;
  --book-item-img-width: 381px;
}

.book-sec>.view-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) calc(var(--book-item-img-width)*2) minmax(0, 1fr);
  grid-gap: var(--book-sec-gap);
  align-items: center;
}

.book-item {
  display: flex;
  width: 100%;
}

.book-item-content {
  display: none;
}

.book-col:not(.active) {
  cursor: pointer;
}

.book-item-img>div {
  overflow: hidden;
}

.book-item-img>div img {
  transition: transform 0.5s ease;
}

.book-col:not(.active) .book-item-img>div:hover img {
  transform: scale(1.03);
}

.book-col.active .book-item-content {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.book-item-content>div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  padding: 30px;
  transition: all 0.7s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.book-col.active .book-item-img {
  overflow: hidden;
}

.book-col .book-item-img {
  border: 1px solid var(--br-c2);
}

.book-col.active .book-item-img img {
  width: var(--book-item-img-width);
  object-fit: cover;
  transform: scale(1.05);
  transition: all 1s ease;
}

.book-col.center-book-active .book-item-img img {
  transform: scale(1);
}

.book-col.center-book-active .book-item-content>div {
  left: 0;
}

.book-col {
  width: 100%;
}

/*** END OF Book type strcture styling ***/
/*** Knowledge card ***/
.knowledge-content>*:not(:last-child) {
  margin-bottom: 20px;
}

.box-meta-title {
  text-transform: uppercase;
  font-size: var(--fs-px13);
  font-weight: 400;
  line-height: 1.10769230769;
  color: var(--black);
}

.box-desc.knowledge-desc {
  margin-bottom: 30px;
}

/*** END OF Knowledge card ***/
