@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=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/***** General CSS *****/
body {
  word-break: break-word;
  font: 15px / 25px "Montserrat", sans-serif;
  color: #000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
  white-space: initial;
  font-family: "Montserrat", serif;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #000;
}

a:hover {
  transition: all 0.2s ease-in-out;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  transition: all 0.5s ease;
  outline: none;
}

select,
input,
textarea {
  appearance: auto;
}

/***** Font Files *****/
@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bodera";
  src: url(../fonts/bodera-regular.otf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Mouzambik";
  src: url(../fonts/Mouzambik.ttf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

/***** Custom Classes *****/
select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #000;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
  padding: 80px 0;
}

.flexRow,
.flexCol {
  display: flex;
  align-items: center;
}

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

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bodera";
  text-transform: capitalize;
  margin: 0 0 10px;
}

h1 {
  font-size: 156px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
}

h2 {
  font-size: 100px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h3 {
  font-size: 50px;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
}

h4 {
  font-size: 40px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h5 {
  font-size: 35px;
  line-height: 1.2;
  color: #221417;
  font-weight: 500;
}

h6 {
  font-size: 30px;
  font-family: "Mouzambik";
  color: #000;
  font-weight: 500;
}

p {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  color: #242424;
  font-family: "Montserrat", serif;
  margin: 0 0 10px 0;
}

.f54 {
  font-size: 54px;
}

.terracotta {
  color: #d97134;
}

.gray {
  color: #242424;
}

.vandyke-brown {
  color: #221417;
}

.light-brown {
  color: #764240;
}

.dark-brown {
  color: #3e1817;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.anton {
  font-family: "Anton", sans-serif;
}

.mouzambik {
  font-family: "Mouzambik", sans-serif;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.bodera {
  font-family: "Bodera", sans-serif;
}

.gradient {
  background: linear-gradient(90deg, rgba(62, 24, 23, 1) 0%, rgba(118, 66, 64, 1) 100%);
}

.vertical-gradient {
  background: linear-gradient(180deg, rgba(62, 24, 23, 1) 0%, rgba(118, 66, 64, 1) 100%);
}

:root {
  --terracotta: #d97134;
  --gray: #242424;
  --vandyke-brown: #221417;
  --light-brown: #764240;
  --dark-brown: #3e1817;
  --white: #fff;
  --black: #000;
  --anton: "Anton", sans-serif;
  --mouzambik: "Mouzambik", sans-serif;
  --montserrat: "Montserrat", sans-serif;
  --bodera: "Bodera", sans-serif;
}

/* Menu */
.nav ul {
  list-style: none;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 5px;
}

.nav ul li a {
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  color: #ffff;
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 13px;
  padding: 10px 24px;
  display: block;
}

section.header .nav.stroke {
  display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  content: ".";
  color: transparent;
  background: #ffff;
  height: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 30px;
}

.nav.stroke ul li a:hover:after {
  height: 100%;
  width: 100%;
}

.nav.stroke ul li a.active:after {
  height: 100%;
  width: 100%;
}

.nav.stroke ul li a.active {
  color: #3e1817 !important;
}

.nav.stroke ul li a:hover {
  color: #3e1817 !important;
}

/* Buttons Css Start*/
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 32px;
  font-size: 13px;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
  color: #ffff;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
  border-radius: 30px;
}

.theme-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: -1;
  content: "";
  transition: 0.3s ease-in-out;
  background: #ffff;
  border-radius: 30px;
  transform: translate(-50%, -50%);
}

.theme-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  content: "";
  transition: 0.3s ease-in-out;
  background: #221417;
  border-radius: 30px;
}

.theme-btn:hover::before {
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}

.theme-btn.style1 {
  color: #3e1817;
  border: 1px solid;
}

.theme-btn.style1::after {
  background: #ffff;
}

.theme-btn.style1::before {
  background: #221417;
}

.theme-btn.style1:hover {
  transition: 0.3s ease-in-out;
  color: #ffff;
}

/* Buttons Css End*/

/* Loader start */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 1s ease;
  flex-direction: column;
  gap: 5px;
}

#loader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

img.loader {
  width: 10vw;
}

/* Loader end */

/* Custom Scrollbar  */
#style-6::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar-thumb {
  background-color: #f48a12;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}

.scrollbar {
  overflow-y: scroll;
}

/* Custom Scrollbar  */

/* Home Page start*/

/* Header */
.hdr_logo a img {
  object-fit: scale-down;
  padding: 20px 0;
  display: block;
  width: fit-content;
}

section.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.hdr_btn {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.hdr_btn a {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #32191b;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  border: 1px solid #ffffff70;
}

.hdr_logo {
  width: fit-content;
}

/* Header end*/

/* Banner */

.banner-image img {
  height: 700px;
  object-position: top;
}

.banner-image {
  width: 111%;
  position: relative;
  z-index: 1;
  padding-top: 50px;
}


.banner-image::before {
  position: absolute;
  top: 0;
  left: 5%;
  width: 80%;
  height: 80%;
  background: #f4f1e9;
  content: '';
  z-index: -1;
}

.banner_sec {
  position: relative;
  z-index: 1;
  height: auto;
  display: flex;
  align-items: end;
  padding-top: 150px;
}

.banner_sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  content: '';
  background-image: url(../images/banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner_sec::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: '';
  background: linear-gradient(180deg, #3e1817f5 40%, #764240f7 110%);
  opacity: 1;
}

.banner_text {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
}

.banner_text h1 span {
  font-size: 100px;
}

.banner-slider .slick-list {
  height: 100%;
}

.banner-slider .slick-track {
  height: 100%;
}

.banner_text p {
  color: #ffff;
}

.banner_text p {
  color: #ffff;
}

.horizontal-button {
  display: flex;
  align-items: center;
  gap: 20px;
}

.music-card.vertical-card {
  flex-direction: column;
  background: transparent !important;
  padding: 0;
  gap: 0;
  margin-top: -40px;
}

.music-card.vertical-card .music-card-bottom {
  padding: 25px 30px;
  width: 100%;
  background: #0000003b;
  margin: 0;
}

.music-card.vertical-card .music-card-image {
  width: 100%;
  height: 500px;
}

.music-card.vertical-card .music-card-image img {
  border: none !important;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.music-card.vertical-card .music-volume-overlay {
  display: none;
}

.music-card.vertical-card .music-card-bottom * {
  color: #ffff;
}

.music-card.vertical-card .music-progress {
  background: #fff;
  width: 98%;
}

.music-card.vertical-card .music-progress::after {
  background: #fff;
}

.music-card.vertical-card .play-pause-btn {
  background: #fff;
  box-shadow: 0 0 0 8px rgb(255 255 255 / 20%);
}

.music-card.vertical-card .play-pause-btn i {
  color: var(--dark-brown);
}

/* Banner end*/

/* Custom Music Card Styles Start */
.music-card {
  background-color: #f4f1e9;
  /* Specific off-white from image */
  padding: 23px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  border: none;
  margin: 15px 0;
}

.music-card-image {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  display: none;
  /* Hide all by default */
}

.music-card-image.active {
  display: block;
  /* Show active track */
}

.music-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid transparent;
}

.music-card.vertical-card .music-card-image {
  width: 100%;
  height: 500px;
}

.music-card.vertical-card .music-card-image.active {
  display: block;
}

.music-volume-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--light-brown);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  font-size: 19px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.music-volume-overlay:hover {
  opacity: 1;
}

.music-card-bottom {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.music-card-info {
  text-align: center;
  margin-bottom: -10px;
}


.music-card-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}

.music-current-time,
.music-total-time {
  font-size: 13px;
  color: var(--black);
  font-weight: 600;
  min-width: 25px;
}

.music-progress-bar {
  flex-grow: 1;
  height: 2px;
  background: #bbb;
  position: relative;
  cursor: pointer;
}

.music-progress {
  height: 100%;
  background: var(--dark-brown);
  width: 0;
  /* Default for visualization */
  position: relative;
}

.music-progress::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  background: var(--dark-brown);
  border-radius: 50%;
}

