@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "cool";
  font-style: normal;
  font-weight: normal;
  src: url("../font/DkCoolCrayon-xJyV.ttf");
}

img {
  max-width: 100%;
  height: auto;
}

html,
body {
  height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: "Futura";
  font-weight: 500;
  font-size: 20px;
}

p {
  font-size: 14px;
  line-height: 25px;
  font-family: "Poppins", sans-serif;
}

.container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.main-info h1,
.nav-prev+p,
.meet-gang .sec-p,
.gang-info h4,
.buy-now,
.coming-soon,
.new-image .sec-p,
#page6 .sec-p,
.swiper-1-header h1,
.my-book-heading,
#page7 a,
.s-t,
.audio-para {
  font-family: "cool";
}

#page2,
.col,
.main-info,
.hello+p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.carousel-inner {
  overflow: visible;
}

#page2 {
  text-align: center;
}

.hello {
  color: #f8b527;
  font-size: 30px;
  margin: 10px 0;
  font-family: "cool";
}

.hello+p {
  flex-direction: column;
  row-gap: 3px;
}

#page3 {
  background-color: #fedb34;
}

#page3 img {
  width: 85%;
}

.our-gang .col-md-3>div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  align-items: center;
  gap: 40px;
}

/* swiper */
#page6 .swiper-container {
  width: 55%;
  height: 60%;
  margin-left: auto;
  margin-right: auto;
}

#page6 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: 100%;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 0.3s all;
  box-shadow: 0 0 20px #00000036;
  border-radius: 10px;
}

#page6 .swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) {
  opacity: 0;
}

#page6 .swiper-slide-prev,
#page6 .swiper-slide-next {
  opacity: 0.3;
}

#page6 .swiper-slide-active {
  transition: 0.3s all;
  opacity: 1;
  background: transparent;
  background-image: url("../images/boader.png");
  padding: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: none;
}

.footer-image:first-of-type {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
}

.footer-image:last-of-type {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 79%;
  width: 22%;
}

#page3,
#page5 {
  background-image: url("../images/whats-tales-wih-radhika-bg.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

#page3 h1,
#page5 h1,
#page7 h1,
#page4 h1,
.gang-info h4 {
  color: #d38d02;
}

.sec-p {
  font-size: 35px;
}

#page5>a {
  display: flex;
  justify-content: center;
}

#page6 h1 {
  color: #d59310;
  font-size: 35px;
}

#page6 h1+p {
  font-size: 27px;
}

.meet-gang {
  background-image: url("../images/whats-tales-wih-radhika-bg.jpg");
  background-size: cover;
}

.bookImage {
  transition: transform 1.5s;
  transform-style: preserve-3d;
  transform-origin: center;
}

.flip {
  transform: rotateY(360deg);
}

header {
  padding: 20px;
}

.img-anim {
  animation-name: bobbingAnim;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-play-state: running;
  -webkit-animation-name: bobbingAnim;
  -webkit-animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
}

.img-ziggle {
  animation-name: bobbingAnimRotate;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-play-state: running;
  -webkit-animation-name: bobbingAnimRotate;
  -webkit-animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
}

@keyframes bobbingAnim {
  0% {
    transform: translate(0px, 0px);
    animation-timing-function: ease-in-out;
  }

  50% {
    transform: translate(0px, 20px);
    animation-timing-function: ease-in-out;
  }

  100% {
    transform: translate(0px, 0px);
    animation-timing-function: ease-in-out;
  }
}

@-webkit-keyframes bobbingAnim {
  0% {
    -webkit-transform: translate(0px, 0px);
    -webkit-animation-timing-function: ease-in-out;
  }

  50% {
    -webkit-transform: translate(0px, 20px);
    -webkit-animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    -webkit-animation-timing-function: ease-in-out;
  }
}

