/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Questrial&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #ff0000;
  --secondary: #333333;
}

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

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

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

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

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

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

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;
}

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

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */
/*
body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
} */

/* Main content default hidden for GSAP reveal */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  padding: 40px 0;
}

.logo-container {
  text-align: center;
  margin-top: 60px;
  position: absolute;
  left: 49%;
  top: 30%;
  transform: translate(-50%, -50%);
}

.logo-container img {
  max-width: 100%;
  width: 100%;
  height: 20rem;
  /* filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2)); */
}

/* Counter Styles - Now at bottom */
.counter-wrapper {
  text-align: center;
  margin-bottom: 60px;
  /* position: relative; */
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.counter {
  font-size: 30px;
  font-weight: 500;
  /* works now */
  color: #ffffff;
  letter-spacing: 2px;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.counter::after {
  /* content: '%'; */
  font-size: 40px;
  font-weight: 500;
  margin-left: 5px;
}

.tagline {
  font-size: 14px;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.tagline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

/* Loading Bar */
.loading-bar {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.loading-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  border-radius: 10px;
  background-color: #052c30;
  font-size: 20px;
  color: var(--white);
  text-transform: inherit;
  font-weight: 400;
  display: inline-block;
  padding: 1rem 3rem;
  line-height: normal;
}

.themeBtn:hover {
  background: #000;
  color: #fff;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

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

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 65%;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.625rem;
  font-family: "Archivo";
  color: #818181;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0 0;
  display: inline-block;
  transition: color 0.4s ease-in-out;
  position: relative;
}

.navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  background: #0c484e;
  width: 0;
  height: 3px;
  bottom: -7px;
  left: 0;
  transition: all 0.5s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover::before {
  color: #052c30;
  width: 100%;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #052c30;
}

a.navbar-brand h2 {
  color: #052c30;
  font-size: 40px;
  font-weight: 400;
  font-family: "Archivo";
  margin-left: 6rem;
}

ul.navbar-nav .nav-item .active-nav {
  color: #052c30;
}

/* !NAV HEADER CSS */

/* home css start */
.home {
  background: url(../images/mainBnnr.webp) no-repeat center / cover;
  padding: 0;
}

.img-sec-1 h6 {
  color: #052c30;
  font-size: 35px;
  font-weight: 600;
  font-family: "Archivo";
}

figure.img-box-5 {
  width: fit-content;
  margin-left: auto;
  text-align: center;
}

.img-box-6 {
  width: fit-content;
  padding-left: 2.35rem;
  text-align: center;
}

figure.img-box-4 {
  width: fit-content;
  padding-left: 7.375rem;
  text-align: center;
}

figure.img-box {
  width: fit-content;
  text-align: center;
  margin-bottom: 60px;
  padding-left: 7.5rem;
}

figure.img-box-2 {
  width: fit-content;
  text-align: center;
  padding-left: 4.075rem;
}

/* home css end */

.stories{
  padding: 0 3rem;
}

/* footer css start */
footer {
  background: #052c30;
  padding: 6rem;
  position: relative;
  padding-bottom: 0;
}

/*footer::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  background: rgb(255 255 255 / 10%);*/
/*  width: 824px;*/
/*  height: 824px;*/
/*  border-radius: 50%;*/
/*  filter: blur(110px);*/
/*  bottom: 0px;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*}*/

.footerLogo h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  font-family: "Archivo";
  text-transform: uppercase;
}

footer h3 {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  font-family: "Archivo";
}

.contact-list h4 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 400;
  font-family: "Archivo";
  margin-top: 2rem;
}

.contact-list a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  font-family: "Archivo";
  text-transform: uppercase;
  transition: 0.5s ease-in-out;
}

.contact-list a:hover {
  color: #949292;
}

ul.quicklist li {
  list-style: none;
  margin: 1rem 0 0;
}

ul.quicklist li a {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  font-family: "Archivo";
  transition: 0.5s ease-in-out;
  position: relative;
}

ul.quicklist li a::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 0;
  height: 4px;
  bottom: -10px;
  left: 0;
  transition: all 0.5s ease-in-out;
}

ul.quicklist li a:hover::before {
  width: 100%;
}

ul.quicklist li a:hover {
  color: #949292;
}

.copy-right h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Archivo";
}

.copy-right p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  font-family: "Archivo";
  text-transform: capitalize;
}

.copy-right {
  padding: 1rem 0;
  margin: 4rem 0 0;
  border-top: 1px solid #0c484e;
}

footer .col-md-3:last-child h3 {
  text-align: right;
}

ul.quicklist {
  text-align: right;
}

/* footer css end */