.music-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 5px;
}

.music-actions a,
.music-play-pause li {
  color: var(--black);
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
}

.music-play-pause {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.play-pause-btn {
  background: linear-gradient(90deg, rgba(62, 24, 23, 1) 0%, rgba(118, 66, 64, 1) 100%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(62, 24, 23, 0.2);
  transition: transform 0.2s ease;
}

.play-pause-btn:hover {
  transform: scale(1.05);
}

.play-pause-btn i {
  font-size: 22px;
  color: #fff;
}

.music-actions a i:hover,
.prev-btn i:hover,
.next-btn i:hover {
  color: var(--dark-brown);
}

@media (max-width: 768px) {
  .music-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .music-actions {
    gap: 20px;
  }
}


.music-card.active {
  background: linear-gradient(90deg, rgba(62, 24, 23, 1) 0%, rgba(118, 66, 64, 1) 100%);
}

.music-card.active * {
  color: #ffff;
}

.music-card.active .music-progress {
  background: #fff;
}

.music-card.active .music-progress::after {
  background: #fff;
}

.music-card.active .play-pause-btn {
  background: #fff;
  box-shadow: 0 0 0 8px rgb(255 255 255 / 20%);
}

.music-card.active .play-pause-btn i {
  color: var(--dark-brown);
}

.music-card.active .music-card-image img {
  border: 4px solid #fff;
}

.music-card-info h6 {
  margin: 0;
}

.music-card-time {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Custom Music Card Styles End */

/* section start */

section.about_sec {
  position: relative;
  z-index: 1;
  padding: 150px 0;
}

section.about_sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #f4f1e9;
  content: '';
  z-index: -1;
}

.about_image {
  position: relative;
  z-index: 1;
}

img.about-img {
  width: 100%;
  height: 700px;
  clip-path: ellipse(35% 45% at 50% 50%);
}

img.about-before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.about_text {
  padding-left: 60px;
}

/* section end */

/* section start */

section.music-sec {
  position: relative;
  z-index: 1;
  padding-top: 120px;
}

section.music-sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  content: '';
  background: linear-gradient(90deg, rgba(62, 24, 23, 1) 0%, rgba(118, 66, 64, 1) 100%);
}

.music-main {
  padding: 60px 50px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px 0 #00000026;
}

.music-main::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 47%;
  z-index: -1;
  content: '';
  background: #000;
  opacity: 0.5;
}

.music-main::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 47%;
  z-index: -2;
  content: '';
  background: url(../images/music-bg.jpg);
  background-size: cover;
  background-position: center;
}

/* section end */

/* section start */

.book-card {
  background: #f2eee4;
  border: 1px solid #0000003b;
  margin: 10px 10px 30px 10px;
}

.book-card-text {
  padding: 0 40px 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

ul.stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

ul.stars li a i {
  font-size: 12px;
  color: #ffa800;
}

ul.stars span {
  font-size: 11px;
}

.price {
  display: flex;
  align-items: end;
  gap: 10px;
}

.book-card-image img {
  height: 490px;
  object-fit: contain;
}

.price h3 {
  margin: 0;
  font-weight: 200;
}

.book-card-text * {
  margin: 0;
}

.book-card-text p {
  font-size: 17px;
  font-weight: 600;
  opacity: 0.9
}


/* section end */

/* section start */

section.words-sec {
  position: relative;
  z-index: 1;
}

section.words-sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: '';
  background: linear-gradient(90deg, rgba(62, 24, 23, 1) 0%, rgba(118, 66, 64, 1) 100%);
}

.words-box {
  padding: 80px 80px 40px 80px;
  background: #f8f4ea;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  margin: 20px 0 0 0;
}

.words-box p {
  font-size: 16px;
  line-height: 2;
  font-style: italic;
  color: #221417;
  font-weight: 700;
}

.theme-btn:hover {
  color: #000;
}

.words-slider .slick-dots {
  display: flex;
  bottom: -50px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.words-slider .slick-dots li {
  width: 20px;
  height: 20px;
  display: flex;
  opacity: 0.5;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.words-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--white);
}

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

.words-slider .slick-dots li.slick-active {
  opacity: 1;
  background-color: var(--white);
}

.words-slider .slick-dots li.slick-active button {
  background-color: var(--light-brown);
}

.words-slider .slick-prev:hover,
.words-slider .slick-prev:focus,
.words-slider .slick-next:hover,
.words-slider .slick-next:focus {
  color: #fff;
  background-color: var(--light-brown);
}

/* section end */

/* section start */

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box i {
  color: #ffff;
  opacity: 1;
  transition: 0.3s ease-in-out;
  background: linear-gradient(90deg, rgba(62, 24, 23, 1) 0%, rgba(118, 66, 64, 1) 100%);
}