@keyframes bobbingAnimRotate {
  0% {
    transform: translate(0px, 0px) rotateZ(0.001deg);
    animation-timing-function: ease-in-out;
  }

  50% {
    transform: translate(0px, 12px) rotateZ(10deg);
    animation-timing-function: ease-in-out;
  }

  100% {
    transform: translate(0px, 0px) rotateZ(0.001deg);
    animation-timing-function: ease-in-out;
  }
}

@-webkit-keyframes bobbingAnimRotate {
  0% {
    transform: translate(0px, 0px) rotateZ(0.001deg);
    animation-timing-function: ease-in-out;
  }

  50% {
    transform: translate(0px, 12px) rotateZ(10deg);
    animation-timing-function: ease-in-out;
  }

  100% {
    transform: translate(0px, 0px) rotateZ(0.001deg);
    animation-timing-function: ease-in-out;
  }
}

.play-video img {
  transition: transform 0.3s ease;
  width: 70%;
}

.play-video:hover img {
  animation: rotate 1s infinite linear;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.buy-now {
  position: relative;
  cursor: pointer;
  padding: 2px 35px;
  background: #f8b215;
  font-size: 35px;
  color: #fff;
  text-decoration: none;
  margin-top: 1rem;
  border-radius: 40px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.buy-now::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fedb34;
  z-index: 1;
  transition: width 0.3s ease;
}

.coming-soon {
  font-size: 38px;
  line-height: 29px;
  padding-top: 34px;
  color: #f8b215;
  font-weight: 800;
  text-align: center;
}

.buy-now:hover::before {
  width: 100%;
}

.buy-now:hover span {
  color: #000;
  z-index: 99999;
  position: relative;
}

#page6 .swiper-container {
  padding-bottom: 65px;
}

#page6 .swiper-button-next,
#page6 .swiper-button-prev {
  color: #d38d02;
}

.swiper-button-prev {
  background-image: url("../images/arrow-1.png");
  background-size: cover;
}

.swiper-button-next {
  background-image: url("../images/arrow-2.png");
  background-size: cover;
}

.side-image,
.side-image-1 {
  position: absolute;
  top: 17%;
  width: 31%;
}

.side-image {
  left: -26%;
}

.side-image-1 {
  right: -26%;
}

.swiper-container {
  position: relative;
}

.books-row {
  justify-content: center;
  gap: 2rem;
  margin-top: 40px;
}

.books-row .col-md-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
}

.books-row img {
  width: 80%;
}

.col-6.image.new-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audio-player {
  width: 65%;
  text-align: center;
}

.controls {
  margin-top: 10px;
}

.controls button {
  background: none;
  border: none;
  font-size: 50px;
  cursor: pointer;
}

/* Styles for range input */
.controls input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type="range"]::-webkit-slider-thumb {
  height: 50px;
  width: 50px;
  border-radius: 3px;
  background-image: url("../images/play-small.png");
  cursor: pointer;
  background-size: cover;
}

#seekBar,
#seekBarSecond,
#videoSeekBar,
#videoSeekBar1 {
  height: 5px;
  border-radius: 5px;
  background-color: #000;
}

input[type="range"]::-moz-range-thumb {
  height: 50px;
  width: 50px;
  border-radius: 3px;
  background-image: url("../images/play-small.png");
  cursor: pointer;
  background-size: cover;
  border: none;
  background-color: #0000;
}

input[type="range"]::-ms-thumb {
  height: 50px;
  width: 50px;
  border-radius: 3px;
  background-image: url("../images/play-small.png");
  cursor: pointer;
  background-size: cover;
}

input[type="range"].paused::-webkit-slider-thumb {
  background-image: url("../images/pause.png");
}

input[type="range"].paused:-ms-thumb {
  background-image: url("../images/pause.png");
}

input[type="range"].paused::-moz-range-thumb {
  background-image: url("../images/pause.png");
}

