/* @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap'); */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typography */
body {
  position: relative;
  height: auto !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.8;
  font-size: 1rem;
  overflow-x: hidden;
  font-family: var(--primary-font);
}

section {
  padding: 3rem 0;
}

@media (max-width: 1100px) {
  section {
    padding: 2.5rem 0;
  }
}

footer {
  margin-top: auto;
}

.border-gray-border_100 {
  border: 0.0625rem solid var(--borderclr);
  width: 100%;
}

input {
  font-size: 1rem;
}

input:focus {
  box-shadow: none;
  outline: none;
}

input::placeholder {
  font-size: 1rem;
}

textarea {
  font-size: 1rem;
}

textarea:focus {
  box-shadow: none;
  outline: none;
}

textarea::placeholder {
  font-size: 1rem;
}

a {
  font-size: 1rem;
  text-decoration: none;
  color: var(--darkclr);
}

label {
  font-size: 1rem;
}

a:hover {
  color: var(--themesecondaryclr);
}

p {
  font-size: 1rem;
  text-align: justify;
}

span {
  font-size: 1rem;
}

ul {
  padding-left: 0rem;
  margin-bottom: 0rem;
}

ul li {
  list-style: none;
}

ol li {
  list-style: none;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.fs-same {
  font-size: 1rem !important;
}





.btn-theme-one {
  background-color: var(--themeprimaryclr);
  /* padding: 0.4rem 0.75rem 0.3rem; */
  padding: 0.4375rem 1.1875rem;
  min-height: 2.25rem;
  font-size: 1rem;
  width: 100%;
  color: var(--plainclr);
  font-family: var(--primaryfont);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.625rem;
  font-weight: 400 !important;
  transition: all .5s linear;
  text-transform: capitalize !important;
}

@media (max-width:1199px) {
  .btn-theme-one img {
    width: 1.25rem;
  }
}

@media (max-width:575px) {
  .btn-theme-one img {
    width: 0.875rem;
    margin-left: 0.1875rem !important;
  }
}

.btn-theme-one:hover {
  background-color: var(--themesecondaryclr);
  color: var(--plainclr);
}

@media (max-width: 1100px) {
  .btn-theme-one {
    font-size: 0.8rem;
  }
}

/* fixed btn on the right side ends*/

.btn-theme-two {
  background-color: var(--themesecondaryclr);
  color: var(--plainclr);
  padding: 0.4375rem 1.1875rem;
  min-height: 2.25rem;
  font-size: 1rem;
  width: 100%;
  font-family: var(--primaryfont);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.625rem;
  font-weight: 400 !important;
  transition: all .5s linear;
  text-transform: capitalize !important;
}

@media (max-width:1199px) {
  .btn-theme-two img {
    width: 1.25rem;
  }
}

@media (max-width:575px) {
  .btn-theme-two img {
    width: 0.875rem;
    margin-left: 0.1875rem !important;
  }
}

.btn-theme-two:hover {
  background-color: var(--themeprimaryclr);
  color: var(--plainclr);
}

@media (max-width: 1100px) {
  .btn-theme-two {
    font-size: 0.8rem;
  }
}

/* fixed btn on the right side */
.book-appoint-div,
.buy-now-div {
  position: fixed;
  transform: rotate(-90deg);
  font-size: 1.25rem;
  z-index: 999;
  box-shadow: 0 0 0.9375rem #b1b1b1;
}

.book-appoint-div,
.buy-now-div {
  border-radius: 0.625rem 0.625rem 0 0 !important;
}

.buy-now-div {
  right: calc(0% - 4.375rem);
  top: 30%;
}

.btn-book-appoint,
.buy-now-div .buy-btn {
  border-radius: 0.625rem 0.625rem 0 0 !important;
  font-size: 1.0625rem;
}

.buy-now-div .buy-btn {
  height: 2.5rem;
  display: block;
}

@media only screen and (max-width: 480px) {

  .btn-book-appoint,
  .buy-now-div .buy-btn {
    font-size: 0.9375rem;
  }
}

@media only screen and (max-width: 767px) {
  .buy-now-div {
    display: none;
  }
}




.main-heading {
  font-size: 1.7rem;
}

.sub-heading {
  font-size: 1.3rem !important;
}

.sub-heading-two {
  font-size: 1.1rem
}

.main-heading,
.sub-heading :hover {
  color: var(--themeprimaryclr);
}

.hover-change {
  transition: all 0.4ms ease-in-out;
}

.hover-change:hover {
  background-color: var(--themeprimaryclr);
}

.checkbox {
  width: 1em;
  height: 1em;
  margin-top: 0.3em;
  background-color: var(--themeprimaryclr);
  border: 1px solid var(--themeprimaryclr);
  appearance: none;
  print-color-adjust: exact;
}

.checkbox:checked {
  background-color: var(--themeprimaryclr);
  border-color: var(--themeprimaryclr);
}

.checkbox:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--plainclr), 0.25);
}