.testimonial_slider .slick-slide.slick-current.slick-active .profile_text p {
  padding: 0 !important;
  transition: 0.3s ease-in-out;
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box h6 {
  transition: 0.3s ease-in-out;
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box p {
  padding: 20px 0 20px 0;
  transition: 0.3s ease-in-out;
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box {
  border-width: 1px;
  border-color: rgb(244, 244, 244);
  border-style: solid;
  border-radius: 0px;
  background-color: #fff;
  box-shadow: 23.013px 9.768px 59px 0px rgba(193, 193, 193, 0.2);
  transition: 0.3s ease-in-out;
}

.testimonial_box:hover {
  background-color: #ffff;
  box-shadow: 23.013px 9.768px 59px 0px rgba(193, 193, 193, 0.2);
  transition: 0.3s ease-in-out;
}

.testimonial_box:hover i {
  opacity: 1;
  background-color: #ffffff;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.testimonial_slider .slick-slide.slick-current.slick-active {
  width: 11% !important;
}

.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active {
  width: 7% !important;
}

.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active+.slick-slide.slick-active {
  width: 7% !important;
}

.testimonial_slider .slick-list.draggable {
  height: 400px;
  padding: 0;
}

.testimonial_slider .slick-active {
  opacity: 1;
}

.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active .testimonial_box {
  border-radius: 0px;
}


.profile i {
  position: relative;
  top: 0;
  left: 0;
  background-color: #000000 !important;
  border: 1px solid #fff;
  color: #fff !important;
}

.testimonial_slider .slick-slide.slick-active+.slick-slide.slick-active .testimonial_box p {
  color: #8a8b8d;
  margin: 0 0 10px;
}

.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active+.slick-slide.slick-active .testimonial_box {
  border-radius: 0px;
}

.testimonial_slider-btn {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}

.testimonial_slider-btn button {
  height: 60px;
  width: 60px;
  display: flex;
  flex-shrink: 0;
  color: #cccccc;
  border-radius: 50%;
  align-items: center;
  transition: ease-out;
  justify-content: center;
  transition-duration: 0.5s;
  border: 1px solid #cccccc;
  background-color: transparent;
}

.testimonial_slider-btn button:hover {
  color: #000;
  transition: ease-in;
  border-color: #5a4140;
  transition-duration: 0.5s;
  background-color: #5a4140;
}

.testimonial_sec .custom-space {
  margin-top: 50px;
}

.testimonial_top_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
}

.testimonial_top_bar p {
  text-align: center;
  color: #666666;
  margin: 0 auto;
  width: 50%;
}

.testimonial_top_bar {
  padding: 30px 0 15px 0;
}

.checked {
  color: #fd8f00;
}

.testimonial_boxspan {
  color: #f9b65d;
}

.testimonial_box {
  padding: 40px 24px 30px 24px;
  height: 350px;
  margin: 25px 0px;
  position: relative;
  background: #f4f1e9;
  border: 1px solid #0000003b;
}

.testimonial_box i {
  position: absolute;
  color: #fff;
  top: -7%;
  opacity: 0;
  padding: 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(62, 24, 23, 1) 0%, rgba(118, 66, 64, 1) 100%);
}

.testimonial_box p {
  padding: 0;
  max-height: 160px;
  font-weight: 500;
  color: #8a8b8d;
  overflow-y: scroll;
  font-family: 'Montserrat';
  padding: 10px 10px 0 0;
}

.profile {
  padding: 30px 0 0 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.profile_text p {
  margin: 0;
  padding: 0;
  overflow-y: visible;
}

.profile_text h6 {
  margin: 0;
  color: #3e1817;
  font-size: 30px;
  font-family: 'Bodera';
}

.profile_text p {
  padding: 0;
  text-transform: uppercase;
}

.heading-left h2 {
  font-size: 80px;
  margin-left: 20px;
}


ul.slider-button button {
  border: 1px solid #0000003b;
  position: unset;
  transform: unset;
}

ul.slider-button {
  display: flex;
  align-items: center;
  justify-content: end;
}

ul.slider-button .slick-prev:before,
ul.slider-button .slick-next:before {
  color: #000000ab;
}

ul.slider-button button.slick-next {
  margin-left: -5px;
}

ul.slider-button button.slick-prev {
  margin-right: -5px;
}

/* section end */

/* New Footer Start */
.footer-sec {
  background-color: #221417;
  padding: 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.footer-section h2.bodera {
  font-size: 50px;
  margin-bottom: 30px;
  color: #fff;
  font-family: 'Bodera', serif;
  font-weight: 100;
}

/* Contact Section */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  color: #ccc;
  font-size: 15px;
}

.contact-list li i {
  font-size: 20px;
  color: #fff;
  margin-top: 5px;
}

.contact-list li a {
  color: #ccc;
  transition: 0.3s;
}

.contact-list li a:hover {
  color: var(--light-brown);
}

/* Vertical Divider for columns */
.vertical-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Subscribe Section */
.subscribe-section p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 30px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 350px;
  margin: 0 auto;
}

.footer-form input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Montserrat';
  text-transform: uppercase;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.subscribe-btn {
  border: none;
  background: linear-gradient(180deg, #3e1817f5 10%, #764240f7 100%);
  padding: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: 0.3s;
  border-radius: 4px;
}

.subscribe-btn:hover {
  filter: brightness(1.2);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.social-links li a {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.social-links li a:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Quick Links Section */
.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links ul li {
  margin-bottom: 20px;
}

.quick-links ul li a {
  color: #ccc;
  font-size: 16px;
  transition: 0.3s;
}

.quick-links ul li a:hover {
  padding-left: 5px;
  color: #fff;
}

/* Footer Bottom Bar */
.footer-bottom {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0;
}

.payment-icons img {
  height: auto;
  margin-left: 10px;
  transition: 0.3s;
  object-fit: scale-down;
  width: auto;
}

.payment-icons img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .vertical-divider {
    border-left: none;
    padding-left: 0;
    margin-top: 50px;
  }

  .footer-section h2 {
    font-size: 35px;
  }

  .footer-section h4 {
    color: #ffff;
  }
}

.footer-section {
  padding: 60px 40px 50px 40px;
}

.footer-section h4 {
  color: #ffff;
}

.footer-form input::placeholder {
  font-size: 15px;
  font-family: 'Montserrat';
  text-transform: uppercase;
  color: #fff;
}

.footer-section.quick-links {
  padding-left: 80px;
}

/* Review Section Start */
.reviews-section {
  padding-top: 20px;
}

.review-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 25px;
}

.review-avatar img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #f4f1e9;
}

.review-date {
  font-size: 13px;
  font-weight: 400;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  font-family: 'Poppins', sans-serif;
}

.write-review-form h4 {
  color: #221417;
}

.custom-input {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 12px 15px;
  background: #fdfdfd;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.custom-input:focus {
  border-color: #3e1817;
  box-shadow: none;
  background: #fff;
}

.rating-picker i {
  cursor: pointer;
  transition: color 0.2s;
}

.rating-picker i:hover,
.rating-picker i.active {
  color: #ffc107;
}

.rating-picker i.fa-solid {
  color: #ffc107;
}

.pointer {
  cursor: pointer;
}

/* Review Section End */

/* InnerPage Aboutus start */

section.banner_sec.inner-banner {
  padding-bottom: 100px;
}

.inner-banner-text h1 {
  font-size: 100px;
  line-height: 1;
  margin: 0;
  color: #000;
}

.inner-banner-text {
  text-align: center;
  padding: 50px 50px;
  background: #f4f1e9;
  width: 84%;
  margin: 0 auto;
}

.inner-banner-text p {
  color: #000;
}

section.about_sec.inner-about.sec {
  padding: 100px 0 30px 0;
}

section.about_sec.inner-about.sec::before {
  height: 76%;
}

.about-para {
  padding-top: 150px;
}

.mission-image {
  width: 80% !important;
  position: relative;
  z-index: 1;
  margin-left: 10%;
}

img.mission-img {
  height: 600px;
  border-radius: 350px;
}

.mission-text {
  padding-left: 0;
  padding-right: 30px;
}

.mission-image::before {
  position: absolute;
  top: 0;
  right: -50px;
  content: '';
  border: 1px solid #673735;
  width: 100%;
  height: 100%;
  border-radius: 300px;
  z-index: -1;
}

.mission-box.vision-box .row {
  flex-direction: row-reverse;
}

.mission-box .row {
  align-items: center;
}

.mission-image.vision-image {
  margin: 0 0 0 10%;
}

.mission-text.vision-text {
  padding-left: 0;
  padding-right: 0;
}

.mission-image.vision-image::before {
  right: unset;
  left: -50px;
}

/* InnerPage Aboutus end */

/*product detail page css start*/
.productdetailsec {
  padding: 80px 0 50px;
}

.productdetailtext h3 {
  font-weight: 200;
  margin: 20px 0 10px 0;
}

.productdetailtext h4 {
  margin: 5px 0;
  font-size: 65px;
}

.productdetailtext h4 span {
  text-decoration: line-through;
}

.productdetailtext ul {
  padding: 0;
  margin: 0;
  align-items: center;
}

.productdetailtext ul li {
  list-style: none;
  display: inline-block;
  font-family: 'Poppins';
  color: 8bb56b;
  font-size: 21px;
}

.productdetailtext ul li a i {
  color: #252525;
  font-size: 18px;
  margin-right: 2px;
}

.productdetailtext ul li:last-child a i {
  color: #252525;
}

.productdetailtext ul li:nth-child(4) a i {
  color: #252525;
}

.productdetailtext p::before {
  content: '';
  height: 10px;
  width: 10px;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 10px;
  background: linear-gradient(180deg, #3e1817f5 40%, #764240f7 110%);
}

.productdetailtext p {
  color: #000000;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
}

.productdetailtext .input-group span.glyphicon.glyphicon-minus {
  font-size: 13px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-plus {
  font-size: 13px;
  margin: 0;
  top: -15px;
  right: 3px;
}

.productdetailtext .input-group input.form-control.input-number {
  width: 100%;
  margin: 0 auto;
  display: table;
  height: 50px;
  text-align: center;
}

.productdetailtext .input-group button.btn.btn-default.btn-number {
  border-radius: 50px;
  width: 30px;
  height: 30px;
  margin: 0 15px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-minus {
  font-size: 13px;
  margin: 0;
  top: -13px;
  right: 5px;
}

.productdetailtext .input-group {
  width: 50%;
  margin: 0 0 34px;
}

.iconlist ul {
  padding: 0;
  margin: 0 0 20px;
}

.iconlist ul li {
  list-style: none;
  line-height: 30px;
  font-family: 'Poppins';
  font-size: 15px;
}

.iconlist ul li i {
  margin: 0 17px 15px 0;
  font-size: 18px;
  color: #3e1817f5;
}

.productdetailtext .input-group span.input-group-btn {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.productdetailsmallportion {
  position: relative;
  top: 0;
  z-index: 99;
}

.productdetailsmallportion img {
  margin: auto;
  width: 100%;
  border: 2px solid #E1E1E1;
  height: 100%;
}

.productdetailsmallportion img:hover {
  border: 2px solid #482324;
}

.productdetailnav .slick-current .productdetailsmallportion img {
  border-color: #482324;
}

.productdetailsec .shop-btn {
  height: 55px;
  width: 150px;
  border-radius: 50px;
  background: #7d0b7f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-family: 'Oswald';
}

.productdetailsec .productdetailportion {
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2eee4;
  border: 1px solid #0000003b;
  margin: 10px;
}

.productdetailnav .slick-slide {
  opacity: 1;
  z-index: 9999;
  position: relative;
}

.product-detail span {
  margin: 0;
}

.product-detail .num-in {
  background: transparent;
  box-shadow: none;
  width: 75%;
}

.product-detail input.in-num {
  border: 1px solid #DADADA;
  background-color: transparent;
  width: 40%;
  margin: 0 5px;
}

.product-detail span {
  width: 30px !important;
  border: 1px solid #E3E3E3;
  border-radius: 50px;
  height: 30px !important;
  margin: 5px;
}

.product-detail .skin-2 .num-in span:before,
.product-detail .skin-2 .num-in span:after {
  background-color: #000;
}

.product-detail span:hover:before,
.product-detail span:hover:after {
  background-color: rgb(255, 255, 255) !important;
}

.product-details-btn.btn10 {
  background-color: #CFA55A !important;
  color: black;
  border-color: #CFA55A;
  font-size: 17px;
}

.quanity.product-detail {
  margin-left: 20px;
}

.product-detail span:hover {
  background: linear-gradient(180deg, #3e1817f5 40%, #764240f7 110%);
}

ul.product-detail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-details-btn {
  height: 60px;
  border: 0;
  width: 180px;
  margin-left: 10px;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #cfa55a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  cursor: pointer;
}

a.cat-sub-btn {
  background: #f7bb1c;
  color: #fff;
  padding: 16px 30px;
}

a.cat-sub-btn:hover {
  background: #000;
}

.productdetailfor .slick-prev:before {
  content: '\f053';
}

.productdetailfor .slick-next:before {
  content: '\f054';
}

.productdetailfor .slick-prev:before,
.productdetailfor .slick-next:before {
  opacity: 1;
  position: absolute;
  color: #4b4b4b;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  font-size: 20px;
}

.iconlist {
  margin-top: 40px;
}

.description li.nav-item {
  margin-right: 12px;
}

.description li.nav-item button {
  width: 100%;
  height: 60px;
  background-color: #F1F1F1;
  border-radius: 0;
  font-size: 20px;
  font-weight: 600;
  color: #361D32;
}

.description li.nav-item .nav-link.active {
  border: 0;
  color: #ffffff;
}

.description .nav-tabs {
  border-bottom: 1px solid #F1F1F1;
  padding-bottom: 20px;
}

.description {
  padding: 0 0 80px 0;
}

.description .tab-content p {
  color: #636363;
  font-weight: 400;
  font-family: 'Poppins';
  font-size: 15px;
  line-height: 30px;
}

.productdetailfor .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.productdetailsmallportion img {
  width: auto;
  /* padding: 12px 20px; */
  position: relative;
  z-index: 999999999999999;
  background-color: #fff;
  width: 130px;
  height: 130px;
  margin: 9px 0;
  object-fit: contain;
  border: 1px solid #1d1d1d;
}

.productdetailnav .slick-list.draggable {
  /*margin-top: -60px;*/
}

.productdetailnav {
  width: 100%;
  margin: 0% auto;
  height: 100%;
}

/* skin 2 */
.skin-2 .num-in {
  background: #F0F0F0;
  box-shadow: 0px 1px 4px rgb(0 0 0 / 15%);
  height: 40px;
  width: 110px;
  float: left;
  border-radius: 12px;
  cursor: pointer;
}

.skin-2 .num-in span {
  width: 40%;
  display: block;
  height: 40px;
  float: left;
  position: relative;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
  content: '';
  position: absolute;
  background-color: #667780;
  height: 2px;
  width: 10px;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -5px;
}

.skin-2 .num-in span.plus:after {
  transform: rotate(90deg);
}

.skin-2 .num-in input {
  float: left;
  width: 20%;
  height: 47px;
  border: none;
  text-align: center;
  background-color: #f0f0f0;
  font-family: 'Poppins';
}

.product-detail .num-in {
  background: transparent;
  box-shadow: none;
  width: 75%;
  display: flex;
  align-items: center;
}

.product-detail input.in-num {
  border: 1px solid #DADADA;
  background-color: transparent;
  width: 40%;
  margin: 0 5px;
}

.productdetailsec .btn10 {
  color: white;
}

/* / skin 2 */
/* tabs sec css*/
.description .nav-tabs .nav-link {
  font-size: 17px;
  border: 0px;
  background: #252525;
  padding: 15px 40px;
  color: #fff;
  font-family: 'Montserrat';
  border-radius: 50px;
  text-transform: capitalize;
}

.description .nav-tabs {
  border-bottom: 0px solid #dee2e6;
}

.description .nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  background: linear-gradient(180deg, #3e1817f5 40%, #764240f7 110%);
  color: #ffffff;
}

.nav-pills .nav-link.active {
  background: #352c6d !important;
  color: #000000;
  padding: 15px 30px;
}

.description .activ {
  background: #352c6d;
  color: #000000;
  /*padding: 15px 30px;*/
}

.tab-pane p {
  color: #333333;
  padding: 15px 0px 0px 0px;
  padding-left: 0;
  font-size: 13px;
  font-family: 'helvetica';
  line-height: 20px;
  margin: 0 0 0 0;
}

#myTab .nav-link.active {
  background: linear-gradient(180deg, #3e1817f5 40%, #764240f7 110%);
  color: white;
}

/*product detail page css end*/
/*related-sec*/
.related-sec {
  padding-bottom: 60px;
}

.related-sec h3 {
  text-shadow: inherit;
}

.related-sec .mg-40 {
  /*margin-top: 40px;*/
}

.blog-inner-sec {
  position: relative;
  padding: 100px 0;
}

/*related-sec*/
/* Blog Detail */
.blog-image>img {
  width: 100%;
}

.recent-blog-tle {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

.recent-blog-tle>img {
  height: 140px;
  width: 170px;
  object-fit: cover;
  margin-right: 15px;
}

.recent-blog-tle h6 {
  color: #000;
}

.arichve-sm {
  color: #147bed;
  border: 1px solid #ddd;
  border-right: 0;
  border-left: 0;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}

.arichve-sm span i {
  margin-right: 5px;
  color: #7d0b7f;
}

section.blog-detail {
  padding: 100px 0;
  position: relative;
}

.recent-blog h3 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  color: #ff3299;
  font-family: 'Oswald';
  margin-bottom: 30px;
  text-transform: uppercase;
}

section.blog-detail h4 {
  font-size: 40px;
  color: #000;
  font-weight: 500;
  margin: 50px 0 40px;
  font-family: 'Oswald';
}

.arichve-sm span {
  width: 50%;
  color: #000;
}

.arichve-sm span:nth-child(2) {
  text-align: right;
  border-left: 1px solid #ddd;
  padding: 7px;
}

.arichve-sm.no-bdr {
  justify-content: start;
  margin: 20px 0 20px;
}

.arichve-sm.no-bdr span {
  width: auto;
}

.arichve-sm.no-bdr span:nth-child(2) {
  padding-left: 30px;
  margin-left: 30px;
}

section.productdetailsec .slick-slide {
  margin: 0;
}

.productdetailfor {
  width: 90%;
}

/* Blog Detail */

/* InnerPage Cart start */
.add-to-cart {
  position: relative;
  padding: 120px 0px;
}

.add-to-cart thead {
  background: linear-gradient(180deg, #3e1817f5 40%, #764240f7 110%);
  color: #fff;
  border-radius: 0px !important;
}

.add-to-cart .table>thead>tr>th {
  border-bottom: 0;
  padding-left: 20px;
  padding-bottom: 25px;
  padding-top: 25px;
  text-align: left;
}

.table-space {
  display: flex;
  align-items: center;
}

.add-to-cart thead tr th {
  font-family: 'Montserrat';
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
}



.table-space h3 {
  text-transform: capitalize;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: 'Montserrat';
  font-weight: 500;
  line-height: 30px;
}

.table-space span {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: #000;
  font-family: 'Cerebrisans Regular';
}

.product-img {
  display: inline-block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-right: 20px;
}

.no-space {
  display: block;
  margin-left: 15px;
}

.product-img img {
  width: 90%;
  border-radius: 9px;
  margin: 10px 0;
  height: 141px;
  object-position: top;
  background: #f8f4ea;
  border: 1px solid #0000003b;
  object-fit: contain;
}

.add-to-cart input {
  width: 100%;
  text-align: center;
  height: 60px;
  border-radius: 6px;
  border: 1px solid #eeeeee;
  font-size: 23px;
  color: #989c96;
  font-weight: 500;
  margin-top: 24px;
  background-color: #f7f7f7;
}

.add-to-cart a {
  font-size: 18px;
  display: block;
  text-align: center;
  padding-top: 9px;
  color: rgba(0, 0, 0, 0.50);
  font-weight: 500;
  text-decoration: none;
  color: #ffff;
}

.add-to-cart h4 {
  font-size: 18px;
  font-weight: 700;
  color: #666666;
  text-align: center;
  margin-top: 50px;
  font-family: 'Montserrat';
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

tr.space {
  border-bottom: 1px solid #ccc;
}

a.remove {
  background: linear-gradient(180deg, #3e1817f5 40%, #764240f7 110%);
  color: #fff;
  font-size: 24px;
  padding: 0px 20px;
  margin-top: 45px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proceed a {
  color: #764240;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: 'Montserrat';
}

.proceed i {
  margin-left: 10px;
}

.proceed .checkout-btn {
  background: linear-gradient(180deg, #3e1817f5 40%, #764240f7 110%);
  border: none;
  padding: 16px;
  border-radius: 0;
  width: 100%;
  font-family: 'Montserrat';
  font-size: 18px;
  font-weight: 500;
  margin-top: 4px;
  border-radius: 0;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Montserrat';
}

.or-amazon {
  margin-top: 50px;
  position: relative;
  border: 1px solid #0000003b;
  /* top: 25px;
     */
  padding: 30px 50px;
  border-radius: 5px;
  background-color: #f8f4ea;
}

.or-amazon p {
  width: fit-content;
  font-size: 18px;
  font-family: 'Montserrat';
  position: absolute;
  background: #f8f4ea;
  top: -18px;
  left: 50%;
  padding: 2px 7px;
  color: #394136;
  display: block;
  text-transform: uppercase;
  transform: translateX(-50%);
  border: 1px solid #0000003b;
}

.or-amazon img {
  width: 80%;
}

.or-amazon a {
  text-decoration: none;
  text-align: center;
}

.total-section {
  border: 1px solid #0000003b;
  padding: 27px 40px;
  background-color: #f8f4ea;
}

.total-section li {
  font-size: 18px;
  padding-bottom: 30px;
  font-family: 'Montserrat';
  color: #000;
  font-weight: 400;
}

li.color-change {
  color: #4a2120;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  font-family: 'Montserrat';
}

.total-section li span {
  float: right;
  font-weight: 500;
}

.ship-estimate {
  padding: 10px 40px;
  margin-top: 10px;
  border: 1px solid #0000003b;
  background-color: #f8f4ea;
}

.ship-estimate ul {
  margin-top: 20px;
  margin-bottom: 50px;
}

.ship-estimate li {
  color: #4a2120;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px 0;
  font-family: 'Montserrat';
}

.ship-estimate .grey-style {
  color: #000;
  font-size: 20px;
  font-family: 'Montserrat';
  font-weight: 400;
  text-transform: capitalize;
}

/* InnerPage Cart end */
/* InnerPage Checkout start */
.billing_form {
  padding: 40px;
  /*background-color: #0e194a;
    */
}

.billing_form h3 {
  font-size: 32px;
  color: #222222;
  margin: 0;
  margin-bottom: 20px;
  text-transform: capitalize;
  line-height: 40px;
  font-weight: 400;
}

.billing_form label {
  font-size: 14px;
  color: #7c7c7c;
  line-height: 20px;
  font-weight: 600;
  font-family: 'Montserrat';
}

input[type="text"]::placeholder {
  font-size: 14px;
  color: #7c7c7c;
  font-weight: 500;
  line-height: 14px;
}

.radiosss p {
  color: #8d8d8d;
  font-size: 12px;
  font-weight: 400;
}

.billing_form input {
  width: 100%;
  height: 45px;
  border: 1px solid #c5c5c5;
  margin-bottom: 20px;
  padding-left: 15px;
  background-color: #faf9f7;
  border-radius: 0px;
  font-size: 14px;
  color: #8d8d8d;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Poppins';
}

.billing_form input::placeholder {
  font-size: 14px;
  color: #8d8d8d;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Poppins';
}

.cart_sidebar .cart_lst li:not(:last-child) {
  margin-bottom: 15px;
  font-family: 'Montserrat';
  color: #8d8d8d;
}

.cart_sidebar .cart_lst li {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.cart_sidebar .cart_lst li span {
  float: right;
}

.cart_sidebar .cart_lst li:last-child {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
  font-family: "Bodera";
}

.cart_sidebar .cart_lst {
  margin-top: 20px;
  margin-bottom: 40px;
}

.thankyou_txt {
  padding: 50px;
  border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
  font-size: 35px;
  color: #000;
  font-weight: 800;
  margin: 0;
}

.thankyou_txt h3 i {
  font-size: 40px;
  margin-right: 15px;
}

.order_det h5 {
  font-size: 20px;
  color: #7c7c7c;
  font-weight: 400;
}

.order_det p {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin: 0;
}

.order_complete_detail h3 {
  font-size: 22px;
  color: #000;
  font-weight: 700;
}

.order_detail_table {
  padding: 40px;
  border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
  margin-top: 0px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dbdbdb;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.order_detail_table ul {
  margin-top: 20px;
  margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
  margin-bottom: 25px;
}

.order_detail_table ul li {
  font-size: 14px;
  color: #7c7c7c;
}

.order_detail_table ul li span {
  float: right;
}

.order_detail_table ul li:last-child {
  font-weight: 700;
  color: #000;
}

.order_detail_table h6 {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  padding: 25px 0;
  border-top: 1px solid #dbdbdb;
  margin: 0;
}

.order_detail_table h6 span {
  float: right;
}

.check_menu ul {
  text-align: center;
  margin-bottom: 40px;
}

.check_menu ul li {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #7c7c7c;
  margin: 0 14px;
}

.check_menu ul li i {
  font-size: 18px;
}

.check_menu ul li.purp {
  color: #4b902c;
}

.cart_sidebar {
  padding: 40px 25px;
  border: 1px solid #bfbfbf;
  border-radius: 0px;
  background: #faf9f7;
}

.cart_sidebar h3 {
  font-size: 25px;
  color: #000;
  margin-top: 0px;
  line-height: 25px;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.cart_sidebar button {
  border: none;
  padding: 12px 117px;
  color: #fff;
  border-radius: 0;
  background: linear-gradient(180deg, #3e1817f5 40%, #764240f7 110%);
  font-size: 19px;
  font-family: montserrat;
  margin-top: 20px;
  display: block;
}

.cart_sidebar .h-sub {
  font-weight: 500;
  color: #000;
  font-size: 24px;
  border-bottom: 1px solid #373a33;
  margin-bottom: 20px;
  line-height: 0;
  padding-bottom: 30px;
  padding-top: 20px;
}

.cart_sidebar h5 span {
  float: right;
}

.cart_sidebar h4 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

.cart_sidebar ul li input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.cart_sidebar ul li label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  /* color: #000;
     */
  /* font-family: 'Montserrat';
     */
  color: #8d8d8d;
  font-family: 'Montserrat';
}

.cart_sidebar ul li label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #c4c4c4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

.cart_sidebar ul li input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #603433;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
  margin-bottom: 15px;
}

.cart_sidebar form {
  margin-top: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
  font-size: 14px;
  font-weight: 400;
  color: #b7b7b7;
}

.cart_sidebar form select {
  width: 100%;
  height: 40px;
  padding-left: 15px;
  border-radius: 0;
  border: 1px solid #b7b7b7;
  margin-bottom: 20px;
  appearance: auto;
  color: #b7b7b7;
}

.cart_sidebar form select option {
  color: #000;
}

.cart_sidebar form input {
  width: 100%;
  height: 40px;
  padding-left: 15px;
  border-radius: 0;
  border: 1px solid #b7b7b7;
  margin-bottom: 20px;
  appearance: auto;
  color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
  color: #b7b7b7;
}

.cart_sidebar form button {
  color: #000;
  font-size: 15px;
  border-radius: 0px;
  font-family: 'Poppins', sans-serif;
  padding: 10px 40px;
  background-color: #ebebeb;
  border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
  background-color: transparent;
  transition: 0.3s ease-in-out;
}

.checkout_btn {
  padding: 14px 50px;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  background: linear-gradient(180deg, #63ab1e 60%, #4a8f2c 100%);
  text-transform: uppercase;
  border-radius: 100px;
}

.Quick_info ul li a {
  text-transform: lowercase;
  font-size: 14px;
}

ul.shipping-ul {
  border-bottom: 1px solid #000;
  margin: 0;
  padding-bottom: 30px;
}

h6.payment-h {
  font-weight: 400;
  color: #000;
  font-size: 24px;
  margin-bottom: 30px;
  text-transform: capitalize;
  font-family: "Bodera";
}

label {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  color: #7c7c7c;
  font-weight: 500;
  margin-bottom: 12px;
}

.cart_sidebar .radiosss-payments li label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #b7b7b7;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  border-radius: 20px;
  left: 6px;
  border: 0;
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, #3e1817f5 40%, #764240f7 110%);
}

.radiosss-payments .card.card-body {
  padding: 0;
  /* border: 1px solid #e9e9e9;
     */
  margin-left: 0;
  padding: 10px;
  background-color: #ffffff9e;
}

.radiosss-payments {
  border-bottom: 1px solid #e9e9e9;
}

.billing_form {
  padding: 20px;
  border-radius: 0;
}

section.checkout_page {
  background-image: url(../images/cont-bg.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}

.productdetailportion img {
  height: 550px;
  object-position: top;
}


/* InnerPage Checkout end */


/*CONTACT PAGE CSS STRT*/
.contact_detail_box figure img {
  margin: auto;
  filter: brightness(0) saturate(100%) invert(12%) sepia(11%) saturate(2989%) hue-rotate(314deg) brightness(106%) contrast(100%);
}

.contact_detail_box h2 {
  font-size: 19px;
  line-height: 24px;
  color: #fff;
  font-weight: 600;
  margin: 30px 0 10px 0;
  font-family: 'Montserrat';
}

.contact_detail_box p a {
  font-size: 15px;
  line-height: 24px;
  color: #636363 !important;
  margin: 0;
  font-family: 'Poppins';
  letter-spacing: 1px;
}

.contact_detail_box {
  padding: 50px 30px;
  border: 2px solid #3e1817;
  height: 280px;
  border-radius: 0;
  transition: 0.5s;
}

.contact_detail_box:hover {
  background: #3e1817;
  color: white;
}

.contact_form {
  padding-bottom: 80px;
}

.contact_form label {
  font-size: 14px;
  font-weight: 500;
  color: #5D5D5D;
  margin-bottom: 10px;
  font-family: 'Montserrat';
}

.contact_form input {
  height: 52px;
  width: 100%;
  box-shadow: none !important;
  outline: none;
  border: 1px solid #d1d1d1;
  padding: 0px 20px;
  margin-bottom: 20px;
  border-radius: 1px;
  background-color: transparent;
  color: black;
}

.btn_contact {
  border: 0;
  right: 0;
  background-color: #00007c;
  color: #fff;
  padding: 10px 40px;
  border: 2px solid #00007c;
  transition: 0.3s ease-in-out;
}

.btn_contact:hover {
  border: 0;
  right: 0;
  background-color: #fff0;
  color: #00007c;
  padding: 10px 40px;
  border: 2px solid #00007c;
}

.centerCol {
  margin: 0 auto;
  float: none;
}

.contact_form textarea {
  width: 100%;
  border: 1px solid #D5D5D5;
  margin-bottom: 20px;
  padding: 20px;
  background-color: transparent;
  color: #5D5D5D;
  border-radius: 9px;
}

.contact-sec-h h6 {
  font-size: 70px;
  line-height: 1;
  color: #000000;
  font-weight: 400;
  margin-bottom: 20px !important;
  font-family: "Bodera";
}

.contact-sec-h p {
  font-size: 14px;
  width: 85%;
  color: #636363;
  margin: auto;
  font-weight: 500;
  line-height: 23px;
}

.contact_page.all-section {
  background-color: #ffffff;
  padding: 100px 0 80px 0;
}

.contact_form {
  background-color: #fff;
}

.btn_wrap.text-center button {
  border: none;
  background: #ffac1c;
  padding: 15px 71px;
  font-family: 'Montserrat';
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
}

.btn_wrap.text-center button::before {
  background: #000;
  height: 0;
}

.contact_detail_box p {
  margin-bottom: 0;
  margin: 0 auto;
  width: 82%;
  font-weight: 400;
}

figure img {
  width: 50px;
}

section.contact_form button.theme_btn.theme_btn2 {
  padding: 15px 45px;
  background: #333333;
  text-transform: uppercase;
}

.number-item input::-webkit-outer-spin-button,
.number-item input::-webkit-inner-spin-button {
  -webkit-appearance: auto;
  margin: 0;
}

.contact_detail_box.text-center * {
  color: #000;
}

.contact_detail_box:hover h2 {
  color: #fff;
}

.contact_detail_box:hover p {
  color: #fff;
}

.contact_detail_box:hover a {
  color: #fff !important;
}


section.inner-music-sec .music-main::before {
  height: 23%;
}

section.inner-music-sec .music-main::after {
  height: 23%;
}
/*CONTACT PAGE CSS END*/



/* InnerPage Login start */
.login-body {
  background: url(../images/login-bg.png) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
}

.text-blue {
  color: #100c6c;
}

.text-black {
  color: #000 !important;
}

.log-in-wrap {
  padding: 40px 40px;
  float: right;
  width: 100%;
  border-radius: 0;
  background: #ffff;
  box-shadow: 0 0 20px 0 #00000026;
}

.form-group {
  margin-bottom: 15px;
}


.log-in-wrap h2 {
  margin: 0 0 20px 0;
  text-align: left;
  color: #000;
  font-size: 50px;
  text-transform: capitalize;
  line-height: 50px;
  font-weight: 500;
  text-align: center;
}

.log-in-wrap.signup-bg h2 {
  color: #000;
}

.log-in-wrap.signup-bg input::placeholder {
  color: #fff;
}

.login_btn {
  width: 100%;
  background: linear-gradient(90deg, rgba(62, 24, 23, 1) 0%, rgba(118, 66, 64, 1) 100%);
  padding: 10px;
  display: block;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid var(--yellow2);
  transition: 0.5s all;
  font-family: 'Montserrat';
}

.contact-page-main .form-control {
  height: 45px;
  background-color: #ffffff;
  border-color: #d5d5d5;
}

.log-in-page-main .form-check label.form-check-label {
  font-size: 14px;
  font-weight: 300;
  /* font-family: 'Lato'; */
  margin: 0;
  font-weight: 300;

  color: #000;
}

.form-check-input:checked {
  background-color: var(--yellow2);
  border-color: var(--yellow2);
}

.log-in-page-main .form-check,
.forgot-pass {
  display: inline-block;
}




.forgot-pass {
  text-align: right;
  width: 74%;
}

.forgot-pass a {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  color: #000;
  font-family: 'Poppins';
}

.term-condition:hover {
  color: #000;
}

.forgot-pass a:hover {
  color: var(--yellow2);
}

.agree-text {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 500;
}

.term-condition {
  font-weight: 500;
  margin-left: 10px;
  color: var(--yellow2);
  border-bottom: 2px solid var(--yellow2);
  /* font-size: 15px; */
}

.form-check {
  float: left;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  display: block;
  width: 100%;
  height: 50px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  font-weight: 500;
  font-family: 'Poppins';
  color: #b2b2b2;
}

.log-in-wrap input::placeholder {
  font-weight: 500 !important;
  font-family: 'Poppins' !important;
  color: #b2b2b2 !important;
}


.login_btn:hover {
  /* background-color: transparent; */
  /* border: 2px solid var(--yellow2); */
  color: #000;
}

.login-forms {
  padding: 80px 0;
}

.login-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0;
}

.login-menu ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.header-main-right {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.login-menu {
  width: 100%;
}

.sign-up-btn {
  width: 42%;
}

.sign-up-btn a {
  color: var(--yellow1);
  border: 1px solid var(--yellow1);
  padding: 10px 25px;
  border-radius: 60px;
  font-size: 18px;
}

.sign-up-btn a:hover {
  background: var(--yellow1);
  color: #000;
}

.log-in-wrap.signup-bg .form-control::placeholder {
  color: #000;
  font-family: 'Montserrat', sans-serif;
}

.log-in-wrap.signup-bg button.login_btn {
  background: #fff;
  color: #fff;
  font-family: 'Montserrat';
  background: linear-gradient(90deg, rgba(62, 24, 23, 1) 0%, rgba(118, 66, 64, 1) 100%);
}

.term-condition {
  color: #111111 !important;
  border-color: #000;
  border-bottom: 1px solid;
}

.log-in-wrap.signup-bg button.login_btn:hover {
  /* background: transparent; */
  color: #000;
  border-color: #000;
}

.form-check .form-check-input:checked[type=checkbox] {
  filter: invert(1);
}

.form-check label {
  cursor: pointer;
  color: #000;
  font-family: 'Poppins';
}

/* InnerPage Login end */

/* InnerPage Aboutus start */

.number-item.cart-item {
    display: flex;
    align-items: center;
    background: #f8f4ea;
    justify-content: center;
    height: 60px;
    margin: 40px 20px 10px 20px;
    border: 1px solid #0000003b;
}

.number-item.cart-item input.in-num {
    margin: 0;
    height: 100%;
    background: transparent;
}

.number-item.cart-item  .skin-2 .num-in {
    background: transparent;
    box-shadow: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.number-item.cart-item  .skin-2 .num-in span {
    border-radius: 50%;
    border: 1px solid;
    width: 20px;
    height: 20px;
}

p.update {
    text-align: center;
}

.btn_wrap.text-center {
    display: flex;
    justify-content: center;
}

/* InnerPage Aboutus end */

/* Poetry Detail Page CSS Start */
.poetry-detail-box {
    background: var(--white);
    padding: 0;
}

.poetry-top-nav {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.nav-left {
    flex: 0 0 430px;
}

.nav-right {
    flex: 1;
}

.search-form {
    display: flex;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    height: 60px;
    padding: 5px;
}

.search-form input {
    flex: 1;
    border: none;
    padding: 0 15px;
    font-size: 14px;
    font-family: var(--montserrat);
}

.search-form button {
    background: linear-gradient(180deg, #3e1817f5 40%, #764240f7 110%);
    color: var(--white);
    border: none;
    padding: 0 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--montserrat);
}

.topic-dropdown {
    position: relative;
    width: fit-content;
    cursor: pointer;
}

.dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #3e1817f5;
    padding: 12px 15px;
    background: var(--white);
    color: #3e1817f5;
    font-size: 14px;
    font-family: var(--montserrat);
    gap: 40px;
    font-weight: 600;
}

.topic-dropdown i {
    font-size: 12px;
    color: var(--light-brown);
    transition: 0.3s;
}

.topic-dropdown.show i {
    transform: rotate(180deg);
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border: 1px solid #3e1817f5;
    border-top: none;
    z-index: 10;
    display: none;
    padding: 0;
    margin: 0;
    list-style: none;
}

.topic-dropdown.show .dropdown-list {
    display: block;
}

.dropdown-list li a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    transition: 0.2s;
}

.dropdown-list li a:hover {
    background: #f8f8f8;
    color: var(--light-brown);
}

.featured-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.poetry-header {
    margin-top: -170px;
    margin-bottom: 40px;
}

.poetry-title {
    font-family: var(--bodera);
    font-size: 70px;
    color: var(--black);
    margin-bottom: 20px;
    text-transform: none;
}

.share-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 700;
    color: var(--light-brown);
    font-size: 20px;
    font-family: var(--montserrat);
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
    transition: 0.3s;
}

.share-icons a:hover {
    background: var(--light-brown);
    color: var(--white);
    border-color: var(--light-brown);
}

.poetry-body {
    margin-bottom: 40px;
}

.poetry-body p {
    font-family: var(--montserrat);
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    font-weight: 400;
}

.poetry-quote {
    font-size: 16px;
    font-style: italic;
    color: var(--light-brown);
    line-height: 1.4;
    margin: 40px 0;
    font-family: var(--montserrat);
    font-weight: 600;
    width: 60%;
}

.poetry-author-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 50px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-info i {
    font-size: 20px;
    color: var(--light-brown);
}

.author-info span {
    font-weight: 600;
    font-size: 14px;
    font-family: var(--montserrat);
}

.author-actions {
    display: flex;
    gap: 20px;
}

.author-actions a {
    color: #888;
    font-size: 18px;
    transition: 0.3s;
}

.author-actions a:hover {
    color: var(--light-brown);
}

.poetry-related {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
}

.related-img {
    flex: 0 0 350px;
}

.related-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.related-content h4 {
    font-family: var(--bodera);
    font-size: 40px;
    margin-bottom: 15px;
    text-transform: none;
}

.poetry-comments h3,
.poetry-post-comment h3 {
    font-family: var(--bodera);
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 400;
}

.comment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.comment-avatar {
    flex: 0 0 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
}

.comment-details {
    flex: 1;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.user-info h5 {
    font-family: var(--bodera);
    font-size: 24px;
    margin: 0;
    text-transform: none;
}

.comment-date {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.reply-btn {
    border: 2px solid var(--light-brown);
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    border-radius: 0;
    transition: 0.3s;
}

.reply-btn:hover {
    background: var(--light-brown);
    color: var(--white);
}

.poetry-post-comment {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.comment-form .form-group {
    margin-bottom: 25px;
}

.comment-form .form-row {
    display: flex;
    gap: 20px;
}

.comment-form .half-width {
    flex: 1;
}

.comment-form textarea,
.comment-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    font-family: var(--montserrat);
    font-size: 14px;
    background: transparent;
}

.comment-form textarea {
    height: 100px;
    resize: none;
    padding-top: 60px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--light-brown);
}

.comment-form .theme-btn {
    margin-top: 20px;
    border: none;
}

@media (max-width: 991px) {
    .poetry-top-nav, .poetry-related {
        flex-direction: column;
    }
    .nav-left, .related-img {
        flex: 1;
        width: 100%;
    }
    .poetry-title {
        font-size: 50px;
    }
}
/* Poetry Detail Page CSS End */

/* Poetry Listing Page CSS Start */
.poetry-heading h2 {
    font-family: var(--bodera);
    font-size: 110px;
    color: var(--black);
    margin-bottom: 40px;
}

.poetry-nav {
    margin-bottom: 80px;
}

.filter-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    display: block;
    padding: 10px 35px;
    border-radius: 30px;
    border: 1px solid var(--light-brown);
    color: var(--black);
    font-family: var(--montserrat);
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
    text-transform: uppercase;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--vandyke-brown);
    color: var(--white);
    border-color: var(--vandyke-brown);
}

.poetry-item {
    margin-bottom: 80px;
    border-top: 1px solid #d1d1d1;
}

.poetry-item-info {
    padding-right: 30px;
}

.meta-data {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.meta-data span {
    font-family: var(--montserrat);
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-data span i {
    color: var(--light-brown);
}

.poetry-item-title {
    font-family: var(--bodera);
    font-size: 45px;
    color: var(--black);
    margin-bottom: 0;
    text-transform: none;
}

.poetry-item-img {
    width: 100%;
    height: 200px;
}

.poetry-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poetry-item-desc {
    font-family: var(--montserrat);
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin-top: 30px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .poetry-heading h2 {
        font-size: 60px;
    }
    .poetry-item-title {
        font-size: 35px;
    }
    .poetry-item-info {
        padding-right: 0;
        margin-bottom: 20px;
    }
}

.poetry-bottom {
    width: 70%;
}

/* Poetry Listing Page CSS End */