.audio,
.sub-audio {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.audio {
  width: 75%;
  background-color: #fff;
  border-radius: 15px;
}

.audio>img,
.audio>video {
  width: 25%;
  /* padding: 10px 0; */
  position: relative;
  right: 10px;
  border-radius: 8px;
}

.controls p {
  text-align: left;
}

.footer {
  background-image: url("../images/Stay-tuned-bg2.gif");
  background-size: 100% 100%;
  height: 550px;
}

.carousel-indicators {
  position: fixed;
  right: 0;
  left: unset;
  flex-direction: column;
  margin-right: 3%;
  align-items: end;
}

.carousel-indicators button[data-bs-target],
.first-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 1;
}

.carousel-indicators button:nth-child(2) {
  background-image: url("../images/banner-icon-1.png");
  background-size: cover;
}

.carousel-indicators button:nth-child(2).active {
  background-image: url("../images/1.png");
}

.carousel-indicators button:nth-child(3) {
  background-image: url("../images/banner-icon-2.png");
  background-size: cover;
}

.carousel-indicators button:nth-child(3).active {
  background-image: url("../images/2.png");
}

.carousel-indicators button:nth-child(4) {
  background-image: url("../images/banner-icon-3.png");
  background-size: cover;
}

.carousel-indicators button:nth-child(4).active {
  background-image: url("../images/3.png");
}

.carousel-indicators button:nth-child(5) {
  background-image: url("../images/banner-icon-4.png");
  background-size: cover;
}

.carousel-indicators button:nth-child(5).active {
  background-image: url("../images/4.png");
}

.girls-image {
  position: absolute;
  bottom: 0;
  z-index: 999;
  width: 50%;
  left: 50%;
  transform: translate(-50%);
}

.first-btn {
  background-image: url("../images/back.png");
  background-size: cover;
  position: inherit;
  left: 2%;
  bottom: 2%;
  z-index: 99;
}

.sub-audio .audio {
  z-index: 999;
  margin-top: 30px;
  padding: 12px 0;
}

#page7 a {
  letter-spacing: 1.5px;
  font-weight: 500;
  font-size: 17px;
}

.nav-prev+p {
  font-size: 20px;
  width: 400px;
  text-align: center;
}

.meet-gang .main-info h1 {
  color: #d38d02;
  margin-bottom: 20px;
  font-size: 30px;
}

.swiper-1-header h1 {
  color: #f8b725;
  margin-top: 30px;
}

.my-book-heading {
  color: #f8b725;
  margin-top: 40px;
}

.book-modal-btn {
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none !important;
}

.book-modal-btn img {
  transition: all 0.3s ease-in-out;
  width: 95%;
}

.book-modal-btn:hover img {
  transform: scale(1.05);
}

.book-modal-btn h3 {
  font-family: "cool";
  color: #f8b725;
  text-align: center;
  line-height: 1.2;
  font-size: 22px;
  margin-top: 10px;
}

.my-book-left-right img {
  position: relative;
  bottom: 90px;
  width: 80%;
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
    /* start */
  }

  50% {
    transform: translateY(-20px);
    /* move up */
  }

  100% {
    transform: translateY(0);
    /* back to start */
  }
}

.modal-book-header h2 {
  font-family: "cool";
  color: #f8b725;
  text-align: center;
  margin-top: 40px;
}

.book-modal {
  z-index: 9999999;
}

.book-modal .modal-body {
  padding: 0;
}

.book-modal .c-btn-close {
  position: absolute;
  bottom: 15px;
  left: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
}

.back-btn {
  position: absolute;
  bottom: 15px !important;
  left: 30px !important;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
}

.back-btn img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.book-modal .c-btn-close .btn-close {
  background-image: url('../images/back.png');
  background-size: 100%;
  width: 40px;
  height: 40px
}

.book-modal .c-btn-close .btn-close:focus {
  box-shadow: none;
}

.wild-banner,
.spark-banner {
  display: flex;
  justify-content: center;
  padding: 40px 40px 0px;
}

