@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&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");
body {
  font-family: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  margin-bottom: 0px;
}

h1 {
  margin-bottom: 0px;
}

h2,
h3,
h4 {
  margin-bottom: 0px;
}

:root {
  --black: #000;
  --white: #fff;
  --blue: #00399d;
}

/* view btn start */

.view-btn {
  margin-top: 30px;
}
.view-btn a {
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  font-weight: 600;
  letter-spacing: 3px;
  border-radius: 5px;
  transition: 0.4s ease-in-out;
}
.view-btn a:hover {
  background-color: #4277d1;
  color: var(--white);
}

/* responsive css */

@media screen and (max-width: 991px) {
  .view-btn a {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .view-btn {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .view-btn a {
    padding: 5px 10px;
    letter-spacing: 2px;
    font-size: 12px;
  }
}

/* responsive css */

/* view btn end */

/* section css */
section {
  padding: 50px 0px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head .heading {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  color: var(--blue);
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 12px;
  }

  section {
    padding: 20px 0px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head .heading {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  .section-head .heading {
    font-size: 16px;
  }
}

/* section css */

/* footer css */
footer {
  background: var(--white);
  padding: 50px 0px;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 20px 0px;
  }
}

/* footer css */

/* fixed icon start */
.fixed-icon {
  position: fixed;
  right: 1%;
  bottom: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.fixed-icon a {
  display: inline-block;
}

.fixed-icon a img {
  height: 50px;
  filter: drop-shadow(rgba(0, 0, 0, 0.35) 0px 3px 8px);
}

@media screen and (max-width: 767px) {
  .fixed-icon a img {
    height: 40px;
  }
}

/* fixed icon end */

/* top button css start here */

.top {
  display: none;
  color: gray;
  font-size: 24px;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99999999;
}
.top:hover {
  color: #000;
}

/* top button css ends here */

/* custom css start   -------------------------------------------------------- */

/* top-bar css start here */

header {
  padding: 2px 0px;
  background: var(--black);
}

header .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .top-bar a {
  font-size: 14px;
}
header .top-bar p {
  font-size: 14px;
}

/* responsive css start */

@media screen and (max-width: 991px) {
  header .top-bar a {
    font-size: 12px;
  }
  header .top-bar p {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  header .top-bar .phone {
    display: none;
  }
  header .top-bar .mail {
    display: none;
  }
  header .top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/* responsive css ends */

/* ends of top-bar css here */

/* ----------- navbar css start here ----------- */

.navbar {
  padding: 0;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar .logo {
  width: 100px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #000;
  font-weight: 600;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--dark-blue);
}

.navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar .navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0%;
  height: 2px;
  background: var(--dark-blue);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
  opacity: 1;
  width: 100%;
  transition: 0.5s ease-in-out;
}

.head-icons {
  /* background: rgb(14, 13, 13); */
  /* padding: 8px 10px;
  border-radius: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.head-icons img {
  width: 25px;

  /* box-shadow: rgba(239, 58, 8, 0.825) 0px 2px 3px 3px; */
  border-radius: 10px;
}

.navbar-light .navbar-toggler {
  font-size: 1rem;
  border-color: black;
}
.navbar-light .navbar-toggler:focus {
  border: 1px solid var(--blue);
  box-shadow: none;
}

/* responsive navbar */

@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .head-icons {
    padding: 10px 0px;
  }
}

@media screen and (max-width: 767px) {
  .navbar .logo {
    width: 60px;
  }
  .navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top: 10px;
  }
}

/* responsive navbar */

/* ------- dropdown css start ------- */
.dropdown:hover .dropdown-menu {
  display: block;
  transition: 0.5s ease-in-out;
  padding: 50px 6% 0px;
}
.dropdown-menu {
  right: 0% !important;
  left: 0% !important;
  top: 70px !important;
  overflow-x: auto !important;
  max-width: 100% !important;
  background: rgb(248, 246, 246);
  border: none !important;
}

.nav-product .product-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  background: linear-gradient(#95b4e9b9,rgba(197, 194, 194, 0.226));
  box-shadow: rgba(0, 0, 0, 0.35) 0px 3px 8px;
}
.nav-product .product-img img {
  transition: 0.5s ease-in-out;
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 3px 8px; */
}
.nav-product .product-img img:hover {
  transform: scale(0.9);
  transition: 0.4s ease-in-out;
}

.dropdown .dropdown-menu .nav-product {
  margin-bottom: 40px;
}

.dropdown .dropdown-menu .nav-product .product-name p {
  color: var(--black);
  text-align: center;
  font-size: 16px;
}
.dropdown .dropdown-menu .nav-product:hover .product-name p {
  color: var(--yellow);
}

/* responsive dropdown start */

@media screen and (max-width: 991px) {
  .over-f {
    height: 400px;
    overflow-y: scroll;
  }

  .dropdown:hover .dropdown-menu {
    padding: 15px 2% 0px;
  }

  .dropdown .dropdown-menu .nav-product {
    margin-bottom: 20px;
  }
  .nav-product .product-img {
    margin-bottom: 5px;
  }
  .dropdown .dropdown-menu .nav-product .product-name p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .dropdown .dropdown-menu .nav-product .product-name p {
    font-size: 12px;
  }
}

/* responsive dropdown end */

/* ------------ dropdown css ends here ----------- */

/* --------------- end of navbar css here ------------- */

/* -------------------- banner css start here ------------------ */
.carousel-control-prev-icon {
  background-image: none;
  background-image: url(../img/banner/left-red.png);
}

.carousel-control-next-icon {
  background-image: none;
  background-image: url(../img/banner/right-red.png);
}

@media screen and (max-width: 767px) {
  .carousel-control-prev-icon {
    width: 15px;
    height: 15px;
  }

  .carousel-control-next-icon {
    width: 15px;
    height: 15px;
  }
}

/* ------------------ banner css ends here ----------------- */




/* ------------------------------ sub-page banner css start here ----------------------------- */

.sub-banner {
  padding: 60px 0px;

      background: linear-gradient(
      to right,
      rgba(20, 20, 20, 0.699),
      rgba(12, 12, 12, 0.521)
    ),
    url(../img/banner/nimmi-sub-banner1.jpg) no-repeat center center/cover;
}
.sub-banner h1 {
  font-size: 26px;
  color: var(--white);
}
.sub-banner p {
  margin-top: 10px;
  align-items: center;
  color: var(--white);
}
.sub-banner p a {
  color: var(--white);
}

@media screen and (max-width: 767px) {
  .sub-banner {
    padding: 10px 0px;
  }
  .sub-banner h1 {
    font-size: 18px;
  }
  .sub-banner p {
    margin-top: 5px;
  }
}

/* ------------------------------ end of sub-page banner css here ----------------------------- */




/* -------------- down-bar css start here --------------- */

.down-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 2px 0px;
}

/* responsive css */
@media screen and (max-width: 991px) {
  .down-bar p {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .down-bar p {
    font-size: 10px;
  }
}

/* responsive css */

/* -------------- ends of down-bar css here --------------- */

/* ------------------- about us section css start here ------------------- */

.about-us .about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-us .about-content span {
  margin-bottom: 5px;
}

.about-us .about-content h3 {
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 2px;
}
.about-us .about-content p {
  text-align: justify;
  margin-bottom: 10px;
}

.about-us .about-cards .category {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 3px 8px;
  padding: 20px 0px;
  text-align: center;
  margin-bottom: 20px;
}
.about-us .about-cards .category h4 {
  font-weight: 600;
  font-size: 18px;
}

.about-us .about-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.about-us .about-img img {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 3px 8px;
}

/* responsive css start */

@media screen and (max-width: 767px) {
  .about-us .about-content span {
    font-size: 12px;
  }
  .about-us .about-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .about-us .about-content p {
    margin-bottom: 10px;
  }
  .about-us .about-cards .category {
    padding: 10px;
  }
  .about-us .about-cards .category h4 {
    font-size: 14px;
  }
}

/* responsive css end */

/* ------------------- end of about us section css here ------------------- */

/* ----------------- kurti section css start here ----------------- */

.kurti .kurti-card {
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  text-align: center;
}

.kurti .kurti-card .clothes-img {
  position: relative;
}

.kurti .kurti-card .h-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.kurti .kurti-card:hover .h-img {
  opacity: 1;
}

.kurti .kurti-card .kurti-name {
  color: var(--black);
}
.kurti .kurti-card:hover .kurti-name {
  color: var(--blue);
}

@media screen and (max-width: 1200px) {
  .kurti .kurti-card {
    margin-bottom: 20px;
  }
}

/* ------------------  end of kurti section here  ---------------- */

/* accessories section css start here */

.accessories .kurti-card {
  margin-bottom: 40px;
}
.accessories .kurti-card p {
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .accessories .kurti-card {
    margin-bottom: 20px;
  }
}

/* ----------------------- end of accessories section css here ------------------ */

/* ---------------- why choose us section css start here --------------- */

.why-us .why-card {
  text-align: center;
  padding: 20px 0px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.why-us .why-card img {
  width: 80px;
}
.why-us .why-card h3 {
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 18px;
}

/* responsive css */

@media screen and (max-width: 991px) {
  .why-us .why-card {
    padding: 10px 0px;
    margin-bottom: 20px;
  }
  .why-us .why-card img {
    width: 60px;
  }
  .why-us .why-card h3 {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .why-us .why-card img {
    width: 50px;
  }
  .why-us .why-card h3 {
    margin-top: 5px;
    font-size: 12px;
  }
}

/* responsive css */

/* ---------------- end of why choose us section css here --------------- */

/* --------------- contact us section start here -------------- */

.contact-us-sec .sub-head {
  margin-bottom: 20px;
}

.contact-info .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--blue);
}

.contact-info .icon i {
  color: var(--white);
}

.contact-info h3 {
  font-size: 18px;
}
.contact-info h3 a {
  color: var(--black);
}

.contact-us-sec .contact-form .form-control:focus {
  border-color: var(--blue);
  box-shadow: none;
}

.contact-us-sec .contact-form .btn {
  box-shadow: none;
  border: 1px solid #ced4da !important;
}

.contact-us-sec .contact-form .send {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  transition: 0.4s ease-in-out;
}

.contact-us-sec .contact-form .send:hover {
  background: none;
  color: var(--blue);
}

/* responsive css start here */

@media screen and (max-width: 767px) {
  .contact-us-sec .sub-head {
    margin-bottom: 10px;
  }
  .contact-us-sec .sub-head h3 {
    font-size: 16px;
  }

  .contact-info .icon {
    width: 35px;
    height: 35px;
  }

  .contact-us-sec .contact-info h3 {
    font-size: 12px;
  }
}

/* end of responsive css here */

/* --------------- end of contact us section here --------------- */

/* ------------------------- blogs css start here ------------------------ */

.blogs .blog-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px;
  margin-bottom: 40px;
  /* border-radius: 20px; */
}
.blogs .blog-card .blog-img {
  /* border-radius: 20px; */
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.blogs .blog-card .blog-img img {
  /* border-radius: 20px; */
  width: 100%;
  transition: 0.5s ease-in-out;
}
.blogs .blog-card .blog-img:hover img {
  transform: scale(1.1);
  transition: 0.5s ease-in-out;
}

.blogs .blog-card .blog-text h3 {
  font-size: 18px;
  color: var(--blue);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blogs .blog-card .blog-text .date {
  display: inline-block;
  color: rgb(163, 162, 162);
  margin-top: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
}

.blogs .blog-card .blog-text p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
  font-size: 14px;
}

@media screen and (max-width: 991px) {
  .blogs .blog-card .blog-text h3 {
    font-size: 14px;
  }
  .blogs .blog-card .blog-text p {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .blogs .blog-card {
    margin-bottom: 15px;
  }
}

/* ------------------------- end of blog css here ------------------------- */

/* ------------ FAQ's section css start --------------- */
.faq {
  background: linear-gradient(#00000010);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.faq .accordion .accordion-item .accordion-body p {
  color: #000;
}

.faq .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion .accordion-item .accordion-header .accordion-button {
  color: #000;
  font-size: 18px;
  transition: 0.5s ease-in-out;
}

.faq .accordion .accordion-item .accordion-body p {
  font-size: 16px;
}

.faq
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--blue);
}

.faq .accordion .accordion-item .accordion-header .accordion-button::after {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: auto;
  content: "+";
  font-size: 2rem;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 2.25rem;
  transition: transform 0.2s ease-in-out;
}

.faq
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  content: "-";
  font-size: 2rem;
  /* Same size for consistency */
  color: white;
  background-image: none;
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
}

/* responsive css start */
@media screen and (max-width: 981px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 15px;
  }

  .faq .accordion .accordion-item .accordion-body {
    padding: 15px;
  }

  .faq .accordion .accordion-item .accordion-body p {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    padding: 10px;
    font-size: 14px;
  }

  .faq .accordion .accordion-item .accordion-body {
    padding: 10px;
  }

  .faq .accordion .accordion-item .accordion-body p {
    font-size: 12px;
  }
}

/* responsive css end */

/* --------------------- end of FAQ's section css ----------------------- */

/* ---------------- footer css start here --------------- */

.footer .part-1 .footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}
.footer .part-1 .text {
  margin-bottom: 20px;
}
.footer .part-1 .social-icons {
  display: flex;
  gap: 15px;
}
.footer .part-1 .social-icons img {
  width: 25px;
}

