/* .book__page-front > * {
  opacity: 0.3;
  box-shadow: none;
} */

.content-cards h5 {
  font-weight: 600;
  font-size: 80px;
  line-height: 51px;
  display: flex;
  letter-spacing: -0.05em;
  color: #FE8023;
  margin-bottom: 20px;
}

.content-cards h6 {
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
}

.content-cards p {
  font-size: 16px;
  line-height: 125%;
}

.cover {
  width: 616px;
  height: 312px;
  margin: 60px 0;
}

.page__content-text p, .page__content-blockquote-text{
  font-size: 10px;
}

.book {
  width: 100%;
  height: 100%;
  display: flex;
  /* column-gap: 15px; */
  perspective: 1200px;
}

.book__page {
  position: relative;
  display: grid;
  transform: rotateY(0deg);
  transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform-origin: 0% 0%;
  width: 308px;
  height: 312px;
  background: #FFF;
  background-image: linear-gradient(90deg, rgba(227,227,227,1) 0%, rgba(247,247,247,0) 18%);
  box-shadow: 2px 2px 3px #F0E5DB;
  border-radius: 8px;
  right: 0;
  z-index: 2;
}

.book__page--1{
  background-image: linear-gradient(270deg, rgba(227,227,227,1) 0%, rgba(247,247,247,0) 18%);
}

.book:after{
  content: '';
  width: 308px;
  height: 293px;
  background: #D4C8B5;
  position: absolute;
  top: 45px;
  right: -41px;
  z-index: 0;
  transform: rotate(7deg);
  border-radius: 8px;
  opacity: 0.5;
}

.book:before {
  content: '';
  width: 308px;
  height: 293px;
  background: #eee6da;
  position: absolute;
  top: 26px;
  right: -23px;
  z-index: 1;
  transform: rotate(3deg);
  border-radius: 8px;
  opacity: 0.7;
}

.book__page .content-cards {
  padding: 40px 50px 40px 20px;
}

div.book__page-front div.content-cards {
  padding: 40px 20px 40px 50px;
}

label.book__page.book__page--1 {
  border-right: 1px solid #d8d8d8;
}

.book__page {
  cursor: pointer;
}      
.book img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
    
.book__page--2, .book__page--3{
  position: absolute;
  right: 0;
  pointer-events: none;
  transform-style: preserve-3d;
  border-left: 1px solid #d8d8d8;
}

    
.book__page-front {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotateY(0deg) translateZ(1px);
  background: #fff;
  background-image: linear-gradient(90deg, rgba(227,227,227,1) 0%, rgba(247,247,247,0) 18%);
} 
.book__page-back {
  transform: rotateY(180deg) translateZ(1px);
}
 
.page__content-book-title {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #2A2935;
}
      
      
  .page__content-title {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  input[type="radio"] {
    display: none;
  }

  input[type="radio"]:checked+.book__page {
    transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: rotateY(-180deg);
    /* right: 15px; */
  }