.comming-soon-img {
  width: 260px;
}

.wild-banner img,
.spark-banner img {
  width: 100%;
}

#wildModal .bookImage,
#sparkModal .bookImage {
  bottom: unset;
  width: 100%;
  animation: floatUpDown 3s ease-in-out infinite;
}

#wildModal h2 {
  margin-bottom: 40px;
  margin-top: 0;
}

#sparkModal h2 {
  margin-bottom: 40px;
  margin-top: 20px;
}

.e-m-w {
  font-size: 14px;
  /* font-family: "cool"; */
  text-align: center;
  font-family: "Poppins", sans-serif;
  line-height: 25px;
}

.e-m-w p {
  margin-bottom: 0;
}

.e-m-w span {
  font-weight: 600;
}



.meet-gang .sec-p {
  font-size: 25px;
}

.meet-gang img {
  width: 80%;
}

.our-gang {
  margin-top: 30px;
}

.new-image .sec-p {
  margin: 15px 0 30px;
  font-size: 25px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  text-align: none;
}

.img-group {
  position: relative;
}

.meet-gang img.bubble {
  position: absolute;
  top: 10%;
  width: 30%;
}

.meet-gang .our-gang .col-md-3:nth-child(1) .img-group img.bubble {
  right: 0;
}

.meet-gang .our-gang .col-md-3:nth-child(2) .img-group img.bubble {
  right: -10%;
  top: 14%;
}

.bubble {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.bubble.animate {
  opacity: 1;
  transform: scale(1);
}

.Wildernesslicious-para {
  width: 50%;
}

.mySwiper-1 {
  overflow-y: visible;
}

.swiper-1-header,
.Wildernesslicious-para {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Wildernesslicious-para {
  width: 100%;
}

.Wildernesslicious-para p {
  width: 85%;
}

.jal-gol img {
  position: relative;
  bottom: 90px;
  width: 75%;
}

.audio-para {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.audio-para i {
  cursor: pointer;
}

.swiper-button-disabled {
  filter: contrast(20%);
}

.swiper.mySwiper.swiper-fade.swiper-initialized.swiper-horizontal.swiper-pointer-events,
#MainCarousel,
.carousel-inner,
.carousel-item,
#page5 {
  height: 100%;
}

#page5 {
  height: auto;
}

.col {
  padding: 0;
  display: flex;
  align-items: last baseline;
}

.gang-info.gopi {
  position: relative;
  top: 3%;
}

#s-con-1 {
  padding-top: 0;
}

.btn-swiper {
  width: 5%;
}

.carousel-indicators button {
  z-index: 99999;
}

.s-t {
  margin-bottom: 0;
  font-size: 20px;
}

#page6 .container {
  max-width: 1100px;
}

.ken-burns-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  list-style-type: none;
}

.ken-burns-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.2);
  animation: kenburns 24s linear infinite;
}

.ken-burns-slideshow .slide:nth-child(1) {
  animation-delay: 0s;
}

.ken-burns-slideshow .slide:nth-child(2) {
  animation-delay: 6s;
}

.ken-burns-slideshow .slide:nth-child(3) {
  animation-delay: 12s;
}

.ken-burns-slideshow .slide:nth-child(4) {
  animation-delay: 18s;
}

.ken-burns-slideshow .slide:nth-child(5) {
  animation-delay: 24s;
}

.ken-burns-slideshow .slide:nth-child(6) {
  animation-delay: 30s;
}

.ken-burns-slideshow .slide:nth-child(7) {
  animation-delay: 36s;
}

.ken-burns-slideshow .slide:nth-child(8) {
  animation-delay: 42s;
}

.ken-burns-slideshow .slide:nth-child(9) {
  animation-delay: 48s;
}

.ken-burns-slideshow .slide:nth-child(10) {
  animation-delay: 54s;
}

.ken-burns-slideshow .slide:nth-child(11) {
  animation-delay: 60s;
}