.footer .part .head {
  margin-bottom: 20px;
}
.footer .part .head h3 {
  font-size: 22px;
}

.footer .part ul li {
  margin-bottom: 10px;
  transition: 0.3s ease-in-out;
}
.footer .part ul li a {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
.footer .part ul li:hover {
  transform: translateX(10px);
}
.footer .part ul li a:hover {
  color: var(--blue);
}

.footer .contact-info p {
  margin-bottom: 10px;
  font-weight: 450;
  font-size: 14px;
}
.footer .contact-info p a {
  color: var(--black);
  font-weight: 450;
}
.footer .contact-info p i {
  color: var(--blue);
}

.footer-widget {
  margin-top: 40px;
}
.footer-widget a {
  color: var(--black);
}

/* responsive css start here */

@media screen and (max-width: 1200px) {
  .footer .contact-info p a {
    font-size: 13px;
  }
}

@media screen and (max-width: 991px) {
  .footer .part {
    margin-bottom: 20px;
  }
  .footer .part-1 .footer-logo img {
    margin-bottom: 5px;
  }
  .footer .part-1 .text {
    margin-bottom: 5px;
  }
  .footer .part .head {
    margin-bottom: 10px;
  }
  .footer .contact-info p a {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .footer .part .head {
    margin-bottom: 5px;
  }
  .footer .part .head h3 {
    font-size: 18px;
  }
  .footer .part-1 .footer-logo img {
    width: 60px;
  }

  .footer .part ul li {
    margin-bottom: 5px;
  }
}
/* responsive css ends here */

/* ---------------- footer css ends here ---------------- */

/* --------------- tetsimonial css start here ------------ */

.testimonial .customer-card {
  position: relative;
  overflow: hidden;
}
.testimonial .customer-card .testimonial-img {
  position: relative;
}

.testimonial .customer-card .testimonial-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 5px;
  background: linear-gradient(#0000009f, #0a0a0a8b);
  color: var(--white);
}
.testimonial .customer-card .testimonial-text .star {
  margin-bottom: 10px;
}
.testimonial .customer-card .testimonial-text h3 {
  margin-top: 20px;
  font-size: 18px;
}

/* testimonial next-prev */

.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  font-size: 50px !important;
  right: -2%;
  top: 35%;
  color: var(--blue) !important;

  display: inline-block !important;
  padding: 5px !important;
}
.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  font-size: 50px !important;
  left: -2%;
  top: 35%;
  color: var(--blue) !important;

  display: inline-block !important;
  padding: 5px !important;
}