.radio-button {
  border-radius: 50%;
}

.radio-button:checked {
  background-color: var(--themeprimaryclr);
  border-color: var(--themeprimaryclr);
}

.radio-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--plainclr), 0.25);
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--table-border1);
}

th {
  font-weight: bold;
  text-align: start;
  background-color: var(--bs-table-bg);
  border-bottom: 2px solid var(--plainclr);
}

tr {
  border-top: 1px solid var(--table-border1);
}

td {
  padding: 0.75rem;
  border-top: 1px solid var(--plainclr);
}

span.title {
  text-wrap: nowrap;
  font-size: 1.5rem;
  font-weight: 500;
}

.sec-des {
  font-size: 1rem !important;
}



@media (max-width: 1199px) {
  span {
    font-size: 0.82rem;
  }

  p {
    font-size: 0.82rem;
  }

  a {
    font-size: 0.82rem;
  }

  label {
    font-size: 0.82rem;
  }

  h1 {
    font-size: 2.1rem !important;
  }

  h2 {
    font-size: 1.79rem !important;
  }

  h3 {
    font-size: 1.7rem !important;
  }

  h4 {
    font-size: 1.3rem !important;
  }

  h5 {
    font-size: 1.134rem !important;
  }

  h6 {
    font-size: 1rem !important;
  }

  .main-heading {
    font-size: 1.5rem;
  }

  .sub-heading {
    font-size: 1.1rem !important;
  }

  .fs-same {
    font-size: 0.82rem !important;
  }

  span.title {
    font-size: 1.1rem;
  }

  .sec-des {
    font-size: 0.82rem !important;
  }
}

