@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@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");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bowlby+One+SC&family=Jost:ital,wght@0,100..900;1,100..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Maven+Pro:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap");

@font-face {
  font-family: sitka;
  src: url(../fonts/sitka-small-599.ttf);
}

@font-face {
  font-family: authentic;
  src: url(../fonts/Authentic\ Signature.ttf);
}

:root {
  /*** theme colors ***/
  --theme-color: #c9aa70;
  --theme-color-2: #01193f;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  background-color: #f9fafc;
}

.pd-80 {
  padding: 80px 0;
}

.pd-100 {
  padding: 100px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sitka !important;
}

p {
  font-family: "Poppins";
}

a:hover {
  color: inherit;
}

a {
  color: #000;
  transition: 0.2s all;
  text-decoration: none;
}

.theme-btn {
  background-color: transparent;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff !important;
  display: inline-block;
  font-weight: 500;
  transition: 0.2s all;
}

.theme-btn:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}

.theme-btn-2 {
  background-color: var(--theme-color);
  border: 2px solid var(--theme-color);
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff !important;
  display: inline-block;
  font-weight: 500;
  transition: 0.2s all;
}

.theme-btn-2:hover {
  background-color: transparent;
  border-color: var(--theme-color);
  color: var(--theme-color) !important;
}

.theme-btn-3 {
  background-color: var(--theme-color);
  border: 2px solid var(--theme-color);
  padding: 10px 10px;
  border-radius: 10px;
  color: #fff !important;
  display: inline-block;
  font-weight: 500;
  transition: 0.2s all;
}

.theme-btn-3:hover {
  background-color: transparent;
  border-color: var(--theme-color);
  color: var(--theme-color) !important;
}

.top-bar {
  background-color: var(--theme-color);
  padding: 25px 0;
}

.top-search-form form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.top-search-form button {
  background: transparent;
  border: 0;
  font-size: 35px;
  padding: 0;
  margin: 0;
}

header {
  padding-top: 80px;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 2;
}

.logo img {
  width: auto;
}

.navigation ul {
  display: flex;
  align-items: center;
  gap: 0 20px;
  list-style: none;
  justify-content: start;
  padding: 0;
  margin: 0;
}

.navigation ul li a {
  color: #ffff;
}

.navigation ul li a:hover {
  color: var(--theme-color);
}

.navigation ul li a.active {
  color: var(--theme-color);
  font-weight: bold;
}

.drop_down {
  position: relative;
  list-style: none;
}

.drop_down {
  position: relative;
  list-style: none;
}

.drop_down ul {
  display: none;
  position: absolute;
  background-color: var(--theme-color);
  padding: 0;
  margin: 0;
  list-style: none;
  top: 25px;
  left: 50%;
  transform: translate(-50%, 0%);
  border-radius: 10px;
  z-index: 9999999;
}

.drop_down:hover ul {
  display: block;
}

.drop_down ul li {
  padding: 10px;
  width: 220px;
  text-align: center;
  border-bottom: 1px solid #000;
}
.drop_down ul li:hover {
  color: #fff;
  background-color: #222222;
}

.drop_down ul li:hover:first-child {
  border-radius: 10px 10px 0 0;
}

.drop_down ul li:hover:last-child {
  border-radius: 0 0 10px 10px;
}

.drop_down ul li a {
  color: #000;
  text-decoration: none;
  font-size: 13px;
}

.drop_down ul li:hover a {
  color: #fff;
}

