@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --primary: #ffb8bf;
  --secondary: #c4e5f8;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

.df {
  display: flex;
}

.aic {
  align-items: center;
}

.ais {
  align-items: flex-start;
}

.aie {
  align-items: flex-end;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.frr {
  flex-direction: row-reverse;
}

.fw {
  flex-wrap: wrap;
}

.fnw {
  flex-wrap: nowrap;
}

.gap1 {
  gap: 1rem;
}

.gap2 {
  gap: 2rem;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1380px;
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #828288;
}

/* @font-face {
    font-family: 'Vampire Wars';
    src: url(../fonts/'VampireWars.eot');
    src: url(../fonts/'VampireWars.eot?#iefix') format('embedded-opentype'),
        url(../fonts/'VampireWars.woff2') format('woff2'),
        url(../fonts/'VampireWars.woff') format('woff'),
        url(../fonts/'VampireWars.ttf') format('truetype'),
        url(../fonts/'VampireWars.svg#VampireWars') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vampire Wars';
    src: url(../fonts/'VampireWars-Italic.eot');
    src: url(../fonts/'VampireWars-Italic.eot?#iefix') format('embedded-opentype'),
        url(../fonts/'VampireWars-Italic.woff2') format('woff2'),
        url(../fonts/'VampireWars-Italic.woff') format('woff'),
        url(../fonts/'VampireWars-Italic.ttf') format('truetype'),
        url(../fonts/'VampireWars-Italic.svg#VampireWars-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
} */

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar-brand img {
  max-height: 150px;
  transition: 0.3s ease-in-out;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  padding: 1rem 0 0.5rem;
  width: 100%;
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 3rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  padding: 0;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}

.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--white);
  transform-origin: center;
  transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}

.main-slider {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  background: url(../images/banner.jpg) center/cover no-repeat;
}

.main-slider .clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.clouds:after,
.clouds:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 300%;
  background-size: contain;
  background-position: 50%;
  background-repeat: repeat;
}

.clouds:before {
  background-image: url(../images/cloud-1.png);
  -webkit-animation: a 60s linear 0s infinite alternate;
  animation: a 60s linear 0s infinite alternate;
}

.clouds:after {
  background-image: url(../images/cloud-2.png);
  -webkit-animation: a 25s linear 0s infinite alternate;
  animation: a 25s linear 0s infinite alternate;
}

@-webkit-keyframes a {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(-100vw, 0, 0);
    transform: translate3d(-100vw, 0, 0);
  }
}

@keyframes a {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(-100vw, 0, 0);
    transform: translate3d(-100vw, 0, 0);
  }
}

.main-slider h2 {
  color: var(--white);
  font-size: 5rem;
  font-weight: 400;
  font-family: "Dancing Script";
}

.main-slider p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
}

.main-slider figure img {
  margin-bottom: -4rem;
}

.main-slider .shape1 {
  position: absolute;
  left: 30%;
  bottom: 8rem;
  animation: wobble infinite 5s;
}

.main-slider .circle {
  display: block;
  position: absolute;
  right: 5rem;
  height: 4rem;
  width: 4rem;
  top: 40%;
  background: var(--primary);
  animation: pulse infinite 2s;
  border-radius: 50%;
}

.main-slider .circle::before {
  content: "";
  height: 1.875rem;
  width: 1.875rem;
  border-radius: 50%;
  position: absolute;
  right: 4rem;
  top: 4rem;
  background-color: var(--primary);
  animation: hinge infinite 4s;
}

.main-slider .circle::after {
  content: "";
  height: 1.125rem;
  width: 1.125rem;
  border-radius: 50%;
  position: absolute;
  right: 6rem;
  top: 2rem;
  background-color: var(--secondary);
  animation: hinge infinite 6s;
}

.themeBtn {
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  padding: 0.9375em 1.75em;
  margin: 0.5rem 0;
  background: var(--primary);
  text-transform: capitalize;
  border-radius: 60px 60px 60px 0;
}

.themeBtn:hover {
  background: var(--secondary);
  border-radius: 0px 60px 0px 60px;
  color: var(--black);
  box-shadow: 0 0px 30px var(--primary);
}

.secHeading {
  color: var(--black);
  line-height: 1;
  position: relative;
  font-size: 5rem;
  font-weight: 400;
  font-family: "Dancing Script";
}

.socialIo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.socialIo li a {
  height: 3.125rem;
  width: 3.125rem;
  border-radius: 50%;
  line-height: 1;
  font-size: 1.125rem;
  display: inline-grid;
  place-items: center;
  color: var(--black);
  border: 1px solid var(--black);
}

.socialIo li a:hover {
  background-color: var(--black);
  color: var(--white);
}

.feather {
  animation: hinge infinite 5s;
}

/* About Section */

.aboutSec {
  background: url(../images/aboutBg.png) top/cover no-repeat;
  padding-top: 15rem;
  margin-top: -15rem;
}

.aboutSec p {
  color: #1e1e1e;
}