@media (max-width: 1100px) {
  span {
    font-size: 0.8rem;
  }

  p {
    font-size: 0.8rem;
  }

  a {
    font-size: 0.8rem;
  }

  label {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  h3 {
    font-size: 1.5rem !important;
  }

  h4 {
    font-size: 1.25rem !important;
  }

  h5 {
    font-size: 1.125rem !important;
  }

  h6 {
    font-size: 1rem !important;
  }

  .main-heading {
    font-size: 1.5rem;
  }

  .sub-heading {
    font-size: 1.1rem !important;
  }

  .fs-same {
    font-size: 0.8rem !important;
  }

  span.title {
    font-size: 1.1rem;
  }

  .sec-des {
    font-size: 0.8rem !important;
  }
}

/* @media (max-width: 991px) {
    span {
      font-size: 0.78rem;
    }

    p {
      font-size: 0.78rem;
    }

    a {
      font-size: 0.78rem;
    }

    label {
      font-size: 0.78rem;
    }

    h1 {
      font-size: 1.8rem !important;
    }

    h2 {
      font-size: 1.5rem !important;
    }

    h3 {
      font-size: 1.4rem !important;
    }

    h4 {
      font-size: 1.1rem !important;
    }

    h5 {
      font-size: 1.125rem !important;
    }

    h6 {
      font-size: 0.9rem !important;
    }

    .main-heading {
      font-size: 1.4rem;
    }

    .sub-heading {
      font-size: 1.03rem !important;
    }

    .fs-same {
      font-size: 0.76rem !important;
    }

    span.title {
      font-size: 1rem;
    }

    .sec-des {
      font-size: 0.76rem !important;
    }
  } */

/* @media (max-width: 767px) {
    span {
      font-size: 0.75rem;
    }

    p {
      font-size: 0.75rem;
    }

    a {
      font-size: 0.75rem;
    }

    label {
      font-size: 0.75rem;
    }

    h1 {
      font-size: 1.6rem !important;
    }

    h2 {
      font-size: 1.4em !important;
    }

    h3 {
      font-size: 1.3rem !important;
    }

    h4 {
      font-size: 1.05rem !important;
    }

    h5 {
      font-size: 1rem !important;
    }

    h6 {
      font-size: 0.85rem !important;
    }

    .main-heading {
      font-size: 1.3rem;
    }

    .sub-heading {
      font-size: 1rem !important;
    }

    .fs-same {
      font-size: 0.74rem !important;
    }

    span.title {
      font-size: .78rem;
    }

    .sec-des {
      font-size: 0.75rem !important;
    }
  } */

@media (max-width: 575px) {
  span {
    font-size: 0.8rem;
  }

  p {
    font-size: 0.8rem;
  }

  a {
    font-size: 0.8rem;
  }

  label {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 1.5rem !important;
  }

  h2 {
    font-size: 1.3em !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  h4 {
    font-size: 1rem !important;
  }

  h5 {
    font-size: 0.95rem !important;
  }

  h6 {
    font-size: 0.8rem !important;
  }

  .main-heading {
    font-size: 1.2rem;
  }

  .sub-heading {
    font-size: 0.95rem !important;
  }

  .fs-same {
    font-size: 0.8rem !important;
  }

  span.title {
    font-size: .8rem;
  }

  .sec-des {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 1200px) {
  label {
    font-size: .8rem;
  }
}

/* @media (max-width:767px) {

    .fs-same,
    .sec-des,
    a,
    p,
    span {
      font-size: 0.9rem !important;
    }

    span.title {
      font-size: 1.1rem !important;
    }

    label {
      font-size: 0.9rem;
    }

    .fs-sm-same {
      font-size: .8rem !important;
    }

  } */


/* new common class  */
.bottom-space-1 {
  margin-bottom: 1rem;
}

.gradient-text {
  font-weight: bold;
  background: linear-gradient(to right, var(--themesecondaryclr), var(--themeprimaryclr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: normal;
}

.bg-color1 {
  background-color: #F5F7F9;
}

/* for section title start  */

.heading {
  text-align: center;
  /* margin-bottom: 20px; */
}

@media (max-width:991px) {
  .heading {
    /* margin-bottom: 18px; */
  }
}

.heading h2 {
  font-size: 2.1875rem;
  margin-bottom: 1rem;
}

@media (max-width:575px) {
  .heading h2 {
    font-size: 1.5rem !important;
  }

  .heading {
    /* margin-bottom: 7px; */
  }
}

/* gradient btn  */
.gradient-btn {
  background: linear-gradient(to right, var(--themesecondaryclr), var(--themeprimaryclr));
  color: var(--plainclr);
  border-radius: 1.625rem;
  padding: 0.4375rem 1.1875rem;
  font-weight: 400 !important;
  border: transparent;
  transition: all .5s linear;
  text-transform: capitalize !important;
}

.gradient-btn:hover {
  background: linear-gradient(to right, var(--themeprimaryclr), var(--themesecondaryclr));
  color: var(--plainclr);
  transition: all .8s;
}

.gradient-btn:active {
  color: var(--plainclr) !important;
}

/* .btns .gradient-btn {
  padding: 0.5625rem 1.25rem;
} */

.stars i {
  color: var(--stars-color);
}

.rating-heading h5 {
  font-size: 1.25rem !important;
  color: var(--card2-color);
  font-weight: 600;
}

.tags-heading {
  font-size: 1.875rem !important;
  color: var(--card2-color);
  /* font-weight: 600; */
}

.tags-heading h4 {
  font-weight: 600;
  font-size: 1.25rem;
}

.tags-heading img {
  margin-right: 0.25rem;

}

@media (max-width:575px) {
  .tags-heading img {
    height: 1.5rem;
    width: 1.5rem;
  }
}

.gradient-badge {
  background: linear-gradient(to left, var(--themeprimaryclr), var(--themesecondaryclr));
  margin-bottom: 0.9375rem;
}







/* header start  */
.top-marque {
  background: var(--themeprimaryclr);
  color: var(--plainclr);
  padding: 0.3125rem;
}

.main-header {
  position: sticky;
  top: 0;
  background: var(--plainclr);
  z-index: 1111;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 0.0625rem, rgba(42, 51, 69, 0.04) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(42, 51, 70, 0.04) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(42, 51, 70, 0.04) 0px 0.375rem 0.375rem -0.1875rem, rgba(14, 63, 126, 0.04) 0px 0.75rem 0.75rem -0.375rem, rgba(14, 63, 126, 0.04) 0px 1.5rem 1.5rem -0.75rem;
}

.main-header .navbar-brand img {
  width: 10.625rem;
}

.main-header .nav-item {
  margin: 0.5rem 1rem;
}

@media (max-width:1199px) {
  .main-header .nav-item {
    margin: 0.5rem;
  }
}

@media (max-width:991px) {
  .main-header .nav-item {
    margin: 0;
    border-bottom: 0.0625rem solid var(--gray-border);
  }
}

.main-header .nav-item .nav-link {
  color: var(--darkclr);
  font-size: 1rem;
  line-height: 2.25rem;
}

@media (max-width:1199px) {
  .main-header .nav-item .nav-link {
    font-size: 0.8125rem;
  }
}

@media (max-width:991px) {
  .main-header .nav-item .nav-link {
    padding-left: 0.625rem;
  }

  .main-header .nav-item .nav-link.active {
    background: var(--themeprimaryclr) !important;
    color: var(--plainclr) !important;
  }

  .main-header .nav-item .nav-link:hover {
    background: var(--themeprimaryclr) !important;
    color: var(--plainclr) !important;
  }
}


.main-header .nav-item .nav-link {
  position: relative;
  text-decoration: none;
}

.main-header .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0.5625rem;
  left: 0;
  width: 0;
  height: 0.1875rem;
  background-color: var(--themeprimaryclr);
  transition: width 0.8s ease-in-out;
}

.main-header .nav-item .nav-link:hover::before,
.main-header .nav-item .nav-link.active::before {
  width: 100%;
  color: var(--themeprimaryclr) !important;
}

@media (max-width:991px) {

  .main-header .nav-item .nav-link:hover::before,
  .main-header .nav-item .nav-link.active::before {
    width: 0%;
  }
}

.main-header .navbar-toggler {
  border: 0;
  padding: 0;
}

.main-header .navbar-toggler i {
  color: var(--darkclr);
  font-size: 1.5rem;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0 !important;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-hover-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-hover-bg) !important;
}

https: //staticnew.locowiz.com/locomedia/mahendras/common.css

.dropdown-item:hover {
  color: var(--themesecondaryclr);
}

/* new drop dropdown css  */
.smooth-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.smooth-dropdown.show {
  max-height: 31.25rem;
  padding: 0.5rem 0;
}

/* header end */


/* footer start  */
.footer {
  background: var(--footer-bg);
  padding: 3rem 0;
}

.footer .social-links {
  text-align: center;
}

.footer .social-links h6 {
  color: var(--plainclr);
}

.footer .social-links .icons {
  margin-top: 1.25rem;
}

.footer .social-links .icons img {
  width: 2.5rem;
  height: 2.5rem;
}

.footer .social-links .icons img:hover {
  margin-top: -0.625rem;
  transition: all 0.5s;
}

@media (max-width:25rem) {
  .footer .social-links .icons img {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.footer .social-links .icons a i {
  width: 1.875rem;
  height: 1.875rem;
  display: inline;
  align-items: center;
  justify-content: center;
  color: var(--plainclr);
  font-size: 1.875rem;
  margin: 0.625rem;
  transition: all 0.6s ease;
}

.footer .social-links .icons a i:hover {
  color: var(--themesecondaryclr);
}

.footer .links {
  margin-top: 3.75rem;
}

@media (max-width:61.9375rem) {
  .footer .links {
    margin-top: 1.875rem;
  }
}

.footer .links h5 {
  color: var(--plainclr);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer .links ul li {
  margin-bottom: 0.625rem;
}

.footer .links ul li a {
  color: var(--plainclr);
  font-size: 0.9375rem;
  transition: all 0.6s ease;
}

@media (max-width:74.9375rem) {
  .footer .links ul li a {
    font-size: 0.875rem !important;
  }
}

.footer .links ul li a:hover {
  color: var(--themesecondaryclr);
}

.footer .links .address p {
  color: var(--plainclr);
}

.footer .links .call a {
  color: var(--plainclr);
  transition: all 0.6s ease;
}

.footer .links .call a:hover {
  color: var(--themesecondaryclr);
}

.footer .links .call p {
  color: var(--plainclr);
  margin-top: 0.4375rem;
}

.footer .links .mail a {
  color: var(--plainclr);
  transition: all 0.6s ease;
}

.footer .links .mail a:hover {
  color: var(--themesecondaryclr);
}

.bottom-footer {
  background-color: var(--themesecondaryclr);
  padding: 0.9375rem 0;
}

@media (max-width:767px) {
  .bottom-footer {
    margin-bottom: 54px;
  }
}

.copyright-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width:61.9375rem) {
  .copyright-part {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.bottom-footer .copyright-part p {
  color: var(--plainclr);
  margin-bottom: 0;
  text-align: center;
}

.bottom-footer .copyright-part p a {
  color: var(--plainclr);
}

.locowiz {
  color: #70F5FF !important;
}

.locowiz:hover {
  color: var(--plainclr) !important;
}

.bottom-footer .copyright-part p a:hover {
  color: var(--themeprimaryclr);
}

/* mobile footer  */
.footer #mobile-footer {
  margin-top: 2.5rem;
}

.footer #mobile-footer .links {
  margin-top: 0;
}

.footer #mobile-footer .links ul li {
  margin-bottom: 0.625rem;
}

.footer #mobile-footer .links ul li a {
  color: var(--darkclr);
  font-size: 0.9375rem;
  transition: all 0.6s ease;
}

.footer #mobile-footer .links ul li a:hover {
  color: var(--themesecondaryclr);
}

.footer #mobile-footer .links .address p {
  color: var(--plainclr);
  line-height: 1.5625rem;
}

.footer .mobile-footer .links .call a {
  color: var(--plainclr);
  transition: all 0.6s ease;
}

.footer #mobile-footer .links .call a:hover {
  color: var(--themesecondaryclr);
}