.nav-flex {
  display: flex;
  align-items: center;
  gap: 0 30px;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.navl-search {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.navl-search a {
  width: 50px;
  height: 50px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.navl-search a img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.user-initials {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}

.author-initials {
  background-color: var(--theme-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 50px;
  text-transform: uppercase;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  border: 7px solid #fff;
  object-fit: cover;
}

.user-avatar.author-initials {
  background-color: var(--theme-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  border: 2px solid #fff;
  width: 100%;
  border-radius: 180px;
  height: 100%;
  object-fit: cover;
}

.author-profile-initials {
  background-color: var(--theme-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 50px;
  text-transform: uppercase;
  border-radius: 50%;
  border: 7px solid #fff;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-box-initials {
  background-color: var(--theme-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 50px;
  text-transform: uppercase;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  height: 286px;
}

.writer-img-initials {
  background-color: var(--theme-color);
  color: white;
  align-items: center;
  font-weight: bold;
  font-size: 100px;
  text-transform: uppercase;
  width: 60%;
  display: block;
  margin-bottom: 20px;
  height: 200px;
  object-fit: contain;
}

/* Banner Start */

.banner-section .carousel-caption {
  top: 29%;
}

.banner-section .carousel-item {
    position: relative;
}

.banner-section .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color-2);
    opacity: .5;
}

.banner-section .carousel-caption h4 {
  font-family: authentic;
  font-size: 50px;
  margin-bottom: -5px;
}

.banner-inner-section .carousel-caption h1 {
  font-size: 40px !important;
  background: transparent !important;
  text-transform: uppercase;
}

.banner-section .carousel-caption h1 {
  font-size: 20px;
  background-color: var(--theme-color);
  padding: 10px;
  border-radius: 9px;
  border: 0;
  outline: none;
  width: 60%;
  margin: 30px auto;
}

.paragraph_text p {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0px;
}

.banner-section .carousel-caption select {
  font-size: 20px;
  background-color: var(--theme-color);
  padding: 10px;
  border-radius: 9px;
  border: 0;
  outline: none;
  width: 50%;
  margin: 10px auto 10px;
  font-family: sitka;
  text-align: center;
}

.banner-section .carousel-caption img {
  margin: 0 auto 20px;
  display: block;
  width: auto;
}

.banner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}

.banner-section .banner-img img {
  width: 100%;
  margin: 0;
}

section.banner-section .carousel-indicators {
  margin: 0;
  bottom: 15%;
}

section.banner-section .carousel-indicators [data-bs-target] {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  opacity: 30%;
  border: 0;
}

section.banner-section .carousel-indicators [data-bs-target].active {
  opacity: 100%;
  background-color: var(--theme-color);
  width: 48px;
  border-radius: 50px;
}

.banner-section .carousel-control-next,
.banner-section .carousel-control-prev {
  opacity: 100%;
}

.banner-section .carousel-control-prev-icon {
  background-image: url(../images/banner-arrow-left.svg);
}

.banner-section .carousel-control-next-icon {
  background-image: url(../images/banner-arrow-right.svg);
}

.banner-section .carousel-control-prev-icon,
.banner-section .carousel-control-next-icon {
  background-color: var(--theme-color);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-size: 30%;
}

.cant-find {
  padding-bottom: 15px;
}

.cant-find a {
  color: white;
  font-size: 19px;
  font-weight: 700;
}

.cant-find a:hover {
  color: var(--theme-color);
}

.cant-find-mall {
  padding: 10px 0px;
}

.cant-find-mall a {
  color: var(--theme-color-2);
  font-size: 19px;
  font-weight: 700;
}

.cant-find-mall a:hover {
  color: var(--theme-color);
}

/* Banner End */

/* About Section Start */

.about-left {
  position: relative;
}

.about-left img {
  width: 100%;
}

.about-logo {
  position: absolute;
  right: -1%;
  top: -6%;
  background-color: var(--theme-color-2);
  width: 120px;
  border-radius: 50%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff;
}

.about-logo img {
  width: 63%;
}

.about-right h2 {
  text-transform: uppercase;
  font-size: 40px;
  color: #222222;
  margin-bottom: 20px;
}

.about-right span {
  color: var(--theme-color-2);
  font-weight: 500;
}

.about-right select {
  background-color: var(--theme-color);
  padding: 10px;
  border-radius: 9px;
  border: 0;
  outline: none;
  font-size: 30px;
  color: #222222;
  margin: 10px 0 20px;
  text-transform: capitalize;
  font-family: "sitka";
}

.about-right p {
  font-size: 16px;
  color: #000000;
  line-height: 30px;
}

/* About Section End */

/* Stall Section Start */

.stall-section {
  position: relative;
  z-index: 99;
}

.stall-section {
  background-image: url(../images/banner1.png);
  background-size: cover;
}

.stall-section:after {
  content: "";
  position: absolute;
  background: rgb(1 25 63 / 72%);
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.stall-img img {
  width: 100%;
}

.stall-center {
  text-align: center;
}

.stall-center h2 {
  font-size: 40px;
  color: #fff;
  margin: 20px 0 10px;
}

.stall-center select {
  background-color: var(--theme-color);
  padding: 10px;
  border-radius: 9px;
  border: 0;
  outline: none;
  font-size: 30px;
  margin: 10px 0 0;
  color: #000;
}

.stall-center p {
  font-family: "poppins";
  font-size: 19px;
  color: #fff;
  font-weight: 200;
}

.mall-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px 0;
}

.mall-box h5 {
  color: #fff;
  letter-spacing: 1px;
  font-size: 22px;
}

.stall-section .stall-center h1 {
  font-size: 20px;
  background-color: var(--theme-color);
  padding: 10px;
  border-radius: 9px;
  border: 0;
  outline: none;
  width: 30%;
  margin: 30px auto;
}

.stall-section .carousel-control-next,
.stall-section .carousel-control-prev {
  opacity: 100%;
  top: 80%;
}

.stall-section .carousel-control-prev-icon {
  background-image: url(../images/banner-arrow-left.svg);
}

.stall-section .carousel-control-next-icon {
  background-image: url(../images/banner-arrow-right.svg);
}
.stall-section .carousel-control-prev-icon,
.stall-section .carousel-control-next-icon {
  background-color: var(--theme-color);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-size: 30%;
}
/* Stall Section End */

/* Writer Section Start */

.write-head h3 {
  font-size: 35px;
  margin: 0;
}

.write-mall h6 {
  font-size: 15px;
  display: inline-block;
  margin: 0;
}

.write-mall .author-flex p {
  color: #fff;
  font-size: 14px;
}

.write-mall h6 p {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.write-mall {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.write-mall p {
  color: #fff;
  font-size: 14px;
}

.write-btn {
  text-align: right;
}

.write-btn a {
  text-transform: capitalize;
}

.write-btn a:hover {
  border-color: var(--theme-color);
  color: var(--theme-color);
}

.writer-slide {
  position: relative;
  overflow: hidden;
  padding: 0 10px;
  z-index: 1;
  transition: 0.2s all;
}

.writer-slide img {
  width: 100%;
  height: 200px;
  transition: transform 0.3s ease;
  overflow: hidden;
  height: 230px;
  object-fit: fill;
}

.hover-options {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  text-align: center;
  z-index: 7;
  transition: 0.2s all;
}

.writer-slide:hover .hover-options {
  opacity: 1;
}

.hover-options a {
  display: inline-block;
  margin: 5px;
  padding: 7px 15px !important;
  background-color: var(--theme-color);
  color: var(--theme-color-2) !important;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid var(--theme-color);
}

.hover-options a:hover {
  background-color: transparent;
  color: white !important;
}

.writer-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000047;
  z-index: 1;
  width: 87%;
  margin: 0 auto;
  transition: 0.2s all;
  height: 0;
  margin: 0 10px;
}

.writer-slide:hover:before {
  height: 100%;
}

.writer-wrap {
  margin: 50px 0 !important;
  border-bottom: 3px solid #ffffff !important;
  padding-bottom: 50px !important;
}

.writer-main:last-child .writer-wrap {
  margin-bottom: 0;
  border: 0;
  padding-bottom: 0;
}

.writer-img {
  text-align: center;
}

.writer-img img {
  width: 77%;
  display: block;
  margin-bottom: 20px;
  height: 225px;
  object-fit: contain;
}

.writer-img h6 {
  width: 77%;
  font-size: 25px;
}

.writer-section h3 {
  margin: 11px 0;
}

.writer-section .slick-prev:before {
  content: url(../images/banner-arrow-left.svg);
  background-color: var(--theme-color);
  padding: 15px 18px;
  border-radius: 50%;
  transition: 0.2s all;
  opacity: 1;
}

.writer-section .slick-prev {
  z-index: 2;
}

.writer-section .slick-next:before {
  content: url(../images/banner-arrow-right.svg);
  background-color: var(--theme-color);
  padding: 15px 18px;
  border-radius: 50%;
  transition: 0.2s all;
  opacity: 1;
}

.writer-section .slick-next {
  z-index: 2;
  right: 0;
}

/* Writer Section End */

/* Authors Section Start */

.head-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.head-flex h2 {
  color: #fff;
  font-size: 33px;
}

.head-flex a {
  text-transform: capitalize;
}

.author-seciton {
  background-image: url(../images/mall-img.png);
  background-size: cover;
}
.author-box {
  margin-bottom: 30px;
  padding: 0px 10px;
}

.author-box img {
  width: 100%;
  height: 286px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.author-slider img {
  width: 100%;
}

.author-wrap {
  background-color: #fff;
}

.author-wrap::before {
  content: "";
  background-color: white;
  position: absolute;
  top: -130px;
  z-index: 0;
  height: -webkit-fill-available;
  width: 100%;
  background-size: cover;
}

.mall_booking p {
  color: #000;
}

.author-flyer p {
  color: #000;
}

.date-flex {
  display: flex;
  align-items: center;
  gap: 0 20px;
  justify-content: start;
  margin-bottom: 25px;
}

.author-flex {
  display: flex;
  align-items: center;
  gap: 0 12px;
}

.author-flex img {
  width: auto !important;
  background-color: var(--theme-color);
  padding: 6px;
  border-radius: 50%;
  height: auto;
}

.author-flex p {
  color: #000;
  font-size: 12px;
  margin-bottom: 0;
  font-weight: 700;
}

.author-wrap h5 {
  font-size: 27px;
  color: #000;
}

.author-wrap-flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.author-wrap-flex p {
  font-family: "sitka";
  font-size: 15px;
  margin: 8px 0 0;
}

.author-wrap-flex p a {
  text-decoration: underline;
  color: var(--theme-color);
}

.author-wrap-flex img {
  width: auto !important;
  height: auto;
}

.author-wrap-img {
  background-color: var(--theme-color-2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-section .slick-prev::before,
.featured-section .slick-next::before {
  opacity: 100%;
}

.featured-section .slick-prev::before {
  content: url(../images/banner-arrow-left.svg);
}

.featured-section .slick-next::before {
  content: url(../images/banner-arrow-right.svg);
}

.featured-section .slick-prev,
.featured-section .slick-next {
  background-color: var(--theme-color);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-size: 30%;
  z-index: 9;
}

.name-flex {
  display: flex;
  align-items: center;
  width: 77%;
}

.name-flex h6 {
  margin-bottom: 0;
  text-align: left;
}

.name-flex img {
  width: auto;
  height: auto;
  margin-bottom: 0;
}

/* Authors Section End */

/* Contact Section Start */

.contact-right h2 {
  font-size: 32px;
  color: #000;
}

.contact-right p {
  font-size: 15px;
  width: 90%;
  text-transform: capitalize;
  margin: 0 0 40px;
}

.address-flex {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 24px;
}

.address-img {
  background-color: var(--theme-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.address-flex p {
  margin: 0;
  color: black;
  font-size: 17px;
  font-weight: 400;
}

.address-flex p a {
  color: black;
}

.email-address-flex {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 24px;
}

.email-address-flex p {
  margin: 0;
  color: black;
  font-size: 17px;
  font-weight: 400;
}

.email-address-flex p a {
  color: #0f6cff;
}

.contact-left iframe {
  border-radius: 0 50px 50px 0;
}

.contact-before {
  padding: 36px 0;
  position: relative;
}

.contact-before::before {
  content: "";
  background-color: #fff;
  border-radius: 0 50px 50px 0;
  position: absolute;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: -1;
  top: 0;
}

/* Contact Section End */

/* Footer Section Start */

footer {
  background-image: url(../images/footer-banner.png);
  background-size: cover;
  padding: 150px 0 0;
}

.col1 img {
  width: auto;
}

.col1 p {
  color: #fff;
  margin: 30px 0 40px;
  font-size: 13px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 30px;
  justify-content: center;
}

.socials i {
  color: #fff;
  font-size: 25px;
  transition: 0.2s all;
}

.socials i:hover {
  color: var(--theme-color);
  transform: rotate(360deg);
}

.col2 h4 {
  color: #fff;
  font-size: 23px;
  margin-bottom: 40px;
}

.col2 ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.col2 ul li {
  margin-bottom: 8px;
}

.col2 ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.col2 ul li a:hover,
.email-flex a:hover {
  color: var(--theme-color);
}

.email-flex {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 20px;
}

.email-flex i {
  width: 20px;
  font-size: 22px;
  color: var(--theme-color);
}

.email-flex a {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.bottom-bar {
  border-top: 5px dotted #ffffff40;
  padding: 15px 0;
  margin-top: 100px;
}

.bottom-bar p {
  margin: 0;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
}

/* Footer Section End */

/* About Page Start */

.about-txt p {
  font-size: 16px;
  color: #00000080;
  line-height: 30px;
}

/* About Page End */

/* Contact Page Start */

.contact-left-2 h2 {
  font-size: 50px;
  color: #232323;
}

.contact-left-2 p {
  font-size: 15px;
  color: #222222;
  line-height: 30px;
}

.contact-left-2 h5 {
  font-size: 24px;
  color: #000000;
}

.contact-left-2 a {
  color: var(--theme-color);
  font-family: "sitka";
  font-size: 35px;
  line-height: 73px;
}

.contact-right-2 {
  background-color: var(--theme-color-2);
  padding: 60px 50px;
  width: 90%;
  border: 5px solid #ffffff80;
  box-shadow: 0 3.55px 17.74px 0 #0000007a;
  border-radius: 15px;
}

.contact-right-2 form input,
.contact-right-2 form textarea {
  width: 100%;
  padding: 10px 0 10px 18px;
  border-radius: 6px;
  border: 1px solid #2222221a;
  margin-bottom: 35px;
}

.contact-right-2 form textarea {
  height: 150px;
}

.contact-right-2 form input::placeholder,
.contact-right-2 form textarea::placeholder {
  text-transform: uppercase;
  font-size: 14px;
  color: #222222;
}

/* Contact Page End */

/* Author Page Start */

.author-seciton-2 {
  background: none;
}

.author-seciton-2 .head-flex h2 {
  color: #222222;
}

/* Author Page End */

/* Category Page Start */

.category-wrap {
  padding: 30px 100px;
  text-align: center;
  background-color: #fff;
  box-shadow: 1.89px 4.71px 119.46px 0px #00000026;
  transition: 0.2s all;
}

.category-box:hover .category-wrap {
  background-color: var(--theme-color);
}

.category-box img {
  width: 100%;
}

.category-boxes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
}

.category-boxes:first-child {
  margin-bottom: 60px;
}

.category-wrap h5 {
  font-size: 23px;
}

.category-wrap p {
  font-size: 14px;
}

/* Category Page End */

/* Author's Profile Page Start */

.author-profile-section {
  position: relative;
}

.author-profile-section .profile-left {
  position: absolute;
  bottom: 0%;
  z-index: 1;
}

.author-profile-section .profile-left img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  border: 7px solid #fff;
  object-fit: cover;
}

.banner-profile-section img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.profile-left img {
  width: 100%;
}

.profile-right {
  margin-top: 50px;
}

.auth-profile-one {
  display: flex;
  align-items: center;
}

.profile-right h5 {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  font-size: 39px;
  color: #000;
  margin-bottom: 20px;
}

.profile-right i.fa.fa-bell.bell-icon {
  font-size: 25px;
}

.profile-right p {
  color: #000;
  font-size: 15px;
  font-weight: 300;
}

.profile-right a:hover {
  border-color: var(--theme-color);
  color: var(--theme-color);
}

.chat-icons {
  display: flex;
  justify-content: end;
  gap: 25px;
}

.chat-icons a {
  padding: 11px;
  background-color: var(--theme-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-icons a i {
  color: var(--theme-color-2);
  font-size: 21px;
}

.book-flex {
  display: flex;
  align-items: center;
  gap: 0 19px;
}

.namer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.namer-close a i {
  font-size: 28px;
  color: var(--theme-color-2);
}

.profile-comment {
  margin: 40px 0 10px;
}

.profile-comment form textarea {
  width: 98%;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 13px;
  background-color: transparent;
  height: 170px;
  outline: none;
}

.profile-comment form button {
  display: block;
}

.profile-comment form button:hover {
  border-color: var(--theme-color);
  color: var(--theme-color);
}

.bio-detail1 {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 10px;
}

.state-flex {
  padding: 0 0 10px 0;
}
.state-flex h6 {
  margin-bottom: 0;
}

.state-flex h6 {
  font-family: poppins;
}

.state-flex h6 b {
  font-family: sitka;
}

.single-comment {
  background-color: var(--theme-color-2);
  margin: 0 0 10px 0px;
  padding: 20px 20px;
  color: white;
  width: 100%;
  display: flex;
  align-items: start;
  filter: drop-shadow(12px 6px 6px var(--theme-color));
  border-radius: 10px;
}

.profile-comment-show {
  margin-top: 50px;
}

.comment-content p {
  color: #f8f8f8;
  margin: 6px 0 6px 0;
}

.comment-content span {
  font-size: 12px;
  font-weight: 600;
  color: white;
  float: right;
}

.comment-content button span {
  float: unset;
  line-height: 25px;
  color: white !important;
}

.list-dislike {
  display: flex;
  align-items: center;
  gap: 14px;
}

.comment-content button {
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.user-avatar img {
  width: 100%;
  border-radius: 180px;
  height: 100%;
  object-fit: cover;
}

.user-avatar {
  width: 68px;
  height: 68px;
  display: block;
}

.comment-content {
  display: inline-block;
  width: 83%;
  margin-left: 20px;
}

/* Author's Profile Page End */
/* Join Page Start */
.join-section .contact-right-2 {
  width: 90%;
  margin: 0px auto;
}

.input-file {
  background-color: #f8f9fc;
  color: var(--theme-color);
}
.input-file::file-selector-button {
  border: none;
  border-radius: 4px;
  color: white;
  background-color: var(--theme-color);
  border: 2px solid var(--theme-color);
  height: 35px;
  cursor: pointer;
  transition: all 0.25s ease-in;
  cursor: pointer;
}
.input-file::file-selector-button:hover {
  background-color: #fff;
  color: var(--theme-color);
  transition: all 0.25s ease-in;
}
/* Join Page End */
#search {
  align-items: center;
  background: #c9aa7090;
  display: flex;
  height: 0;
  justify-content: center;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s;
  width: 100vw;
  z-index: -1;
}

#search:target {
  height: 100vh;
  opacity: 1;
  z-index: 2;
}

#searchbox {
  background: transparent;
  border: solid #000;
  border-width: 0 0 5px 0;
  color: #000;
  font-size: 2rem;
  outline: none;
  padding: 1rem;
  width: 50%;
}

#searchbox::placeholder {
  color: #000;
}

.close-btn {
  color: var(--theme-color-2);
  font-size: 2rem;
  position: absolute;
  right: 2rem;
  top: 1rem;
  text-decoration: none;
}

/* Post Section Start */

.post-flex {
  display: flex;
  gap: 0 20px;
  width: 100%;
}

.status {
  margin: 11px 0;
  height: 36px;
  line-height: 18px; /* Ensure proper text height */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.2s all;
  cursor: pointer;
}

.status.expanded {
  height: auto;
  white-space: normal;
}

#wrapper {
  background-color: #fff;
  width: 32%;
  margin: 10px auto 0;
  border: 1px solid #d0d1d5;
  border-top: 0;
  border-radius: 2px;
  padding: 12px;
}

.arrow {
  position: absolute;
  width: 12px;
  border: none;
  height: auto;
  right: 0px;
}

.profile-pic {
  width: 57px;
  height: auto;
  float: left;
  margin-right: 8px;
}

.name,
.date {
  margin: 0;
}

.name {
  color: #385a97;
  font-size: 17px;
  margin-bottom: 5px;
  font-family: "Poppins";
}

.date {
  font-size: 12px;
  color: #90949c;
}

main {
  font-size: 13px;
}

main .status {
  margin-bottom: 11px;
}

.img-content {
  width: 100%;
  margin-bottom: 11px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 218px;
  object-fit: cover;
}

.action {
  display: flex;
  justify-content: start;
  gap: 0 20px;
  margin-bottom: 10px;
}

.react i {
  display: inline-block;
  width: 18px;
  vertical-align: text-bottom;
  color: var(--theme-color);
}

.cf {
  display: flex;
  align-items: center;
  gap: 0 7px;
}

.user-name {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 0px 0;
}

.user-comment {
  width: 100%;
  margin: 0 auto;
}
.comments-section img {
  margin-top: 0px;
  width: 60px;
}

.comments-section p {
  line-height: 15px;
  margin: 0 auto 5px;
}

.comments-section .comment-author {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.5px;
  color: var(--theme-color-2);
}

.comments-section .comment-time {
  font-size: 11px;
  margin-left: 10px;
  color: #a7a5a5;
  border-bottom: 1px solid #ddd;
}

.comments-section .comment-content {
  font-size: 12px;
  font-weight: 500;
  padding-bottom: 0px;
  line-height: 20px;
  letter-spacing: 1px;
  color: #000;
}

.comments-section .comment-post-reply .comment-content,
.comments-section .comment-post-reply .comment-author {
  color: #888888;
}

.comments-section textarea {
  width: 100%;
  height: 80px;
  border: 1px solid #979595;
  border-radius: 4px;
  padding: 10px;
}
.comment-like-unlike span i {
  font-size: 18px;
  color: var(--theme-color);
  cursor: pointer;
  margin-right: 10px;
  width: 30px;
  height: 25px;
  text-align: center;
  line-height: 25px;
}
.comment-like-unlike span i:hover {
  color: var(--theme-color-2);
  transition: 0.3s ease-in-out;
}
.comment-post,
.comment-post-reply {
  display: flex;
  margin-bottom: 25px;
}
.comment-details {
  margin-left: 20px;
}
.comment-post-reply {
  margin-left: 85px;
  margin-bottom: 40px;
}
.comments-section {
  padding-top: 40px;
  border-top: 1px solid #cccccc8a;
}
.comments-section .btn--blue {
  background-color: var(--theme-color);
  color: #fff;
  font-size: 15px;
  padding: 9px 20px;
}

.field-comment {
  text-align: right;
}

.post-section .modal-header {
  border: 0;
}

.post-section .modal-body h4 {
  text-align: center;
  margin: 0;
}

.post-section .modal-footer a {
  color: #fff;
}

.modal-body textarea {
  width: 100%;
  height: 200px;
  padding: 7px 10px;
  font-size: 14px;
  outline: none;
  resize: none;
  border: 2px solid var(--theme-color-2);
  border-radius: 8px;
}

.modal-body textarea::placeholder {
  color: #00000099;
}

.upload_pic {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  background-color: #6a6a6a;
  padding: 7px 21px;
  gap: 0 9px;
  cursor: pointer;
  transition: 0.2s all;
}

.upload_pic:hover {
  background-color: #6a6a6a50;
}

.upload_pic:hover p {
  color: #000;
}

.upload_pic i {
  color: #8bbf50;
}

.upload_pic p {
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
}

.post-head {
  margin: 0 0 20px auto;
  text-align: right;
}

.post-head a:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
}

.login-form h2 {
  font-size: 50px;
  color: #232323;
  text-align: center;
}

.login-form .contact-right-2 {
  width: 100%;
}

.inp-flex {
  display: block;
  margin: 0 0 10px;
  width: 100%;
}

.inp-check {
  display: flex;
  align-items: center;
  width: 100%;
}

.inp-check p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
  width: 100%;
}

.inp-check input {
  margin-bottom: 0 !important;
  width: 9% !important;
}

.login-form input {
  font-size: 14px;
}

.login-form input::placeholder {
  font-size: 14px;
  text-transform: capitalize !important;
}

.signin_modal .modal-header {
  --bs-body-bg: transparent;
}

.signin_modal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.signin_modal button.btn-close {
  width: 100%;
  background-position: 97%;
  top: 11px;
  position: relative;
}

/* Post Section End */

.writer-main-2 {
  color: #fff;
}

.chat-container {
  width: 26%;
  margin: auto;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  bottom: 0;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  right: 80px;
  display: none;
  position: fixed;
  filter: drop-shadow(2px 4px 6px black);
  transition: max-height 0.3s ease-in-out;
}

.chat-box {
  height: 400px;
  overflow-y: auto;
  padding: 30px 10px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 5px;
}

.message {
  padding: 8px 12px;
  margin: 8px 0;
  border-radius: 20px;
  max-width: 80%;
}

.my-message {
  background: #007bff;
  color: white;
  align-self: flex-end;
  text-align: right;
  margin-left: auto;
}

.other-message {
  background: #e9ecef;
  align-self: flex-start;
}

.message strong {
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
  color: #555;
}

.message p {
  font-size: 14px;
}

.chat-form {
  display: flex;
  margin-top: 10px;
}

.chat-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  outline: none;
}

.chat-form button {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-left: 5px;
  border-radius: 20px;
  cursor: pointer;
}

.user-list {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.user-list h4 {
  font-size: 18px;
  font-weight: bold;
}

.list-group-item {
  border: none;
  padding: 10px;
  font-size: 16px;
}

.my-message {
  background-color: #007bff;
  color: white;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  text-align: right;
}

.my-message strong,
.my-message small {
  color: white;
}

.other-message {
  background-color: #f1f1f1;
  color: black;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  text-align: left;
}

/* user dashboard start */
.customer_dashboard .dashboard-logo {
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(236, 213, 140, 1) 0%,
    rgba(184, 152, 96, 1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-wrapper {
  width: 100%;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.cropper-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0 0;
}

#dash-sidebar {
  min-width: 270px;
  max-width: 270px;
  background: var(--theme-color-2);
  color: #fff;
  position: fixed;
  height: 100rem;
  z-index: 99;
}
#dash-sidebar.active {
  min-width: 80px;
  max-width: 80px;
  text-align: center;
}
#dash-sidebar.active ul.components li {
  font-size: 14px;
}
#dash-sidebar.active ul.components li a {
  padding: 20px 0;
  justify-content: center;
  margin-right: 0;
}
#dash-sidebar.active ul.components li a img {
  margin-right: 0;
}
#dash-sidebar.active .logo {
  padding: 10px 0;
}
#dash-sidebar .logo {
  display: block;
  color: #fff;
  font-weight: 900;
  padding: 10px 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#dash-sidebar ul.components {
  padding: 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

span.pending-count {
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 10px;
}

span.pending-payment-count {
  position: absolute;
  top: 40px;
  left: 135px;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 10px;
}

span.detail-payment-count {
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 10px;
}

#dash-sidebar.active ul.components {
  padding: 0 !important;
  padding-top: 30px !important;
}