.ken-burns-slideshow .slide:nth-child(12) {
  animation-delay: 66s;
}

.ken-burns-slideshow .slide:nth-child(13) {
  animation-delay: 72s;
}

.ken-burns-slideshow .slide:nth-child(14) {
  animation-delay: 78s;
}

.ken-burns-slideshow .slide:nth-child(15) {
  animation-delay: 84s;
}

.ken-burns-slideshow .slide:nth-child(16) {
  animation-delay: 90s;
}

.ken-burns-slideshow .slide:nth-child(17) {
  animation-delay: 96s;
}

.ken-burns-slideshow .slide:nth-child(18) {
  animation-delay: 102s;
}

.ken-burns-slideshow .slide:nth-child(19) {
  animation-delay: 108s;
}

.ken-burns-slideshow .slide:nth-child(20) {
  animation-delay: 114s;
}

.ken-burns-slideshow .slide:nth-child(21) {
  animation-delay: 120s;
}

.ken-burns-slideshow .slide:nth-child(22) {
  animation-delay: 126s;
}

.ken-burns-slideshow .slide:nth-child(23) {
  animation-delay: 132s;
}

.ken-burns-slideshow .slide:nth-child(24) {
  animation-delay: 138s;
}

.ken-burns-slideshow .slide:nth-child(25) {
  animation-delay: 144s;
}

.ken-burns-slideshow .slide:nth-child(26) {
  animation-delay: 150s;
}

.ken-burns-slideshow .slide:nth-child(27) {
  animation-delay: 156s;
}

.ken-burns-slideshow .slide:nth-child(28) {
  animation-delay: 162s;
}

#slide1 {
  background-image: url("../images/banner-1.jpg");
}

#slide2 {
  background-image: url("../images/banner-2.jpg");
}

#slide3 {
  background-image: url("../images/banner-3.jpg");
}

#slide4 {
  background-image: url("../images/banner-1.jpg");
}

#slide5 {
  background-image: url("../images/banner-2.jpg");
}

#slide6 {
  background-image: url("../images/banner-3.jpg");
}

#slide7 {
  background-image: url("../images/banner-1.jpg");
}

#slide8 {
  background-image: url("../images/banner-2.jpg");
}

#slide9 {
  background-image: url("../images/banner-3.jpg");
}

#slide10 {
  background-image: url("../images/banner-1.jpg");
}

#slide11 {
  background-image: url("../images/banner-2.jpg");
}

#slide12 {
  background-image: url("../images/banner-3.jpg");
}

#slide13 {
  background-image: url("../images/banner-1.jpg");
}

#slide14 {
  background-image: url("../images/banner-2.jpg");
}

#slide15 {
  background-image: url("../images/banner-3.jpg");
}

#slide16 {
  background-image: url("../images/banner-1.jpg");
}

#slide17 {
  background-image: url("../images/banner-2.jpg");
}

#slide18 {
  background-image: url("../images/banner-3.jpg");
}

#slide19 {
  background-image: url("../images/banner-1.jpg");
}

#slide20 {
  background-image: url("../images/banner-2.jpg");
}

#slide21 {
  background-image: url("../images/banner-3.jpg");
}

#slide22 {
  background-image: url("../images/banner-1.jpg");
}

#slide23 {
  background-image: url("../images/banner-2.jpg");
}

#slide24 {
  background-image: url("../images/banner-3.jpg");
}

#slide25 {
  background-image: url("../images/banner-1.jpg");
}

#slide26 {
  background-image: url("../images/banner-2.jpg");
}

#slide27 {
  background-image: url("../images/banner-3.jpg");
}

#slide28 {
  background-image: url("../images/banner-1.jpg");
}

@keyframes kenburns {
  10% {
    opacity: 1;
  }

  25% {
    opacity: 1;
    transform: scale(1);
  }

  40% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
  }
}

.ken-burns-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  text-align: center;
  width: 100%;
}