.footer #mobile-footer .links .call p {
  color: var(--plainclr);
}

.footer #mobile-footer .links .mail a {
  color: var(--plainclr);
  transition: all 0.6s ease;
}

.footer #mobile-footer .links .mail a:hover {
  color: var(--themesecondaryclr);
}

.footer #mobile-footer {
  display: none;
}

@media (max-width:61.9375rem) {
  .footer #desktop-footer {
    display: none;
  }

  .footer #mobile-footer {
    display: block;
  }
}



/* Accordion Header Styles */
#mobile-footer .accordion-button {
  background-color: var(--footer-bg);
  /* Blue background */
  color: var(--plainclr);
  /* White text */
  font-weight: 500;
}

#mobile-footer .accordion-body {
  padding: 1rem 0 .2rem 0;
  color: var(--plainclr) !important;
}

#mobile-footer .accordion-button {
  padding: 1rem 0 !important;
  border-bottom: 1px solid #ffffff69;
}

#mobile-footer .accordion-button:not(.collapsed) {
  background-color: var(--footer-bg);
  ;
  /* Darker blue when expanded */
  color: var(--plainclr);
}

#mobile-footer .accordion-button::after {
  filter: invert(1);
  /* White accordion icon */
}

#mobile-footer .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.0rem rgba(13, 110, 253, 0.25) !important;
}