#dash-sidebar ul li {
  font-size: 16px;
}
#dash-sidebar ul li > ul {
  margin-left: 10px;
}
#dash-sidebar ul li > ul li {
  font-size: 14px;
}
#dash-sidebar ul li a {
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}
#dash-sidebar ul li a p {
  color: white;
  font-family: "Montserrat";
  font-size: 13px;
  margin-bottom: 0;
}

p.user-dash {
  padding: 0px 0px 0px 10px;
  font-size: 16px !important;
}

#dash-sidebar ul li a img {
  margin-right: 15px;
}

#dash-sidebar.active ul li a p {
  display: none;
}

#dash-sidebar ul li.active > a {
  background: transparent;
  color: #fff;
}

#dash-content {
  width: 100%;
  padding: 0;
  min-height: 100vh;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#dash-content {
  transition: margin-left 0.3s ease;
  margin-left: 269px;
}

#dash-sidebar.active + #dash-content {
  margin-left: 79px !important;
}

.dash-head {
  background-image: url(../images/dash-head.jpg);
  background-size: contain;
  height: 300px;
  padding: 23px 50px 23px 10px;
  background-repeat: no-repeat;
}

p.confirm_booking {
  display: flex;
  align-items: center;
  gap: 15px;
}

p.confirm_booking strong {
  color: black;
  font-size: 17px;
}