.aboutSec figure {
  position: relative;
  z-index: 1;
}

.aboutSec figure::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  height: 100%;
  width: 100%;
  bottom: -1.75rem;
  max-width: 475px;
  max-height: 460px;
  border-radius: 10px;
  z-index: -1;
  border: 2px solid var(--white);
}

.aboutSec figure img {
  border-radius: 17px;
}

/* Video Section */

.videoSec {
  background: url(../images/videoBg.png) top center/100% 100% no-repeat;
  padding-bottom: 15rem;
  z-index: 1;
}

.videoSec .secHeading {
  color: var(--white);
}

.videoImg {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 2rem 3.5rem;
  border: 4px solid var(--white);
  border-radius: 10px;
}

.videoImg img {
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

.videoImg span {
  height: 5rem;
  width: 5rem;
  background-color: var(--white);
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
  z-index: 1;
  border-radius: 50%;
  color: var(--primary);
  position: absolute;
  left: 50%;
  top: 50%;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 0 5px rgb(255 255 255 / 50%);
  transform: translate(-50%, -50%);
}

.videoImg:hover span {
  background-color: var(--primary);
  color: var(--white);
}

.videoSec .shape2 {
  position: absolute;
  left: 18rem;
  top: -4rem;
  animation: wobble infinite 5s;
}

.videoSec .shape3 {
  position: absolute;
  bottom: -2rem;
  left: 8rem;
  animation: shake infinite 5s;
}

/* upcomingBooks */

.upcomingBooks {
  padding-top: 15rem;
  margin-top: -10rem;
  background: url(../images/booksBg.png) top center/cover no-repeat;
}

.bookCard {
  padding: 1.75rem 1.75rem 0;
  text-align: center;
  border-radius: 10px;
  background: var(--white);
  margin-bottom: 2rem;
  box-shadow: 0 4px 22px rgb(0 0 0/10%);
}

.bookCard .imgWrap {
  display: block;
  overflow: hidden;
  box-shadow: 0 4px 11px rgb(0 0 0/16%);
  margin-bottom: 1rem;
}

.bookCard .imgWrap img {
  width: 100%;
}

.bookCard h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  margin: 0;
}

.bookCard .themeBtn {
  margin: 0 0 -1.5rem;
  transform: translateY(1rem);
}

.bookSlider .slick-next::before,
.bookSlider .slick-prev::before {
  content: none;
}

.bookSlider .slick-next {
  right: -10px;
}

.bookSlider .slick-prev {
  left: -10px;
}

.bookSlider .slick-next,
.bookSlider .slick-prev {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  font-size: 1rem;
  border-radius: 50%;
  z-index: 1;
  background: var(--primary);
}

.bookSlider .slick-next:hover,
.bookSlider .slick-prev:hover {
  background: var(--secondary);
}

/* reviewSec */

.reviewSec {
  background: #f6f5e1;
}

.reviewSec .secHeading {
  font-size: 3.75rem;
  margin-bottom: 2.5rem;
}

.reviewCard {
  display: flex !important;
  position: relative;
  gap: 2rem;
  width: 100%;
  z-index: 1;
}

.reviewCard .userWrap {
  padding: 1.75rem;
  width: 35%;
  text-align: center;
  border-radius: 10px;
  background: var(--white);
  position: relative;
}

.reviewCard .userWrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2rem;
  bottom: -2rem;
  border: 2px solid var(--primary);
  border-radius: 10px;
  width: 260px;
  z-index: -1;
  transform: translateX(-50%);
}

.reviewCard .userWrap::after {
  content: "";
  width: 50px;
  border: 2px solid #f6f5e1;
  position: absolute;
  left: 5rem;
  top: -2rem;
}

.reviewCard .userWrap img {
  border: 1px solid #bebebe;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 9px rgb(0 0 0/10%);
}

.reviewCard .userWrap h3 {
  font-size: 1.375rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--black);
}

.reviewCard .userWrap h3 span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.reviewCard .userWrap span i {
  color: #ec6600;
  font-size: 1.125rem;
}

.reviewCard .userReview {
  width: 65%;
}

.reviewCard .userReview i {
  color: var(--black);
  font-size: 3rem;
  display: inline-block;
}

.reviewCard .userReview i.fa-quote-left {
  margin-top: -2rem;
}

.reviewCard .userReview i.fa-quote-right {
  align-self: flex-end;
}

.reviewCard .userReview p {
  color: #0e121c;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.reviewSec .shape4 {
  position: absolute;
  right: 25rem;
  top: 2rem;
  animation: tada infinite 5s;
}

.reviewSec .shape5 {
  position: absolute;
  left: 20rem;
  bottom: -2rem;
  animation: pulse infinite 2s;
}

.slick-dots li button::before {
  display: none;
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -3rem;
}

.slick-dots li {
  border-radius: 50%;
  display: grid;
  margin: 0;
  place-items: center;
  border: none;
}

.slick-dots li button {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid var(--black);
}

.slick-dots li.slick-active button {
  background-color: var(--black);
}