/* Accordion Body Styles */
#mobile-footer .accordion-body {
  background-color: var(--footer-bg);
  /* Blue background */
  color: var(--plainclr);
  /* White text */
}

/* Links inside Accordion Body */
#mobile-footer .accordion-body .links ul li a {
  color: var(--plainclr);
  /* White links */
  text-decoration: none;
}

#mobile-footer .accordion-body .links ul li a:hover {
  text-decoration: underline;
  /* Underline on hover */
}

/* Accordion Item */
#mobile-footer .accordion-item {
  border: none;
}

/* Get in Touch Section */
#mobile-footer .links h5,
#mobile-footer .address,
#mobile-footer .call,
#mobile-footer .mail {
  color: var(--plainclr);
}

#mobile-footer .content a {
  color: var(--plainclr);
}

/* Footer Background */
#mobile-footer {
  background-color: var(--footer-bg);
  /* Blue footer background */
  /* padding: 20px; */
  border-radius: 12px;
}


/* footer end  */
/* our-presence section start  */
.our-presence .presence ul {
  display: flex;
  flex-wrap: wrap;
}

.our-presence .presence ul li {
  list-style: none;
  line-height: 1.875rem;
  /* 30px to rem */
}

@media (max-width:991px) {
  .our-presence .presence ul li {
    line-height: 1.8125rem;
    /* 29px to rem */
  }
}