.coupon_apply {
  padding: 0 0 10px 0px;
}

.coupon_apply input#coupon-code {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 0 !important;
  background-color: #fff;
  padding: 5px 30px 5px;
  margin-top: 5px;
}

.coupon_apply strong {
  color: black;
  font-size: 17px;
}

.dash-search-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-search {
  position: relative;
  width: 80%;
}

.dash-search input {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(236, 213, 140, 1) 0%,
    rgba(184, 152, 96, 1) 100%
  );
  border: 0;
  border-radius: 29px;
  padding: 13px 20px 13px 50px;
  position: relative;
  color: #fff;
  outline: none;
  font-family: "Montserrat";
}

.dash-search input::placeholder {
  color: #fff;
  font-family: "Montserrat";
}

.dash-search button {
  background: none;
  border: 0;
  outline: 0;
  color: #fff;
  position: absolute;
  z-index: 9;
  top: -5px;
  left: 0;
  height: 100%;
  width: 4%;
}

.dash-edit a img {
  width: 100%;
}

.dash-edit a {
  padding: 14px;
  display: inline-block;
  background-color: var(--theme-color);
  border-radius: 50%;
}

.dash-toggle button {
  background: linear-gradient(
    180deg,
    rgba(236, 213, 140, 1) 0%,
    rgba(184, 152, 96, 1) 100%
  );
  outline: none;
  box-shadow: none;
  border: 0;
  padding: 5px 13px;
  font-size: 21px;
}