/* articleSec */

.articleSec {
  background: url(../images/articleBg.png) top center/cover no-repeat;
  padding-bottom: 12rem;
}

.articleSec .shape6 {
  position: absolute;
  right: 0;
  top: -2rem;
  animation: pulse infinite 5s;
}

.articleCard {
  padding: 1.75rem;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 3px 20px rgb(0 0 0/13%);
}

.articleCard .imgWrap {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.articleCard .dateWrap {
  border-radius: 50%;
  display: grid;
  position: relative;
  place-items: center;
  text-align: center;
  background: var(--secondary);
  width: 70px;
  height: 70px;
  margin: -35px 10px 1.25rem;
}

.articleCard .dateWrap h2 {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.articleCard .dateWrap h2 span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
}

.articleCard h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.articleCard h3 .line {
  height: 2px;
  width: 20px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  background: var(--primary);
}

.articleCard p {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  margin: 0;
}

/* Footer CSS */

footer {
  position: relative;
  background: url(../images/footerBg.png) top center/cover no-repeat;
  padding-top: 12rem;
  margin-top: -10rem;
  text-align: center;
}

.links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin: 3rem 0;
}

.links li a {
  padding: 0;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
}

.contactInfo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin: 4rem 0 5rem;
}

.contactInfo li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  position: relative;
  background: #fb928e;
}

.contactInfo li a span strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.contactInfo li a span {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
}

.contactInfo li:first-child a {
  background-color: var(--secondary);
}

.contactInfo li:last-child a {
  background-color: #f6f5e1;
}

.contactInfo li:first-child a::before {
  border-color: var(--secondary);
}

.contactInfo li:last-child a::before {
  border-color: #f6f5e1;
}

.contactInfo li a::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: -1.25rem;
  bottom: -1.25rem;
  right: -1.25rem;
  border-radius: 50%;
  border: 2px dashed #fb928e;
}

.copyRight {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.copyRight p {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  color: var(--white);
}

.typeWritter {
  animation: text1;
}

.typeWritter {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  animation-duration: 20s;
  animation-timing-function: steps(30, end);
  animation-iteration-count: infinite;
}

.typeWritter::after {
  content: "|";
  position: absolute;
  right: 0;
  animation: caret infinite;
  animation-duration: 1s;
  animation-timing-function: steps(1, end);
}

@keyframes text1 {
  0%,
  50%,
  100% {
    width: 0;
  }
  10%,
  40% {
    width: 9em;
  }
}

@keyframes caret {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* InnerPages CSS */

.main-slider.inner-slider {
  max-height: 740px;
  z-index: 1;
  background: url(../images/inner-bg.png) bottom/cover no-repeat;
}

.aboutSec.aboutInnr {
  padding-bottom: 22rem;
}

.contactInner .shape,
.upcomingBooks.booksInner .shape,
.articleSec.articlesInner .shape,
.aboutSec.aboutInnr .shape {
  position: absolute;
  bottom: -3rem;
  left: 18rem;
  z-index: 1;
  animation: wobble infinite 5s;
}

.articleSec.articlesInner .shape5 {
  position: absolute;
  animation: wobble infinite 5s;
  left: 10rem;
  top: 50%;
}

.articleSec.articlesInner {
  padding-bottom: 18rem;
}

.articleSec.articlesInner .articleCard {
  margin-bottom: 2rem;
}

.articleSec.articlesInner .articleCard .dateWrap {
  background: var(--black);
}

.articleSec.articlesInner .articleCard .dateWrap h2 {
  color: var(--white);
}

.articleSec.articlesInner .articleCard h3 {
  color: #004080;
}

.articleSec.articlesInner .articleCard h3 .line {
  background: #004080;
}

.upcomingBooks.booksInner {
  padding-bottom: 15rem;
}

.upcomingBooks.booksInner .bookCard {
  margin-bottom: 4rem;
}

.booksInner .shape3 {
  position: absolute;
  left: 10rem;
  top: 60%;
  animation: wobble infinite 5s;
}

.booksInner .shape4 {
  position: absolute;
  right: 0;
  top: 50%;
  animation: wobble infinite 5s;
}

.contactInner {
  background: var(--primary);
  padding: 18rem 0;
  margin-top: -12rem;
}

.contactInner .secHeading {
  font-size: 3.75rem;
}

.infoList li a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-weight: 400;
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.infoList li a span {
  font-weight: 400;
  display: block;
}

.infoList li a span strong {
  display: block;
  font-weight: 500;
}

.formwrap {
  background: var(--white);
  border-radius: 10px;
  padding: 3rem;
}

.formwrap label {
  font-size: 1.125rem;
  font-weight: 400;
  display: block;
}

.formwrap .form-control {
  border-radius: 60px;
  height: 55px;
  border: 1px solid #acacac;
}

.formwrap textarea.form-control {
  height: 100px;
  border-radius: 20px;
}

.formwrap .themeBtn {
  width: 100%;
  border: 0;
  border-radius: 60px;
}
