/* ------------------------------ RRETH NESH PHONE ------------------------------ */
/* Mobile view - default */
.desktop_rrethNesh {
  display: none;
}
.rrethNesh_content {
  display: block;
  background-color: #e86924;
  color: white;
  text-align: center;
  font-size: 20px;
  padding-top: 70px;
  z-index: 1;
}
.rrethNesh_content .rrethNesh_slide img {
  width: 100%;
}
.rrethNesh_content .rrethNesh_slide {
  transition: 0.7s;
}
.rrethNesh_content .prev_next a {
  cursor: pointer;
}
.rrethNesh_content .prev_next a:hover {
  color: black;
}
.rrethNesh_content .prev_next {
  padding: 2% 0 2% 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.rrethNesh_content .prev_next .prev {
  margin-left: 15%;
}
.rrethNesh_content .prev_next .next {
  margin-right: 15%;
}
.arrow {
  width: 30px;
  height: 30px;
}




/* ------------------------------ RRETH NESH DESKTOP ------------------------------ */
@media only screen and (min-width: 768px) {
  /* Hide mobile view on desktop */
  .rrethNesh_content {
    display: none;
  }
  #rrethNesh {
    display: none;
  }
  /* Show desktop view */
  .desktop_rrethNesh {
    display: flex;
    padding-bottom: 50px;
  }
  .desktop_rrethNesh img {
    width: 500px;
    height: 600px;
  }
  .desktop_rrethNesh .book-section .container .right figure {
    background-size: cover;
    background-position: center;
  }
  .book-section {
    height: 100vh;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 40px;
    text-align: center;
  }
  .book-section > .container {
    height: 75%;
    width: 100%;
    position: relative;
    transform: translateX(-50%);
    border-radius: 2%;
    margin-bottom: 30px;
    perspective: 1200px;
    transform: translateX(-50%);  
    margin-left: 55%;
  }
  .container > .right {
    position: absolute;
    height: 100%;
    width: 60%;
    transition: 0.7s ease-in-out;
    transform-style: preserve-3d;
  }
  .book-section > .container > .right {
    right: 0;
    transform-origin: left;
    border-radius: 8px 0 0 8px;
  }
  .right > figure.front,
  .right > figure.back {
    margin: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 200%;
    background-repeat: no-repeat;
    backface-visibility: hidden;
    background-color: white;
    overflow: hidden;
  }
  .right > figure.front {
    background-position: right;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 15px -2px rgba(0, 0, 0, 0.2);
  }
  .right > figure.back {
    background-position: left;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 2px 15px -2px rgba(0, 0, 0, 0.2);
    transform: rotateY(180deg);
  }
  .flip {
    transform: rotateY(-180deg);
  }
  .flip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: 0 8px 8px 0;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .book-section > button {
    border: 2px solid #e86924;
    background-color: transparent;
    color: #e86924;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s ease-in-out;
  }
  .book-section > button:focus,
  .book-section > button:active {
    outline: none;
  }
  .book-section > p {
    color: rgba(0, 0, 0, 0.7);
    font-family: calibri;
    font-size: 24px;
  }
  .book-section > p > a {
    text-decoration: none;
    color: #e86924;
  }
  .book-section > button:hover {
    background-color: #e86924;
    color: #fff;
  }
  .front#cover,
  .back#back-cover {
    background-color: #e86924;
    font-family: calibri;
    text-align: left;
    padding: 0 30px;
  }
  .front#cover h1 {
    color: #fff;
  }
  .front#cover p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
  }
}