.dash-logo {
  height: 10%;
  background: linear-gradient(
    180deg,
    rgba(236, 213, 140, 1) 0%,
    rgba(184, 152, 96, 1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

nav#dash-sidebar .dash-logo img {
  width: 100%;
}

#dash-sidebar.active .dash-logo img {
  min-width: 300px !important;
  margin-left: 38%;
  width: auto;
}

.dash-content-head {
  display: flex;
  margin: 0 0 50px;
  align-items: center;
  justify-content: space-between;
}

.dash-content-head h2 {
  font-family: "Montserrat";
  color: #061733;
  font-size: 26px;
  font-weight: bold;
  position: relative;
  margin-bottom: 0;
}

.dash-content-head h2::before {
  content: "";
  width: 5px;
  height: 60px;
  background-color: #be9f65;
  position: absolute;
  left: -24px;
  top: -12px;
}

.dash-share {
  display: flex;
  align-items: center;
  gap: 0 40px;
}

.dash-share a {
  padding: 14px;
  background-color: var(--theme-color-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px -1px 20px 6px #e6ce87;
}

.dash-share a img {
  width: 78%;
}

.dash-content {
  position: relative;
}

.dash-content form label {
  font-family: "Montserrat";
  color: #061733;
  font-weight: 500;
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
}

.dash-content img#authorPreview {
  height: 120px;
  width: 120px;
  object-fit: cover;
  border-radius: 90px !important;
  margin-top: 30px;
}

.dash-content form span {
  font-family: "Montserrat";
  color: #061733;
  font-weight: 500;
  font-size: 14px;
  display: block;
}

.flyer-content .check-flex input {
  width: auto !important;
}

.flyer-content .check-flex span {
  display: inline-block;
}

.schedule-disclaimer {
  display: flex;
  align-items: start;
  gap: 10px;
}

.dash-content form input,
.dash-content form textarea {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 38px;
  background-color: #fff;
  padding: 14px 30px 14px;
  color: #000;
}

input::placeholder {
  color: black;
}

.dash-content form hr {
  margin: 30px 0;
}

.dash-content form textarea {
  height: 180px;
  border-radius: 5px;
}
.dash-content form textarea::placeholder {
  color: black;
}

.step-flex {
  padding: 25px 0px 0 0;
}

.add-book {
  display: flex;
  align-items: center;
  gap: 0 24px;
  padding: 40px 0 0 0;
}

.step-btns {
  display: flex;
  align-items: center;
  gap: 0 22px;
}

.add-book p {
  font-family: "Montserrat";
  font-weight: bold;
  color: #000000;
  font-size: 15px;
  margin-bottom: 0;
}

.add-book button {
  padding: 19px;
  font-family: "Montserrat";
  color: #ffffff;
  font-size: 23px;
  font-weight: bold;
  border: 0;
  border-radius: 50%;
  line-height: 12px;
  background-color: var(--theme-color-2);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-weight: bold;
  font-family: "Montserrat";
  color: #061733;
  font-size: 23px;
}

.calendar-days {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-weight: bold;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  justify-items: center;
}

.dash-calendar {
  width: 100%;
  background-color: #fff;
  padding: 40px 60px 60px 40px;
  border-top: 1px solid #e6e4e0;
  border-left: 4px solid #e6e4e0;
  box-shadow: 0px 0px 40px 3px #e6ce87d1;
}

.dash-calendar h3 {
  font-weight: bold;
  font-family: "Montserrat";
  color: #061733;
  font-size: 23px;
  margin-bottom: 30px;
}

.calendar-day.disabled {
  color: #ffffff !important;
  opacity: 1;
}

.calendar-day {
  font-weight: 400;
  font-family: "Montserrat";
  color: #061733;
  font-size: 20px;
  cursor: pointer;
  width: 66%;
  border-radius: 50%;
  height: 100%;
  padding: 7px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s all;
  background: transparent;
}

.calendar-day.active {
  background: linear-gradient(
    180deg,
    rgba(236, 213, 140, 1) 0%,
    rgba(184, 152, 96, 1) 100%
  );
}

.calendar-day.booked {
  background-color: red;
  color: white;
}

.restricted-date {
  background-color: red;
  border-radius: 50%;
}

.calendar-day.pending {
  background-color: orange;
  color: white;
}

.dash-select h2 {
  font-family: "Montserrat";
  color: #061733;
  font-size: 26px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
}

.dash-select h4 {
  color: #061733;
  font-weight: bold;
  font-family: "Montserrat";
  margin-bottom: 20px;
}

.mall_left img {
  width: 100%;
}

.mall_right p {
  color: black;
}

.mall_info {
  box-shadow: 0px 0px 20px rgb(196 165 106);
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0 60px;
}

.calendar-nav {
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}

.calendar-nav button {
  padding: 5px 10px;
  border: 1px solid var(--theme-color-2);
  border-radius: 5px;
  background-color: var(--theme-color-2);
  color: white;
}

.calendar-nav button:hover {
  padding: 5px 10px;
  border: 1px solid var(--theme-color-2);
  border-radius: 5px;
  background-color: transparent;
  color: var(--theme-color-2);
}

.dash-select ul li {
  color: #000;
  font-family: "Montserrat";
  font-size: 15px;
  margin-bottom: 12px;
  list-style: none;
  position: relative;
}
.dash-select ul li.bef-no::before {
  content: unset;
}

.dash-select ul li::before {
  content: "";
  width: 3%;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: -4%;
}

.dash-select ul li b {
  font-weight: 800;
  font-size: 20px;
  color: #061733cf;
}

.dash-select select {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 38px;
  background-color: #fff;
  padding: 19px 30px 17px;
  margin: 0 0 15px 0px;
  font-family: "Montserrat";
  outline: 0;
}

.dash-select select option {
  background-color: var(--theme-color);
  color: #000000;
  font-family: "Montserrat";
}

.sel-flex p {
  margin: 0;
  padding: 0 15px 10px;
  font-size: 18px;
  font-weight: 600;
}

.flyer-content {
  margin-top: 30px;
}

.flyer-content h5 {
  font-family: "Montserrat";
  font-size: 22px;
  font-weight: 500;
  color: #061733;
  margin-bottom: 25px;
}

.flyer-content p {
  font-family: "Montserrat";
  font-size: 14px;
  color: #000;
  font-weight: 500;
  line-height: 24px;
}

.file-input {
  position: absolute;
  right: 40px;
  top: 64%;
}

input#fileInput {
  cursor: pointer;
}

.flyer-sign {
  margin-top: 70px;
}

.sign-1 {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.sign-1 p {
  width: 12%;
  margin-bottom: 0;
  font-family: "Montserrat";
  font-weight: 500;
  color: #061733;
  font-size: 15px;
}

.sign-1 input {
  width: 15%;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  padding: 10px 6px 10px 16px;
  outline: none;
  font-family: "Montserrat";
}

#clearSignatureBtn {
  margin-left: 10px;
}

.signature-img img {
  width: 200px !important;
  height: auto !important;
  position: unset !important;
  object-fit: contain !important;
}

.signature-img strong {
  margin-bottom: 13px;
  display: block;
}

.step-flex-flyer {
  height: auto;
}

.step-flex {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  gap: 16px 0;
  padding: 20px 0px 0 0;
}

.dash-content-head .photo-wrap-inner {
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 8px 20px 0px #c9ad6f;
  overflow: hidden;
  position: absolute;
  top: -94px;
  z-index: 9999;
}

.dash-content-head img#photoImage {
  width: 101%;
  height: 170px;
  object-fit: cover;
  transition: height 0.3s ease, width 0.3s ease;
}

#dash-sidebar.active .controls {
  left: 18%;
}

.controls {
  text-align: center;
  position: absolute;
  left: 21%;
  top: 2%;
  display: none;
}