.text-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 40px;
  opacity: 0;
  animation: text-slide 24s linear infinite;
  font-family: "cool";
  color: #fff;
}

.text-slide:nth-child(1) {
  animation-delay: 0s;
}

.text-slide:nth-child(2) {
  animation-delay: 6s;
}

.text-slide:nth-child(3) {
  animation-delay: 12s;
}

.text-slide:nth-child(4) {
  animation-delay: 18s;
}

@keyframes text-slide {
  10% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }
}

.ken-burn-image {
  position: absolute;
  /* top: 3%; */
  top: 10%;
  left: 1%;
  width: 100%;
  display: flex;
  align-items: center;
}

.img-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 10%;
  animation: text-slide 24s linear infinite;
  margin: 0 10px;
}

.img-slide:nth-child(1) {
  animation-delay: 0s;
}

.img-slide:nth-child(2) {
  animation-delay: 6s;
}

.img-slide:nth-child(3) {
  animation-delay: 12s;
}

.img-slide:nth-child(4) {
  animation-delay: 18s;
}

.img-1,
.img-2 {
  position: relative;
  height: 40px;
  z-index: 99999;
}

.img-1 {
  left: 8%;
}

.img-2 {
  right: 8%;
}

.audio-timeStamp {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 5px;
}

#bg-music-play.playing {
  background-image: url(../images/paus.png);
  background-size: cover;
}

#bg-music-play {
  background-image: url(../images/ply.png);
  background-size: cover;
}

#bg-music-play {
  position: inherit;
  left: 2.2%;
  bottom: 13.5%;
  border: none;
  background-color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.active.first-btn {
  background-image: url(../images/back-active.png);
}

@media (min-width: 1200px) {
  h4 {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1275px;
  }
}

@media (max-width: 768px) {
  .main section h1 {
    font-size: 12vw;
  }

  img[src="images/butterfly.gif"],
  #page3 img {
    width: 50% !important;
  }

  #page3 .container>.row,
  #page5 .container>.row {
    flex-direction: column;
    align-items: center;
  }

  #page3 .container>.row>*,
  #page5 .container>.row>* {
    width: 100%;
  }

  #page5 {
    height: auto;
  }
}