/* * innerpages Start */
.innerBan .overlay {
  position: absolute;
  text-align: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.innerBan h2 {
  font-size: 52px;
  color: #063b41;
  text-transform: capitalize;
  font-weight: 400;
  text-align: center;
  font-family: "Questrial", sans-serif;
}

.innerBan {
  position: relative;
}

.bread-curm{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
.bread-curm li,
.bread-curm li a{
    font-size: 15px;
  color: #538914;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Noto Serif", serif;
}

body.innerfooter footer::before {
  content: none;
}

body.innerfooter header {
  position: unset;
  padding: 31px 6rem;
}

body.innerfooter .navbar-nav .nav-item .nav-link {
  font-size: 1rem;
}

body.innerfooter .navbar-nav {
  gap: 2rem;
  justify-content: start;
}

.artwrap {
  border: 1px solid #818181;
  border-radius: 20px;
  margin-bottom: 40px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.artwrap figure img {
    width: 90%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
}

.poetrywrap2 figure img {
    height: auto;
    height: 246px;
    border-radius: 20px 20px 0 0;
    width: 100%;
    object-fit: cover;
}

.artcntnt h3 {
  font-size: 26px;
  font-weight: 400;
  color: #0c484e;
  line-height: 1.1;
  text-align: center;
}

.artcntnt {
  padding: 45px 17px;
}

body.innerfooter .container {
  max-width: 1264px;
}

.poetrywrap2 {
  border: 1px solid #818181;
  border-radius: 20px;
  min-height: 480px;
  margin-bottom: 2rem;
}

.poetrywrap {
  border: 1px solid #818181;
  border-radius: 20px;
  text-align: center;
  padding: 0 51px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.poetrywrap h3 {
  font-size: 30px;
  font-weight: 400;
  color: #0c484e;
  font-family: "Questrial", sans-serif;
}

.poetrywrap p {
  font-size: 14px;
  font-weight: 400;
  color: #818181;
  line-height: 1.4;
  padding: 39px 0 47px 0;
}

.poetrywrap a {
  font-size: 20px;
  font-weight: 400;
  color: #052c30;
  text-transform: capitalize;
}

.poetrywrap a i {
  transform: rotate(325deg);
  margin-left: 10px;
}

.poetcntnt h3 {
  font-size: 26px;
  font-weight: 400;
  color: #0c484e;
  font-family: "Questrial", sans-serif;
}

.poetcntnt p {
  font-size: 14px;
  font-weight: 400;
  color: #818181;
  line-height: 1.4;
  padding: 15px 0 20px 0;
}

.poetcntnt a {
  font-size: 20px;
  font-weight: 400;
  color: #052c30;
  text-transform: capitalize;
}

.poetcntnt a i {
  transform: rotate(325deg);
  margin-left: 10px;
}

.poetcntnt {
  padding: 26px 22px;
  text-align: center;
}

.short-wrap a {
  font-size: 20px;
  font-weight: 400;
  color: #052c30;
  text-transform: capitalize;
}

.short-wrap a i {
  transform: rotate(325deg);
  margin-left: 10px;
}

.short-wrap h3 {
  font-size: 30px;
  font-weight: 400;
  color: #0c484e;
  font-family: "Questrial", sans-serif;
}

.short-wrap p {
  font-size: 14px;
  font-weight: 400;
  color: #818181;
  line-height: 1.4;
  margin: 1.125rem auto;
  width: 79%;
}

.short-wrap {
  border: 1px solid #818181;
  border-radius: 20px;
  text-align: center;
  padding: 56px 33px;
  margin-bottom: 40px;
}

.topbook h3 {
  font-size: 52px;
  font-weight: 400;
  color: #063b41;
  font-family: "Questrial", sans-serif;
}

.topbook {
  text-align: center;
  margin-bottom: 2.25rem;
}

.topbook h4 {
  font-size: 15px;
  color: #538914;
  font-family: "Noto Serif", serif;
}

.book-collect h3 {
  font-size: 26px;
  font-weight: 400;
  color: #0c484e;
  text-align: center;
  padding: 44px 56px;
  line-height: 1.1;
  font-family: "Questrial", sans-serif;
}

.book-collect {
  border: 1px solid #818181;
  border-radius: 20px;
  margin-bottom: 41px;
}

form.helpForm .form-group input {
  background: rgb(217 217 217 / 19%);
  height: 45px;
  border-radius: 10px;
  border: unset;
  color: #000;
}

form.helpForm label {
  font-size: 26px;
  font-weight: 400;
  font-family: "Questrial", sans-serif;
}

section.conatctpage .topbook {
  text-align: left;
}

form.helpForm .form-control::placeholder {
  font-size: 1rem;
  color: #7a7a7a;
}
/* gallery */
section.gallery figure {
  margin-bottom: 4rem;
}
.gallery-head h2 {
  font-size: 5rem;
  font-weight: 600;
  color: #0c484e;
  text-transform: capitalize;
  font-family: "Questrial", sans-serif;
}

.fig-one {
  columns: 3;
  column-gap: 20px;
  break-inside: avoid;
}

.fig-one img{
  margin-bottom: 20px;

}

/* about us inner css  */
figure.about-img {
  position: relative;
}
figure.about-img img {
    max-height: 720px;
}
.about-wrap .topbook{
  text-align: start;
}
.about-wrap p {
    margin-bottom: 1rem;
    margin-left: 14px;
    font-size: 1.5rem;
}
.about-wrap .green{
  color: #0c484e;
}

figure.about-img .book {
    max-width: 147px;
    position: absolute;
    top: 50%;
    right: -4%;
    transform: translateY(-50%);
}
.about-wrap {
    padding-left: 2rem;
}

/* about us inner css  */

.book-collect figure img {
    width: 100%;
}