.controls label {
  display: inline-block;
  margin-right: 10px;
}

.modalOne .modal-content {
  padding: 0;
}

.modalOne .modal-body {
  background-size: cover;
  background-repeat: no-repeat;
  height: 100% !important;
  max-height: 100% !important;
  overflow-y: unset !important;
}

.modalOne .modal-dialog {
  border: 10px solid #fff;
}

.author-wrap-bg .author-wrapers-bg img {
  position: absolute;
  top: -130px;
  z-index: 0;
  height: -webkit-fill-available;
  width: 100%;
  object-fit: cover;
}

.flyer-user {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 50px;
  top: 35px;
  left: 0;
}

.author-profile {
  padding: 0 0 0 6px;
}

.author-profile img {
  width: 520px;
  height: 220px;
}

.user-books img {
  padding: 0px 0px 15px 0px;
  height: 200px;
  width: 130px;
}

.modalOne .author-profile {
  width: 20%;
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
}

.author-profile img#modalAuthorImage {
  width: 100%;
  border-radius: 50%;
}

.modalOne .author-profile img {
  width: 100%;
}

.modalOne .author-wrap {
  margin-top: 50px;
  background-color: transparent;
  padding: 0 40px 206px 50px;
  position: relative;
}

.modalOne .author-wrap h2 {
  font-family: "Montserrat";
  font-weight: bold;
  color: var(--theme-color-2);
  margin-bottom: 20px;
}

.modalOne .author-wrap h2 span {
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(236, 213, 140, 1) 0%,
    rgba(184, 152, 96, 1) 100%
  );
  padding: 5px 11px;
  font-size: unset;
  font-weight: unset;
  display: unset;
}

.modalOne .author-wrap h6 {
  font-family: "Montserrat";
  color: var(--theme-color-2);
  font-weight: 700;
  margin: 30px 0 90px;
}

.modalOne .author-wrap h3 {
  font-family: "Montserrat";
  color: var(--theme-color-2);
  font-weight: 500;
  font-size: 15px;
}

.modalOne .author-wrap h6 input {
  border: 0;
  border-bottom: 1px solid var(--theme-color-2);
  background: transparent;
  width: 25%;
  outline: none;
  border-radius: 0;
  padding: 0;
}

.modalOne .author-wrap p {
  color: var(--theme-color-2);
  font-size: 15px;
  font-family: "Montserrat";
  font-weight: 500;
  margin: 50px 0 50px;
}

.modalOne .author-wrap p:last-child {
  color: #000;
}

.author-profile-bg {
  padding: 110px 40px 0 50px;
  background-image: url(../images/author-head-bg.png);
  background-size: 100% 100%;
  position: relative;
  z-index: 1;
}

.author-wrap-bg {
  position: relative;
  margin-top: 30px;
  height: auto;
}

.author-wrap .user-books {
  padding: 20px 20px;
}

.author-wrap-bg::after {
  content: "";
  background-image: url(../images/modalAfter.png);
  width: 395px;
  height: 116px;
  position: absolute;
  bottom: 0;
  object-fit: cover;
  right: 0px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

div#exampleModal1 {
  backdrop-filter: blur(3px);
}

.print-share {
  position: absolute;
  z-index: 99;
  top: 50%;
  right: -20%;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.print-share a {
  padding: 14px 15px;
  background-color: var(--theme-color-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.print-share a:first-child {
  background: linear-gradient(
    180deg,
    rgba(236, 213, 140, 1) 0%,
    rgba(184, 152, 96, 1) 100%
  );
}

.print-share a img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}

a.book-view {
  border: 1px solid var(--theme-color-2);
  padding: 5px 16px;
  color: white !important;
  background: var(--theme-color-2);
  border-radius: 10px;
  font-size: 14px;
}

a.book-view:hover {
  border: 1px solid var(--theme-color);
  padding: 5px 16px;
  color: var(--theme-color) !important;
  background: #ffffff;
  border-radius: 10px;
  font-size: 14px;
}

.disclaimers p {
  font-size: 14px;
  font-family: "Montserrat";
  margin: 15px 0 0;
  color: black;
}

.disclaimers-Sexually {
  padding: 30px 0px 0px 13px;
}

.disclaimers-Sexually p {
  font-size: 14px;
  font-family: "Montserrat";
  margin: 15px 0 0;
  width: 500px;
}

.disclaimers p a {
  font-weight: 700;
  text-decoration: underline;
}

.disclaimers-2 p {
  margin: 15px 0 20px;
}

.radios {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 14px 30px 14px 0;
}

.radios input {
  display: inline-block;
  width: 8% !important;
}

.profile-pic-box {
  display: flex;
  align-items: center;
  gap: 0 30px;
}

.browse-cancel {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 30px 0;
}

.browse-cancel .controls {
  position: unset;
}

.browse label {
  cursor: pointer;
  padding: 10px 20px;
  font-size: 17px;
}

.profile-pic-box .photo-wrap-inner {
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 8px 20px 0px #c9ad6f;
  overflow: hidden;
}

.photo-wrap-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#photoAnchor2 {
  position: relative;
}

.edit {
  background-color: var(--theme-color-2);
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edit img {
  width: 70%;
  height: auto;
}

.profile-form {
  margin-top: 40px;
}

.prof-edit-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modalTwo .modal-dialog {
  max-width: 700px;
}

.modalTwo .modal-footer {
  justify-content: center;
  border: 0;
  padding-bottom: 0;
  padding-top: 20px;
}

.modalTwo .modal-header h2 {
  text-align: center;
  width: 100%;
  font-family: "Montserrat";
  color: #061733;
  font-weight: 500;
  font-size: 30px;
  display: block;
  text-transform: capitalize;
}

form#uploadForm {
  display: flex;
  align-items: end;
  flex-direction: row-reverse;
  gap: 0 15px;
}

.check-flex {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.check-flex p {
  margin: 0;
}

.dash-theme-btn {
  color: #000;
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: normal;
  background-color: #fff;
  padding: 8px 30px;
  display: inline-block;
  border-radius: 30px;
  border: 1px solid #c0c0c0;
  transition: 0.2s all;
}

.dash-theme-btn:hover {
  background-color: var(--theme-color-2);
  color: #fff;
  /*padding: 10px 50px;*/
  border: 1px solid var(--theme-color-2);
}

.dash-theme-btn-2 {
  color: #fff !important;
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: normal;
  background-color: var(--theme-color-2);
  padding: 10px 30px;
  display: inline-block;
  border-radius: 30px;
  border: 1px solid var(--theme-color-2);
  transition: 0.2s all;
}

.dash-theme-btn-2:hover {
  background-color: var(--theme-color-2);
  color: #000;
  padding: 10px 50px;
  border: 1px solid #c0c0c0;
}

/* BookDetail Start */
.bookdetail-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

section.bookdetail-section {
  padding: 100px 0;
  background-image: url(../images/author-back.png);
  background-size: cover;
}

.bookdetail-left img {
  width: 70%;
}

.bookdetail-left {
  background: #fff;
  padding: 50px;
  text-align: center;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 16%);
  border-radius: 15px;
  border: 2px solid #c9aa70;
}

.bookdetail-right {
  padding-left: 30px;
}

.bookdetail-right p {
  background: #ebebeb;
  padding: 12px 20px;
  color: #c9aa70;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  border-bottom: 1px solid rgb(126 126 126 / 19%);
}

.bookdetail-right p strong {
  color: var(--theme-color-2);
}

.bookdetail-right a {
  background: #c9aa70;
  color: var(--theme-color-2);
  font-size: 18px;
  border: 1px solid #c9aa70;
  padding: 16px 40px;
  margin-top: 30px;
  font-weight: 600;
  display: inline-block;
  border-radius: 15px;
}

.bookdetail-right a:hover {
  background: transparent;
  color: #c9aa70;
  font-size: 18px;
  border: 1px solid #c9aa70;
  padding: 16px 40px;
  margin-top: 30px;
  font-weight: 600;
  display: inline-block;
  border-radius: 15px;
}

.bookdetail-left:hover img {
  transform: scale(1.1);
}

.desc__new strong {
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 10px;
  display: block;
}

.desc__new p {
  background: transparent;
  color: #fff;
  padding: 0;
  line-height: 32px;
  font-weight: 300;
  border: 0;
}

.col-md-12.bookdetail-right.desc__new {
  padding: 0;
}

div#bookingModal .modal-dialog .modal-content {
  height: 600px;
  padding-block: 0;
  padding-inline: 40px;
}