@media (max-width: 480px) {
  .first-btn {
    position: static;
  }

  br {
    display: none;
  }

  .col,
  .col-6 {
    flex-basis: 100%;
  }

  #page7 .main-info p {
    width: 100% !important;
  }

  .footer-image:last-of-type {
    height: unset;
  }

  .img-anim img,
  .img-ziggle {
    width: 50%;
    margin-top: 1rem;
  }

  .hello+img {
    position: absolute;
    z-index: -1;
    top: -4%;
    right: 7%;
    rotate: 27deg;
  }

  .main-info {
    position: relative;
  }

  .our-gang {
    margin-top: 30px;
  }

  .gang-info h4 {
    font-size: 12vw;
  }

  #page7.footer {
    background-size: unset;
  }

  .sub-audio .audio {
    width: 100%;
  }

  .girls-image {
    width: 100%;
  }

  .carousel-indicators button[data-bs-target] {
    width: 40px;
    height: 40px;
    border: 1px solid #8fc4d2;
    position: relative;
    bottom: 20px;
  }

  html,
  body,
  #carouselExampleIndicators,
  .carousel-inner,
  .carousel-item,
  .carousel-item>div {
    width: 100%;
    height: 100%;
  }

  p {
    width: 100% !important;
  }

  .mySwiper-1 {
    overflow-y: visible;
  }

  .Wildernesslicious-para img {
    width: 100%;
  }

  .meet-gang img {
    width: 65%;
  }

  .meet-gang img.bubble {
    width: 17%;
  }

  .meet-gang .our-gang .col-md-3:nth-child(2) .img-group img.bubble {
    right: 10%;
    top: 19%;
  }

  .meet-gang .our-gang .col-md-3:nth-child(1) .img-group img.bubble {
    right: 15%;
  }

  .audio {
    flex-direction: column;
  }

  .audio-player {
    width: 90%;
  }

  .audio>img {
    width: 50%;
    border-radius: 0;
  }

  .sub-audio {
    margin-bottom: 50px;
  }

  .controls p.audio-para {
    text-align: center;
  }

  .new-image .sec-p {
    line-height: 45px;
  }

  .carousel-indicators {
    z-index: 999999;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: white;
    margin: 0;
    width: 100%;
  }

  .carousel-indicators>div {
    width: 100%;
    flex-direction: row !important;
    justify-content: space-evenly !important;
  }

  #page6 h1 {
    font-size: 6vw;
  }

  #page6 h1+p {
    font-size: 18px;
  }

  #page6 .swiper-container {
    width: 63%;
    overflow: hidden;
  }

  .jal-gol img {
    width: 50%;
    position: static;
  }

  .swiper-1-header {
    padding: 0 30px;
  }

  .books-row img {
    width: 60%;
  }

  .buy-now {
    margin-bottom: 30px;
    margin-top: 5px;
  }

  .carousel-inner {
    padding-bottom: 40px;
  }

  .play-video {
    display: flex;
    justify-content: center;
  }

  #page5 {
    height: auto;
  }

  .footer {
    background-position: 63rem 0;
  }

  .d-md-none:not(img) {
    height: 830px !important;
  }

  #bg-music-play {
    /* top: 3%; */
    top: 11%;
    left: unset;
    right: 3%;
  }

  .img-slide {
    width: 30%;
  }

  .text-slide {
    font-size: 7vw;
  }

  #page6 .swiper-container {
    padding-bottom: 0;
  }

  .img-2 {
    right: 4%;
  }

  .img-1 {
    left: 4%;
  }

  .my-book-left-right img {
    bottom: 25px;
  }

  #wildModal .bookImage,
  #sparkModal .bookImage {
    width: 50%;
  }

  .wild-banner,
  .spark-banner {
    padding: 30px 10px 10px;
  }

  .c-btn-close {
    bottom: 25px !important;
    left: 20px !important;
  }

  /* .c-btn-close .btn-close {
    width: 10px ;
    height: 10px;
  } */

  .book-modal .c-btn-close .btn-close {
    width: 40px;
    height: 40px;
  }

  .back-btn img {
  width: 40px;
  height: 40px;
}

  .book-modal-btn h3 br {
    display: block;
  }

  .modal-book-header h2 br {
    display: block;
  }

  .audio>img,
  .audio>video {
    width: 95%;
    margin: 0 auto;
    right: 0;
    left: 0;
    border-radius: 8px;
  }

  .books-row {
    margin-bottom: 20px;
  }


}


.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  color: white;
  padding: 9px 0;
  position: relative;
  white-space: nowrap;
  font-size: 16px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.marquee-text {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  /* animation: marqueeLeft 50s linear infinite;
  transform: translateX(50%); */
  color: black;
  font-family: 'Open Sans', sans-serif;
}

.marquee-text:hover {
  animation-play-state: paused;
}

.marquee-text a {
  color: rgb(221, 0, 0);
  text-decoration: none;
  font-weight: 600;
}

.marquee-text a:hover {
  color: rgb(160, 0, 0);
  text-decoration: underline;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(50%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Mobile styles - disable marquee */

@media (max-width: 745px) {
  .ken-burn-image {
    top: 12%;
  }
}


@media (max-width: 768px) {
  .marquee-container {
    text-align: center;
    padding: 5px 0;
    white-space: normal;
  }

  .marquee-text {
    animation: none;
    transform: none;
    display: block;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .ken-burn-image {
    top: 11%;
  }
  .marquee-container {
    height: max-content !important;
    padding: 0;
  }
  .marquee-text {
    font-size: 13px;
    padding-block: 10px;
  }
}