/* responsive css */

@media screen and (max-width: 991px) {
  .owl-carousel .owl-nav button.owl-next {
    right: -4%;
  }
  .owl-carousel .owl-nav button.owl-prev {
    left: -4%;
  }
}

@media screen and (max-width: 767px) {
  .owl-carousel .owl-nav button.owl-next {
    display: none !important;
  }
  .owl-carousel .owl-nav button.owl-prev {
    display: none !important;
  }
}

/* responsive css */
/* testimonial next-prev */

/* --------------- end of tetsimonial css here ------------- */

/* ================================================================================================== */
/* ================================================================================================== */

/* ===================== about page css start here ===================== */

.about-page .about-content p {
  text-align: justify;
  margin-bottom: 5px;
}

.about-page .about-categories {
  background: linear-gradient(#00000010);
}

.about-page .about-categories .category h3 {
  margin-bottom: 5px;
  color: var(--blue);
}

.about-page .about-categories .category p {
  margin-bottom: 30px;
  text-align: justify;
}

/* responsive css start */

@media screen and (max-width: 991px) {
  .about-page .about-categories .category h3 {
    font-size: 22px;
    margin-bottom: 2px;
  }
  .about-page .about-categories .category p {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .about-page .about-categories .category h3 {
    font-size: 16px;
    margin-bottom: 2px;
  }
  .about-page .about-categories .category p {
    margin-bottom: 15px;
  }
}

/* responsive css end */

/* ===================== about page css ends here ====================== */

/* ====================================================================================================== */
/* ====================================================================================================== */

/* =================== contact page css start =================== */

.map-location,
.map-location iframe {
  width: 100%;
  height: 100%;
  height: 400px;
  border: 1px solid #bdbbbb80;
}

@media screen and (max-width: 767px) {
  .map-location,
  .map-location iframe {
    height: 200px;
  }
}

/* ======================== contact page css end ======================== */

/* ====================================================================================================== */
/* ====================================================================================================== */

/* ======================== blog page css start ======================== */

.blog-page .blogs {
  background: linear-gradient(#00000010);
}

/* ======================== blog page css ends ======================== */

/* ====================================================================================================== */
/* ====================================================================================================== */

/* ======================== kurti-tops page css start ======================== */

.kurti-tops-page .kurti {
  background: linear-gradient(#00000010);
}

.kurti-tops-page .kurti .kurti-card {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .kurti-tops-page .kurti .kurti-card {
    margin-bottom: 20px;
  }
}

/* ======================== kurti-tops page css start ======================== */

/* ====================================================================================================== */
/* ====================================================================================================== */

/* ======================== blog detail page css start ======================== */

.blog-detail-page .blog-content h2 {
  font-size: 26px;
  margin-bottom: 5px;
}
.blog-detail-page .blog-content span {
  display: inline-block;
  background: linear-gradient(#00000010);
  padding: 5px 10px;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 600;
}

.blog-detail-page .blog-content p {
  margin-bottom: 5px;
  text-align: justify;
}

.blog-detail-page .blog-content-text h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.blog-detail-page .blog-content-text p {
  margin-bottom: 30px;
  text-align: justify;
} 

.blog-detail-page .related-blogs{
  background: linear-gradient(#00000010);
}

/* responsive css */

@media screen and (max-width: 1200px) {
  .blog-detail-page .blog-content h2 {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .blog-detail-page .blog-content span {
    padding: 2px 5px;
    margin-bottom: 5px;
    font-size: 12px;
  }
  .blog-detail-page .blog-content p {
    font-size: 14px;
  }
  .blog-detail-page .blog-content-text h3 {
    font-size: 16px;
  }
  .blog-detail-page .blog-content-text p {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .blog-detail-page .blog-content h2 {
    font-size: 22px;
  }

  .blog-detail-page .blog-content span {
    padding: 5px 10px;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .blog-detail-page .blog-content-text h3 {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .blog-detail-page .blog-content-text p {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .blog-detail-page .blog-content h2 {
    font-size: 18px;
  }
  .blog-detail-page .blog-content span {
    padding: 2px 5px;
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 12px;
  }
  .blog-detail-page .blog-content p {
    font-size: 12px;
  }
  .blog-detail-page .blog-content-text h3 {
    font-size: 16px;
  }
  .blog-detail-page .blog-content-text p {
    margin-bottom: 10px;
    font-size: 12px;
  }
}

/* responsive css */

/* ======================== blog detail page css ends ======================== */

/* ====================================================================================================== */
/* ====================================================================================================== */

/* ======================== enquiry page css start ======================== */

.enquiry-page .enquiry p {
  text-align: justify;
  margin-bottom: 10px;
}


.enquiry-page .enquiry-content .content-detail h3 {
  margin-bottom: 5px;
}
.enquiry-page .enquiry-content .content-detail p {
  margin-bottom: 30px;
  text-align: justify;
}
.enquiry-page .enquiry-content .content-detail ul {
  margin-bottom: 30px;
}

.enquiry-page .related-products{
  background: linear-gradient(#00000010);
}


/* responsive css */

@media screen and (max-width: 991px) {
  .enquiry-page .enquiry-content .content-detail h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .enquiry-page .enquiry-content .content-detail h3 {
    font-size: 16px;
    margin-bottom: 2px;
  }
  .enquiry-page .enquiry-content .content-detail p {
    margin-bottom: 10px;
  }
  .enquiry-page .enquiry-content .content-detail ul {
    margin-bottom: 10px;
  }
  .enquiry-page .enquiry-content .content-detail ul li {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

/* responsive css */



.enquiry-page .related-products .kurti-card{
  margin: 10px 0px;
}

/* ======================== enquiry page css ends ========================= */