div#bookingModal .modal-dialog .modal-body {
  height: auto !important;
  max-height: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

div#bookingModal .modal-dialog .modal-body h5 {
  color: #000;
  text-align: center;
  font-size: 27px;
  font-family: "Poppins";
  margin-bottom: 30px;
}

.step {
  display: none;
}
.step.active {
  display: block;
}
.step-buttons {
  margin-top: 20px;
}
button {
  padding: 8px 15px;
  margin: 5px;
}

.btn-remover {
  position: absolute;
  top: -20px;
  right: -20px;
  background: red !important;
  width: 10px !important;
  height: 10px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 25px !important;
}

.single-comment-reply {
  display: flex;
  align-items: start;
  position: relative;
  padding: 20px 0;
  border: 1px solid #fff;
  border-width: 1px 0;
  margin: 10px 0 0 0;
}

.comment-content button.theme-btn-2 {
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
}

.comment-content button.theme-btn-2:hover {
  color: var(--theme-color) !important;
  background: transparent;
  border: 1px solid var(--theme-color);
}

ul.dropdown-menu.Schedule.show {
  top: -35px !important;
  background-color: var(--theme-color);
  padding-top: 15px;
}

li.schedule-dropdown-item a {
  padding-bottom: 15px !important;
}

.author-flyer {
  border-bottom: 1px solid #011c47;
  margin-bottom: 15px;
  padding: 20px 20px;
  position: relative;
}

.mall_booking {
  padding: 20px 20px 130px;
  position: relative;
}

.authors-name {
  padding: 5px 20px;
  position: relative;
  z-index: 1;
  font-size: 25px;
}

/* BookDetail Start */

/* Dashboard End */
/* user dashboard end */

.contact-left .i4ewOd-pzNkMb-haAclf {
  display: none !important;
}

.author-search button {
  background: none;
  border: 0;
  outline: 0;
  color: #ffffff;
  position: relative;
  z-index: 9;
  right: 0px;
  bottom: 43px;
  height: 100%;
  width: 4%;
}

.author-search form {
  height: 40px;
}

.author-search input.form-control {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(236, 213, 140, 1) 0%,
    rgba(184, 152, 96, 1) 100%
  );
  border: 0;
  border-radius: 29px;
  padding: 13px 20px 13px 50px;
  position: relative;
  color: #fff;
  outline: none;
  box-shadow: none;
  font-family: "Montserrat";
}

.author-book-search input.form-control {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(236, 213, 140, 1) 0%,
    rgba(184, 152, 96, 1) 100%
  );
  border: 0;
  border-radius: 29px 0px 0px 29px;
  padding: 13px 20px 13px 20px;
  position: relative;
  color: #fff;
  outline: none;
  box-shadow: none;
  font-family: "Montserrat";
}

.author-book-search {
  display: flex;
}

.author-book-search button.author-book-search-btn {
  margin: 0;
  background: linear-gradient(
    180deg,
    rgba(236, 213, 140, 1) 0%,
    rgba(184, 152, 96, 1) 100%
  );
  padding: 0px 10px;
  border-radius: 0px 29px 29px 0px;
  color: black;
  border: 0;
}

.Fantasy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

input:focus {
  outline: none;
}

.banner-section.banner-inner-section .d-md-block {
  display: block !important;
  z-index: 1;
}

.book_signing {
  padding: 20px 0;
}

/* Search Result */

.bottom-search-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.middle-search-result img {
  width: 100%;
  height: 220px;
}

/* Author Dashboard Notification */

.notification-item {
  position: relative;
}

.notification-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.notification-text {
  margin: 0;
}

.notification-dropdown {
  display: none;
  position: absolute;
  left: 0%;
  top: 30px;
  z-index: 1;
  overflow: scroll;
  height: 333px;
}

.notification-badge {
  background-color: red;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  padding: 2px 6px;
  margin-left: 5px;
}

.notification-dropdown .dropdown-item {
  color: black;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  width: auto;
}

.read-notification {
  opacity: 1;
}

.notification-dropdown .dropdown-items {
  color: black;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 25px;
}

/* Author Profile Notification */

.author-notification-item {
  position: relative;
}

.author-notification-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.author-notification-text {
  margin: 0;
}

.author-notification-dropdown {
  display: none;
  position: absolute;
  left: 0%;
  top: 85px;
  z-index: 1;
  overflow: overlay;
  height: 275px;
}

.author-notification-badge {
  background-color: red;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  padding: 2px 6px;
  margin-left: 5px;
}

.author-notification-dropdown .dropdown-item {
  color: black;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  width: auto;
}

.read-notification {
  opacity: 1;
}

.author-notification-dropdown .dropdown-items {
  color: black;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 25px;
}

.author-notification-dropdown .dropdown-item span {
    font-size: 15px;
}

/* Author Book Search Result */
.search-writer-slide {
  position: relative;
  overflow: hidden;
  padding: 0 10px;
  z-index: 1;
  transition: 0.2s all;
}

.search-writer-slide:hover:before {
  height: 100%;
}

.search-writer-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000047;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
  transition: 0.2s all;
  height: 0;
  margin: 0 10px;
}

.search-writer-slide img {
  width: 170px;
  transition: transform 0.3s ease;
  overflow: hidden;
  height: 230px;
  object-fit: fill;
}

.search-writer-slide:hover .search-hover-options {
  opacity: 1;
}

.search-hover-options {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  text-align: center;
  z-index: 7;
  transition: 0.2s all;
}

.search-hover-options a {
  display: inline-block;
  margin: 5px;
  padding: 7px 15px !important;
  background-color: var(--theme-color);
  color: var(--theme-color-2) !important;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid var(--theme-color);
}

.selected-books-check {
    display: flex;
    align-items: center;
}

p.selected-books-label {
    margin: 0 !important;
    padding: 10px 10px;
    color: var(--theme-color-2);
    font-size: 20px;
    font-weight: 500;
}
/* View All Books */
.book-card {
    position: relative;
    overflow: hidden;
    padding: 0 10px;
    z-index: 1;
    transition: 0.2s all;
}

.book-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000047;
    z-index: 1;
    width: 87%;
    margin: 0 auto;
    transition: 0.2s all;
    margin: 0 10px;
}

.book-card:hover:before {
    height: 100%;
}
.author-seciton {
    background-image: url(."./images/mall-img.png);
"
"
    background-size: cover;
    position: relative;
    z-index: 99;
}

.author-seciton:after {
    content: '';
    position: absolute;
    background: rgb(1 25 63 / 72%);
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}
.book-card img {
    width: 100%;
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 410px;
    object-fit: fill;
}

.book-card.writer-slide::before {
    width: 93%;
}

.mobile-ham-main {
    display: none !important;
}



/*RESPONSIVE___CSS__STARTS___*/

@media only screen and (max-width: 1600px){}

@media only screen and (max-width: 1400px){

.banner-section .carousel-caption h1 {
    width: 100% !important;
}

footer {
    padding: 90px 0 0;
}

.banner-inner-section .carousel-caption h1 {
    font-size: 39px !important;
}

    
}

@media only screen and (max-width: 1200px){

.navigation ul {
    gap: 0 15px !important;
}

.navigation a {
    font-size: 14px !important;
}

.about-right h1 {
    font-size: 35px !important;
}

.write-head h3 {
    font-size: 25px;
    margin: 0;
}

.writer-img h6 {
    width: 100%;
    font-size: 25px;
}

a#scrollUp {
    display: none;
}

.theme-btn-2:hover {
    font-size: 14px;
}

.back-home:hover {
    width: 15%;
}

.back-home {
    font-size: 14px !important;
}

.contact-left-2 a {
    font-size: 25px;
    line-height: 50px;
}

.banner-section .carousel-caption h1 {
    width: 75%;
}

.main-form-signin h2 {
    text-align: center;
    font-family: "LemonR";
    color: #fff;
    margin-bottom: 17px;
    font-size: 25px;
}

.main-form {
    padding: 30px;
    height: 100%;
    position: relative;
    z-index: 2;
    width: 100% !important;
}

    
    
}

@media only screen and (max-width: 1024px){

.navigation ul {
    gap: 0 15px !important;
}

.navigation a {
    font-size: 12px !important;
}

.rc-anchor-light {
    width: 80% !important;
}

a#scrollUp {
    display: none !important;
}