@media (max-width:575px) {
  .our-presence .presence ul li {
    line-height: 1.6875rem;
    /* 27px to rem */
  }
}

.our-presence .presence ul li a span {
  padding: 0 0.3125rem;
  /* 5px to rem */
}


/* our-presence section end  */

/* breadcrumb sec start  */
.breadcrumbs {
  background: var(--light-bg);
}

.breadcrumbs .breadcrumb-item.active {
  color: var(--darkclr);
}

.breadcrumbs .breadcrumb-item {
  font-size: 1.125rem;
}

.breadcrumbs .breadcrumb-item b {
  font-size: 1rem;
}

@media (max-width:1199px) {
  .breadcrumbs .breadcrumb-item b {
    font-size: 0.82rem;
  }
}

@media (max-width:1100px) {
  .breadcrumbs .breadcrumb-item b {
    font-size: 0.8rem;
  }
}

@media (max-width:575px) {
  .breadcrumbs .breadcrumb-item b {
    font-size: 0.8rem;
  }
}

/* breadcrumb sec end  */
/* marque start  */
.top-marquee {
  overflow: hidden;
  width: 100%;
  background: var(--themeprimaryclr);
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 2.5rem;
}

.top-marquee p {
  display: inline-block;
  white-space: nowrap;
  min-width: 100vw;
  margin-bottom: 0;
  padding: 0.625rem;
  color: var(--plainclr);
  font-size: 1rem;
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

/* marque end  */

/* pagination start  */
.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border-color4);
  border-radius: 0.25rem;
  background-color: var(--plainclr);
  cursor: pointer;
  transition: 0.3s;
}

.page-item:hover,
.page-item.active {
  background-color: var(--bread-bg);
}

.next-btn,
.news-event .prev-btn {
  background: var(--light-pink-bg);
  color: var(--darkclr);
  cursor: pointer;
}

.dots {
  pointer-events: none;
}


/* pagination end  */

/* footer fixed btn start */
.fixed-btn ul {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  opacity: 1;
  margin: 0;
  box-shadow: 0 0 0.375rem #b1b1b1;
  border-top: 2px solid #ffffff69;
}

.fixed-btn ul li {
  width: 50%;
  /* height: 3.875rem; */
  height: 3.4rem;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;

}


.fixed-btn ul li:nth-child(odd) {
  background-color: var(--bottom-btn-bg1);
  color: var(--plainclr);
  /* border: 1px solid #8670da; */
}

.fixed-btn ul li:nth-child(odd) a span,
.fixed-btn ul li:nth-child(even) a span {
  color: var(--plainclr);
  margin-bottom: -4px !important;
}

.fixed-btn ul li:nth-child(even) {
  background-color: var(--bottom-btn-bg2);
  color: var(--plainclr);
  /* border: 1px solid #333; */
}

.fixed-btn ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 6px;

}


/* .fixed-btn ul li a .icons{
  margin-bottom: -7px;
} */
.fixed-btn ul li a .icons i {
  font-size: 1rem;
}

.fixed-btn ul li a .rel-text {
  font-size: 1rem !important;
}

.fixed-btn .status {
  position: fixed;
  bottom: 3.4rem;
  right: 0;
  padding: 0.3125rem 0.625rem 0.125rem;
  border-radius: 0.625rem 0.625rem 0 0;
  text-transform: uppercase;
  z-index: 3;
  font-size: .9rem !important;
  display: none;
  background-color: var(--open-now-color);
  color: var(--plainclr);
}

/* .fixed-btn ul li a:hover span,
  .fixed-btn ul li a:hover i {
    color: var(--plainclr);
  } */

@media (max-width:767px) {
  .fixed-btn ul {
    display: flex;
  }

  .fixed-btn .status {
    display: block;
  }
}

.fixed-btn ul li:nth-child(odd):hover {
  background-color: var(--themeprimaryclr) !important;
  color: var(--plainclr) !important;
}

.fixed-btn ul li:nth-child(odd):hover a span {
  color: var(--plainclr);
}


.fixed-btn ul li:nth-child(even):hover {
  background-color: var(--themesecondaryclr) !important;
  color: var(--plainclr) !important;
}

.fixed-btn ul li:nth-child(even):hover a span {
  color: var(--plainclr);
}



@media(max-width:767px) {

    .text-success {
    color: var(--plainclr) !important;
  }
.text-danger{color:red}
}