/*section.about-section .row {*/
/*    display: flex;*/
/*    flex-direction: column !important;*/
/*    align-items: center;*/
/*    width: 100%;*/
/*}*/

.write-btn a {
    font-size: 10px !important;
}

.main-form-signin {
    width: 100%;
}

.banner-section .carousel-caption select {
    margin: 0px auto 4px;
}

.cant-find {
    padding-bottom: 0px;
}

.about-right h1 {
    font-size: 30px !important;
}

.writer-img img {
    margin-bottom: 0px;
}

.writer-img h6 {
    width: 100%;
    font-size: 20px;
}

.write-head h3 {
    font-size: 20px;
    margin: 0;
}
    
}

@media only screen and (max-width: 1050px){
    
.email-flex a {
    font-size: 14px;
}

.col2 ul li a {
    font-size: 14px;
}

.socials {
    gap: 20px;
}

.banner-section .carousel-caption h4 {
    font-size: 40px;
}

.banner-section .carousel-caption {
    top: 20%;
}

.writer-slide img {
    object-fit: cover;
}

.alert.alert-danger.mt-2 {
    font-size: 14px !important;
}

footer {
    padding: 140px 0 0;
}

right.desc__new {
    padding: 50px 10px 0 !important;
}

.bookdetail-right p {
    font-size: 12px;
}

    
}

@media only screen and (max-width: 992px){

.email-flex a {
    font-size: 14px;
}

.socials {
    gap: 30px;
}

.col2 ul li a {
    font-size: 14px;
}

.author-wrape h5 {
    padding: 15px 0 0;
}

.write-mall h6 {
    font-size: 14px;
}

.banner-section .carousel-caption h1 {
    width: 90%;
}

section.about-section .row {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    width: 100%;
}

section.writer-section.writer-section-2.pd-80 {
    padding: 40px 0px 0px;
}
    
    
}

@media only screen and (max-width: 850px){

.email-flex a {
    font-size: 12px;
}

.col2 ul li a {
    font-size: 12px;
}

.socials {
    gap: 15px;
}

.socials i {
    font-size: 20px;
}

.subscribe-form input#exampleFormControlInput1 {
    font-size: 13px;
}

.write-mall {
    gap: 0 0px;
    flex-wrap: wrap;
}

.write-mall .author-flex p {
    font-size: 12px;
}

.write-mall h6 {
    font-size: 12px;
}

.banner-section .carousel-caption {
    top: 5%;
}

.mobile-ham-main {
    display: block !important;
    background: #1c324f;
}

header {
    display: none !important;
}

.mobile-hamburger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px 0;
}

.writer-img img {
    width: 100%;
}

.write-btn {
    text-align: left;
}

.writer-img {
    padding: 0px 0 40px;
}

.writer-img h6 {
    text-align: center;
    padding: 20px 0 0;
}

section.contact-section {
    padding: 0 0 0;
}

.Fantasy {
    padding: 0 0 30px;
}

.back-home {
    font-size: 14px !important;
    width: 18%;
}

.cant-find-mall {
    padding: 20px 0px;
}

.banner-section .carousel-caption h1 {
    width: 100%;
    font-size: 45px !important;
}

.socials {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 0 30px !important;
    justify-content: unset;
}

.main-left h1 {
    font-size: 50px;
    line-height: 45px;
    padding: 25px 0 15px;
}

    
}

@media only screen and (max-width: 768px){

.writer-slides .slick-next {
    right: 10px;
}

.Fantasy h3 {
    font-size: 20px;
}

.d-block.w-100.position-relative {
    height: 100%;
    background-image: url(https://authorcentralstation.com/public/uploads/media/1756171458.jpg);
    background-size: cover;
    background-position: 0px 0px;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}


.writer-slide img {
    object-fit: fill;
}

.writer-slide::before {
    width: 92%;
}

.banner-section .carousel-caption h1 {
    width: 100%;
    font-size: 30px !important;
}

.bookdetail-right {
    padding-left: 0px;
    padding: 40px 0 0;
}


.writer-slides .slick-prev {
    left: -16px;
}

.col2 h4 {
    margin-bottom: 5px;
}

.banner-section .carousel-caption h1 {
    width: 100% !important;
}

.d-none {
    display: block !important;
}

.banner-section .carousel-caption h4 {
    font-family: authentic;
    font-size: 30px;
    margin-bottom: -5px;
}

/*.banner-section .banner-img img {*/
/*    width: 15%;*/
/*    margin: 0;*/
/*}*/

}

@media only screen and (max-width: 576px){

.banner-section .carousel-caption {
    top: 1%;
}

.banner-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-img {
    display: none !important;
}

.banner-section .carousel-caption img {
    margin: 0 auto 10px;
    display: block;
    width: 50%;
}

.write-btn {
    padding: 20px 0 0;
}

.contact-right {
    padding: 25px 0 0;
}

.writer-slides .slick-next {
    right: 5px !important;
}

.head-flex h2 {
    color: #fff;
    font-size: 25px;
}

.main-left h1 {
    font-size: 35px;
    line-height: 30px;
    padding: 25px 0 0px;
}

.back-home {
    font-size: 14px !important;
    width: 26%;
}

.banner-section .carousel-caption select {
    font-size: 15px;
}

.writer-slide img {
    object-fit: fill;
}

.writer-slide::before {
    width: 93%;
}

.col2 h4 {
    padding: 10px 0 10px;
}
    
    
}

@media only screen and (max-width: 450px){
    
.ham-logo {
    width: 60px;
}

.bottom-bar p {
    font-size: 13px;
}

.banner-section .carousel-caption select {
    font-size: 12px;
}

.head-flex {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    margin-bottom: 35px !important;
    flex-wrap: wrap;
}

.col-md-12.bookdetail-right.desc__new {
    padding: 0 10px 0;
}

.writer-slide::before {
    left: 19%;
    width: 57%;
}

.writer-slide img {
    object-fit: contain;
    width: 100%;
}


.ham-logo img {
    width: 100%;
}

.banner-section .carousel-caption h4 {
    font-family: authentic;
    font-size: 18px;
    margin-bottom: -5px;
}

.paragraph_text p {
    font-size: 15px;
    margin: 5px 0px;
}

.cant-find a {
    font-size: 15px;
}

.banner-section .carousel-caption {
    top: -8%;
}

.about-right h1 {
    font-size: 25px !important;
}

.banner-section .carousel-caption h1 {
    width: 100%;
    font-size: 30px !important;
}

section.about-section {
    padding: 40px 0 0 !important;
}

.stall-center h2 {
    font-size: 30px;
}

.stall-section .stall-center h1 {
    width: 65%;
}

.writer-slides .slick-prev {
    left: 20px;
}

.writer-slides .slick-next {
    right: 50px !important;
}

.table tr {
    display: flex;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    background: #fff;
    flex-wrap: wrap !important;
}

.table-bordered > :not(caption) > * > * {
    background: transparent;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #333;
    display: contents;
}

.Fantasy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

    
}

@media only screen and (max-width: 390px){
    
.banner-section .carousel-caption h1 {
    width: 100%;
    font-size: 25px !important;
}

.col-md-12.bookdetail-right.desc__new {
    padding: 0 15px 0;
}

.bookdetail-right a {
    margin-top: 5px;
}

    
}


/*RESPONSIVE___CSS__STARTS___*/


.banner-section .carousel-caption h1 {
    width: 90%;
}

[data-aos] {
  overflow: hidden;
}


/*HAMBURGER__CSS__STARTS____*/

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
    background-color: #c9aa70;
    border-radius: 5px;
    color: black;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}

div#main {
    margin: 0 !important;
}

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;   /* sabse upar rakhne ke liye */
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}


/*HAMBURGER__CSS__STARTS____*/

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on mobile */
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  white-space: nowrap; /* prevent text breaking in small screens */
}

/* Default table style */
.custom-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

/* Mobile responsive design */
@media screen and (max-width: 768px) {
  .custom-table table,
  .custom-table thead,
  .custom-table tbody,
  .custom-table th,
  .custom-table td,
  .custom-table tr {
    display: block;
    width: 100%;
  }

  /* Hide table header */
  .custom-table thead tr {
    display: none;
  }

  .custom-table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  .custom-table td {
    text-align: left;
    padding: 10px 15px;
    position: relative;
  }

  /* Add labels before each cell */
  .custom-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #555;
  }
}



