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

a {
  text-decoration: none;
}

ol {
  list-style: none;
  margin: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  overflow: hidden;
}

.container {
  position: relative;
}

html {
  overflow-x: hidden;
}

.topbar-main {
  background-color: rgba(97, 51, 124, 0.1098039216);
  padding: 3px 0;
}
.topbar-main .topbar-main-content {
  display: flex;
  justify-content: space-between;
}
.topbar-main .topbar-main-content .social-top a {
  color: black;
  font-size: 14px;
  margin-right: 10px;
}
.topbar-main .topbar-main-content .contect-top a {
  color: black;
  font-size: 16px;
  font-weight: 400;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .topbar-main .topbar-main-content .contect-top a span {
    display: none;
  }
}
.topbar-main .topbar-main-content .contect-top a .fa-phone {
  margin-right: 5px;
}
.topbar-main .topbar-main-content .contect-top a .fa-envelope {
  margin-right: 5px;
  position: relative;
  top: 1px;
}

header {
  padding: 13px 0;
}
header.header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 9;
}
header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-content .menu {
  display: flex;
  align-items: center;
}
header .header-content .menu .closemenu {
  display: none;
}
@media (max-width: 991px) {
  header .header-content .menu .closemenu {
    display: block;
    text-align: end;
    color: #5e327a;
    font-size: 21px;
    padding-top: 5px;
    padding-right: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 991px) {
  header .header-content .menu {
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    position: fixed;
    background-color: #f7f7fd;
    padding: 18px;
    right: 0;
    top: 30px;
    width: 300px;
    bottom: 0;
    z-index: 3;
    display: block !important;
  }
}
header .header-content .menu.menuopen {
  transform: scaleX(1);
  background: rgb(237, 233, 240);
  border-top: 1px solid #ccc;
  padding: 0;
  overflow-y: scroll;
}
header .header-content .menu.menuopen .link-h {
  font-size: 15px;
  color: black;
  margin-left: 0;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  header .header-content .menu.menuopen .link-h {
    margin-bottom: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid #5e327a;
    padding-left: 20px;
    padding-right: 20px;
  }
}
header .header-content .menu.menuopen .btn-inquirynow {
  color: white;
}
@media (max-width: 991px) {
  header .header-content .menu.menuopen .btn-inquirynow {
    display: inline-block;
    padding-bottom: 6px;
    margin-left: 20px;
  }
}
header .header-content .menu-bar {
  font-size: 32px;
  position: relative;
  top: 0;
}
header .header-content img.logo-header {
  width: 180px;
}
@media (max-width: 991px) {
  header .header-content .header-links-group ol {
    flex-direction: column;
    padding-left: 0;
  }
}
header .header-content .header-links-group .link-h {
  font-size: 16px;
  color: black;
  margin-left: 30px;
  padding-bottom: 6px;
}
header .header-content .header-links-group .link-h.active {
  color: #5e327a;
  border-bottom: 2px solid #5e327a;
  font-weight: 700;
}
@media (max-width: 991px) {
  header .header-content .header-links-group .link-h.active {
    border-bottom: 1px solid #5e327a;
  }
}
header .header-content .header-links-group .btn-inquirynow {
  background-color: #61337c;
  padding: 5px 10px;
  color: white;
  border-radius: 3px;
}
header .header-content .header-links-group .btn-inquirynow i {
  font-size: 16px;
  position: relative;
  top: 2px;
}

.main-banner h1 {
  font-size: 55px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 auto;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  bottom: inherit;
  z-index: 1;
  right: 0;
  height: auto;
  /* display: flex; */
  align-items: center;
  transform: translateY(-50%);
  justify-content: center;
}
.main-banner h1 span {
  color: #f177ad;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .main-banner h1 {
    font-size: 32px;
    margin-bottom: 16px;
    width: 70%;
  }
}
@media (max-width: 767px) {
  .main-banner h1 {
    font-size: 28px;
    width: 90%;
  }
}
@media (max-width: 575px) {
  .main-banner h1 {
    font-size: 20px;
  }
}
.main-banner h6 {
  font-size: 19px;
  margin-bottom: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .main-banner h6 {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.main-banner p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main-banner p {
    font-size: 12px;
  }
}
.main-banner .btn-readmore {
  background-color: #61337c;
  padding: 7px 10px;
  color: white;
  border-radius: 3px;
  margin-top: 18px;
  font-size: 15px;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .main-banner .btn-readmore {
    font-size: 12px;
  }
}
.main-banner .btn-readmore i {
  font-size: 16px;
  position: relative;
  top: 2px;
}

.rating-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}
@media (max-width: 767px) {
  .rating-section {
    padding: 50px 0;
  }
}
.rating-section .main-review {
  background: #ede9f0;
  padding: 20px;
}
.rating-section .main-review .start-line {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
}
.rating-section .main-review .start-line span {
  color: #fba21b;
  margin-left: 2px;
}
.rating-section .main-review .description {
  margin-top: 10px;
}
.rating-section .main-review .description p {
  margin-bottom: 0;
  font-size: 13px;
  text-align: left;
}
.rating-section .main-review .main-r {
  align-items: end;
}
@media (min-width: 320px) and (max-width: 767px) {
  .rating-section .main-review .main-r {
    align-items: flex-start;
    flex-direction: column;
  }
}
.rating-section .main-review .main-r .details {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rating-section .main-review .main-r p {
  margin-bottom: 0;
}
.rating-section .main-review .main-r .testi-image img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.rating-section .rating-progress .main-rating .reating-header {
  background: #ede9f0;
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  border-bottom: 1px solid #ede9f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 401px) {
  .rating-section .rating-progress .main-rating .reating-header {
    flex-direction: column;
    align-items: baseline;
  }
}
.rating-section .rating-progress .main-rating .reating-header .header .reating-top {
  display: flex;
  align-items: end;
}
.rating-section .rating-progress .main-rating .reating-header .header .reating-top .left {
  display: flex;
  align-items: end;
}
.rating-section .rating-progress .main-rating .reating-header .header .reating-top .left h4 {
  margin-bottom: 0;
}
.rating-section .rating-progress .main-rating .reating-header .header .reating-top .left h6 {
  margin-bottom: 0;
}
.rating-section .rating-progress .main-rating .reating-header .header .reating-top .right .star {
  margin-left: 5px;
}
.rating-section .rating-progress .main-rating .reating-header .header .reating-top .right .star i {
  color: #fba21b;
}
.rating-section .rating-progress .main-rating .reating-header .header .rating-bottom p {
  font-size: 13px;
  margin-bottom: 0;
}
@media (max-width: 401px) {
  .rating-section .rating-progress .main-rating .reating-header .header-btn {
    margin-top: 10px;
  }
}
.rating-section .rating-progress .main-rating .reating-header .header-btn a {
  height: 35px;
  background-color: #61337c;
  color: white;
  width: 145px;
  text-align: center;
  padding: 0;
  display: block !important;
  white-space: nowrap;
  border-radius: 5px;
  font-size: 15px;
  box-shadow: none;
  line-height: 3px;
  text-transform: capitalize;
  padding-top: 9px;
}

.enqiry-section {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .enqiry-section {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .enqiry-section {
    padding: 50px 0;
  }
}

.main-about {
  background-color: #f9f9f9;
  padding: 100px 0;
  position: relative;
}
@media (max-width: 991px) {
  .main-about {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .main-about {
    padding: 50px 0;
  }
}
.main-about .left-side-about {
  position: relative;
}
@media (max-width: 767px) {
  .main-about .left-side-about {
    margin-bottom: 15px;
  }
}
.main-about .left-side-about .mainaboutimg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .main-about .left-side-about .mainaboutimg {
    aspect-ratio: 0;
  }
}
.main-about .left-side-about .dotedpattern {
  position: absolute;
  top: -31px;
  width: 107px;
  left: -46px;
}
.main-about .btn-readmore {
  background-color: #61337c;
  padding: 7px 10px;
  color: white;
  border-radius: 3px;
  margin-top: 18px;
  font-size: 16px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-top: 35px;
}
@media (max-width: 991px) {
  .main-about .btn-readmore {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .main-about .btn-readmore {
    font-size: 13px;
  }
}
.main-about .btn-readmore i {
  font-size: 16px;
  position: relative;
  top: 2px;
}
.main-about .visionmissionbox {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 10px;
  height: 100%;
}
@media (max-width: 991px) {
  .main-about .visionmissionbox {
    height: auto;
    margin-bottom: 10px;
  }
}
.main-about .visionmissionbox .title {
  font-size: 21px;
  font-weight: 600;
  color: #5e327a;
}
@media (max-width: 767px) {
  .main-about .visionmissionbox .title {
    font-size: 16px;
  }
}
.main-about .visionmissionbox img {
  width: 22px;
  position: relative;
  top: -2px;
  margin-left: 7px;
}
@media (max-width: 767px) {
  .main-about .visionmissionbox img {
    width: 18px;
  }
}
.main-about .visionmissionbox .description {
  color: gray;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main-about .visionmissionbox .description {
    font-size: 13px;
  }
}

.main-why-box .why-box {
  background-color: #F7F7FE;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
@media (max-width: 991px) {
  .main-why-box .why-box {
    margin-top: 0;
  }
}
.main-why-box .why-box img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-why-box .why-box .title {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0;
  color: #5e327a;
}
.main-why-box .why-box .description {
  font-size: 16px;
  margin-bottom: 0;
  color: gray;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .main-why-box .why-box .description {
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .main-why-box .why-box .description {
    height: auto;
  }
}
@media (min-width: 1200px) {
  .main-why-box .col-xl-2 {
    flex: 0 0 auto;
    width: 20%;
  }
}

.main-roduct-div {
  background-color: #f9f9f9;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .main-roduct-div {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .main-roduct-div {
    padding: 50px 0;
  }
}
.main-roduct-div .nav-pills .nav-link {
  background: 0 0;
  border: 0;
  border-radius: 0.25rem;
  padding: 5px 10px;
  font-size: 15px;
  color: black;
}
.main-roduct-div .nav-pills .nav-link.active,
.main-roduct-div .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #5e327a;
  /* font-size: 1411px; */
}
.main-roduct-div .nav.nav-pills {
  background-color: #ede9f0;
  width: -moz-max-content;
  width: max-content;
  padding: 12px;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .main-roduct-div .nav.nav-pills {
    overflow-x: scroll;
    width: 100%;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}
.main-roduct-div .main-product-box {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.main-roduct-div .main-product-box img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-roduct-div .main-product-box .content {
  padding: 14px;
}
.main-roduct-div .main-product-box .content h4 {
  font-size: 19px;
  font-weight: 600;
  height: 44px;
}
@media (max-width: 767px) {
  .main-roduct-div .main-product-box .content h4 {
    font-size: 14px;
    height: auto;
  }
}
.main-roduct-div .main-product-box .content p {
  margin: 0;
  font-size: 16px;
  color: gray;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  height: 50px;
}
@media (max-width: 767px) {
  .main-roduct-div .main-product-box .content {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.main-roduct-div .main-product-box a {
  font-size: 16px;
  color: #5b3178;
  font-weight: 600;
}
@media (max-width: 767px) {
  .main-roduct-div .main-product-box a {
    font-size: 12px;
  }
}
.main-roduct-div .main-product-box a i {
  font-size: 17px;
  position: relative;
  top: 2px;
  margin-left: 1px;
}

@media (max-width: 991px) {
  .commonpading.new {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .commonpading.new {
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .commonpading.new {
    padding-bottom: 40px;
  }
}

.commonpading {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .commonpading {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .commonpading {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.commontitle h3 {
  font-size: 31px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .commontitle h3 {
    margin-top: 20px;
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  .commontitle h3 {
    font-size: 20px;
    font-size: 23px;
  }
}
.commontitle p {
  font-size: 16px;
  color: #979797;
}
@media (max-width: 767px) {
  .commontitle p {
    font-size: 13px;
  }
}

.main-footer {
  background-color: #ede9f0;
  padding: 100px 0;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .main-footer {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .main-footer {
    padding: 50px 0;
    padding-bottom: 20px;
  }
}
.main-footer footer .footerlogo {
  width: 200px;
}
@media (max-width: 767px) {
  .main-footer footer .footerlogo {
    width: 150px;
  }
}
.main-footer footer .footer-description {
  font-size: 16px;
  font-weight: 400;
  margin-top: 30px;
  color: #000;
}
@media (max-width: 991px) {
  .main-footer footer .footer-description {
    font-size: 14px;
  }
}
.main-footer footer a.n-color {
  color: gray;
}
.main-footer footer a.commontext-color-footer {
  color: #1e1e1e;
  font-size: 16px;
  /* margin-right: 10px; */
}
.main-footer footer a.commontext-color-footer:hover {
  color: #5e327a;
}
@media (max-width: 991px) {
  .main-footer footer a.commontext-color-footer {
    font-size: 14px;
  }
}
.main-footer footer a.commontext-color-footer i {
  margin-right: 10px;
}
.main-footer footer .location-icon {
  color: gray;
  font-size: 15px;
  margin-right: 10px;
}
.main-footer footer .location-icon i {
  color: #1e1e1e;
}
.main-footer footer .title-footer {
  font-size: 20px;
  font-weight: 600;
  color: #000 !important;
}
@media (max-width: 991px) {
  .main-footer footer .title-footer {
    font-size: 18px;
    color: #000 !important;
  }
}
.main-footer footer a.footer-link {
  display: block;
  color: #1e1e1e;
  font-size: 16px;
  margin-bottom: 14px;
  display: table;
  text-transform: capitalize;
}
.main-footer footer a.footer-link:hover {
  color: #5e327a;
  font-weight: 700;
}
@media (max-width: 991px) {
  .main-footer footer a.footer-link {
    font-size: 14px;
  }
}
.main-footer footer .social-top {
  display: flex;
}
@media (max-width: 767px) {
  .main-footer footer .social-top {
    margin-bottom: 20px;
  }
}
.main-footer footer .social-top a {
  color: white;
  font-size: 18px;
  margin-right: 10px;
  background-color: #61337c;
  width: 30px;
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.main-footer footer .footer-bottom-line {
  text-align: center;
  font-size: 15px;
  color: black;
}
@media (max-width: 767px) {
  .main-footer footer .footer-bottom-line {
    font-size: 14px;
  }
}

.banner_area .banner-inner {
  background-image: url("../../images/banner-bg.jpg");
  padding: 90px 0 80px 0;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .banner_area .banner-inner {
    padding: 75px 0 55px 0;
  }
}
@media (max-width: 575px) {
  .banner_area .banner-inner {
    padding: 65px 0 45px 0;
  }
}
.banner_area .banner-inner:after {
  content: "";
  position: absolute;
  top: 0;
  background-color: rgba(97, 74, 161, 0.609804);
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.banner_area .banner-inner h2 {
  color: #fff;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .banner_area .banner-inner h2 {
    font-size: 25px;
  }
}
.banner_area .banner-inner .breadcrumb {
  justify-content: center;
  z-index: 2;
  position: relative;
  color: #fff;
}
@media (max-width: 767px) {
  .banner_area .banner-inner .breadcrumb {
    font-size: 14px;
  }
}
.banner_area .banner-inner .breadcrumb li {
  margin: 0 5px;
}
.banner_area .banner-inner .breadcrumb li a {
  color: #fff;
}
.banner_area .banner-inner .breadcrumb li .active {
  color: #fff;
}

.about-main {
  padding: 50px 0;
}
.about-main .about-details {
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-main .about-details .inner-details {
    margin-top: 20px;
  }
}
.about-main .about-details .inner-img img {
  width: 100%;
  height: 200px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: rgba(230, 230, 230, 0.5490196078);
}
@media (max-width: 767px) {
  .about-main .about-details .inner-img img {
    height: 100%;
  }
}
.about-main .about-details .main-tav {
  width: 100%;
}
@media (max-width: 767px) {
  .about-main .about-details .main-tav {
    overflow-x: scroll;
  }
}
.about-main .about-details .main-tav .nav-pills {
  display: block;
}
@media (max-width: 767px) {
  .about-main .about-details .main-tav .nav-pills {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}
.about-main .about-details .main-tav .nav-pills .nav-item .nav-link {
  width: 100%;
  margin-bottom: 12px;
  border-bottom: 2px solid #dadada;
  padding: 12px;
  background: #fff;
  color: #3876ab;
  font-weight: 600;
  text-align: left;
}
@media (max-width: 767px) {
  .about-main .about-details .main-tav .nav-pills .nav-item .nav-link {
    border-bottom: none;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .about-main .about-details .main-tav .nav-pills .nav-item .nav-link {
    padding: 5px 10px;
    font-size: 15px;
  }
}
.about-main .about-details .main-tav .nav-pills .nav-item .nav-link.active {
  color: #000;
  background-color: #e6e6e6;
}
.about-main .inner_mainheading {
  font-size: 25px;
  color: #61337c;
  float: left;
  font-weight: bold;
  margin-top: 5px;
  text-transform: uppercase;
  width: 100%;
  border-bottom: solid 1px #d6d6d6;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .about-main .inner_mainheading {
    font-size: 21px;
    margin-bottom: 10px;
  }
}
.about-main a .innerrightmenu {
  width: 100%;
  margin-bottom: 12px;
  border-bottom: 2px solid #dadada;
  padding: 12px;
  background: #fff;
  color: #3876ab;
  float: left;
  font-weight: 600;
}
.about-main p {
  font-size: 17px;
  color: #333;
  padding-top: 0px;
  margin-bottom: 20px;
}

.contact-us {
  padding: 65px 0;
}
@media (max-width: 575px) {
  .contact-us {
    padding: 40px 0;
  }
}
.contact-us .contact {
  background: rgba(97, 51, 124, 0.05);
  padding: 20px;
  border-radius: 10px;
}
.contact-us .contact .contact-tittle {
  color: #191919;
  font-size: 21px;
  font-weight: 600;
  padding-bottom: 8px;
}
.contact-us .contact .contact-inputgropu {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
}
@media (max-width: 575px) {
  .contact-us .contact .contact-inputgropu {
    padding: 10px;
  }
}
.contact-us .contact .contact-inputgropu .form-label {
  font-size: 16px;
  font-weight: 400;
  color: #1d1d1d;
}
.contact-us .contact .contact-inputgropu input {
  background-color: #ffffff;
  border: 1px solid rgba(112, 112, 112, 0.2);
  height: 50px;
  padding-left: 18px;
  font-size: 16px;
}
.contact-us .contact .contact-inputgropu .sendmessage {
  margin-top: 20px;
  margin-bottom: 10px;
}
.contact-us .contact .contact-inputgropu .sendmessage button {
  background-color: #5e327a;
  color: #fff;
  border: none;
  font-size: 16px;
}
.contact-us .popular-categories-box span {
  color: #61337c;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}
.contact-us .popular-categories-box h2 {
  color: #191919;
  font-size: 36px;
  font-weight: 600;
  margin-top: 7px;
}
@media (max-width: 767px) {
  .contact-us .popular-categories-box h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .contact-us .popular-categories-box h2 {
    font-size: 27px;
  }
}
.contact-us .popular-categories-box p {
  color: #191919;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.65;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .contact-us .popular-categories-box p {
    font-size: 12px;
  }
}
.contact-us .border-box {
  background-color: #ffffff;
  border: 1px solid rgba(112, 112, 112, 0.1490196078);
  border-radius: 10px;
  padding: 12px;
  width: 73%;
}
@media (max-width: 767px) {
  .contact-us .border-box {
    width: 100%;
  }
}
.contact-us .border-box .iggroup {
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .contact-us .border-box .iggroup {
    font-size: 12px;
  }
}
.contact-us .border-box2 {
  background-color: #ffffff;
  border: 1px solid rgba(112, 112, 112, 0.1490196078);
  border-radius: 10px;
  padding: 12px;
  width: 73%;
}
@media (max-width: 767px) {
  .contact-us .border-box2 {
    width: 100%;
  }
}
.contact-us .border-box2 .iggroup {
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .contact-us .border-box2 .iggroup {
    font-size: 12px;
  }
}
.contact-us .social-top {
  display: flex;
  margin-top: 20px;
}
.contact-us .social-top a {
  color: white;
  font-size: 18px;
  margin-right: 10px;
  background-color: #61337c;
  width: 30px;
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.contact-us .social-top a i {
  font-weight: 400;
}

.product-detail-main .tab-content .tab-pane {
  padding: 0;
}
.product-detail-main .main-p-details {
  overflow: hidden;
  background-color: white;
}
.product-detail-main .nav {
  padding-bottom: 0;
  flex-wrap: nowrap !important;
}
.product-detail-main .nav .nav-tabs {
  border-bottom: none !important;
}
.product-detail-main .nav .nav-link {
  color: #959595 !important;
  font-size: 15px;
  font-weight: 500;
  padding: 0;
  padding-right: 0;
  padding-bottom: 7px;
  margin-right: 15px;
}
.product-detail-main .nav .nav-link:hover {
  border: none;
}
@media (max-width: 500px) {
  .product-detail-main .nav .nav-link {
    font-size: 12px;
  }
}
.product-detail-main .nav .nav-link.active {
  background: no-repeat;
  border-radius: 0;
  color: #000 !important;
  border: none;
  border-bottom: 2px solid #000000;
}
.product-detail-main ul {
  padding: 0;
}
.product-detail-main ul li {
  font-size: 16px;
  color: #8c8c8c;
  font-weight: 400;
  margin-top: 20px;
  position: relative;
  list-style-type: none;
  padding-left: 32px;
  line-height: 25px;
}
@media (max-width: 991px) {
  .product-detail-main ul li {
    font-size: 12px;
  }
}
.product-detail-main ul li::marker {
  display: none;
}
.product-detail-main ul li::after {
  content: "\f058";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 22px;
  color: #5e327a;
}
@media (max-width: 991px) {
  .product-detail-main ul li::after {
    font-size: 16px;
  }
}
.product-detail-main .main-content-points {
  display: flex;
  margin-bottom: 15px;
}
.product-detail-main .main-content-points i {
  font-size: 20px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  color: #5e327a;
}
@media (max-width: 991px) {
  .product-detail-main .main-content-points i {
    font-size: 16px;
    top: 1px;
  }
}
.product-detail-main .main-content-points p {
  margin: 0;
  font-size: 16px;
  color: gray;
  font-weight: 400;
}
@media (max-width: 991px) {
  .product-detail-main .main-content-points p {
    font-size: 12px;
  }
}
.product-detail-main p.sub-title {
  color: black;
  font-size: 19px;
  font-weight: 500;
  margin-top: 24px;
}
.product-detail-main .table-title {
  color: black;
  font-size: 20px;
  font-weight: 500;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .product-detail-main .table-title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .product-detail-main .table-title {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .product-detail-main .table-title {
    font-size: 15px;
  }
}
.product-detail-main .btn-download-brocher {
  background-color: rgba(97, 51, 124, 0.2588235294);
  padding: 7px 10px;
  color: #5e327a;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  height: 100%;
}
.product-detail-main .btn-download-brocher:focus {
  outline: none;
  box-shadow: none;
}
@media (max-width: 575px) {
  .product-detail-main .btn-download-brocher {
    font-size: 12px;
  }
}
.product-detail-main .btn-download-brocher i {
  font-size: 16px;
  position: relative;
  top: 2px;
}
@media (max-width: 575px) {
  .product-detail-main .product-details {
    margin-top: 20px;
  }
}
.product-detail-main .product-details .price {
  font-size: 14px;
  font-weight: 600;
  color: gray;
  flex-direction: column;
  margin-bottom: 0;
  padding: 5px 10px;
}
.product-detail-main .product-details .price span {
  color: green;
  font-size: 15px;
}
.product-detail-main .product-details .title {
  font-size: 29px;
  font-weight: 700;
  color: #61337c;
  margin: 0;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .product-detail-main .product-details .title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .product-detail-main .product-details .title {
    font-size: 22px;
  }
}
.product-detail-main .product-details p.sub-title {
  color: black;
  font-size: 19px;
  font-weight: 500;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .product-detail-main .product-details p.sub-title {
    font-size: 17px;
  }
}
@media (max-width: 575px) {
  .product-detail-main .product-details p.sub-title {
    font-size: 16px;
  }
}
.product-detail-main .main-product-bg {
  width: 100%;
  height: 450px;
  background-color: rgba(238, 236, 252, 0.4588235294);
  border-radius: 10px;
  position: relative;
}
@media (max-width: 991px) {
  .product-detail-main .main-product-bg {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .product-detail-main .main-product-bg {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .product-detail-main .main-product-bg {
    height: 300px;
  }
}
.product-detail-main .main-product-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background: #ebebeb;
  border: 1px solid rgba(97, 51, 124, 0.2509803922);
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .product-detail-main .main-product-bg img {
    height: 100%;
  }
}

table thead {
  background-color: #ede9f0;
}

table thead th {
  border-bottom: none;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: white;
  --bs-table-accent-bg: white;
}

.table-striped > tbody > tr:nth-of-type(even) {
  background-color: #ede9f0;
}

table tr td {
  border-bottom: none;
}

table tr th {
  border-bottom: none;
}

table {
  border: 1px solid rgba(94, 50, 122, 0.168627451);
}
@media (max-width: 991px) {
  table {
    font-size: 12px;
  }
}

.main-about-new {
  background-color: transparent;
  padding: 0;
}
.main-about-new .visionmissionbox {
  background-color: rgba(238, 236, 252, 0.4588235294);
  padding: 20px;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .main-about-new .left-side-about .dotedpattern {
    top: -23px;
    left: -22px;
  }
}

.main-about-why-choose {
  background-color: #f9f9f9;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .main-about-why-choose {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .main-about-why-choose {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .main-about-why-choose {
    padding: 40px 0;
  }
}
.main-about-why-choose .left-side-about {
  position: relative;
}
.main-about-why-choose .left-side-about .mainaboutimg {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .main-about-why-choose .left-side-about .mainaboutimg {
    margin-bottom: 30px;
  }
}
.main-about-why-choose .left-side-about .dotedpattern {
  position: absolute;
  top: -31px;
  width: 107px;
  left: -46px;
}
.main-about-why-choose .main-why-box-about .why-box {
  text-align: left;
  margin-top: 0px;
  display: flex;
  margin-bottom: 30px;
  background-color: white;
  padding: 15px;
}
.main-about-why-choose .main-why-box-about .why-box .main-why-box-img {
  width: 70px;
  height: 70px;
  background-color: #f7f6fd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 70px;
  margin-right: 20px;
}
.main-about-why-choose .main-why-box-about .why-box .main-why-box-img img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
  object-fit: contain;
}
.main-about-why-choose .main-why-box-about .why-box .main-why-box-content {
  width: 70%;
}
.main-about-why-choose .main-why-box-about .why-box .main-why-box-content .title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0;
  margin-bottom: 10px;
  color: #5e327a;
}
.main-about-why-choose .main-why-box-about .why-box .main-why-box-content .description {
  font-size: 16px;
  margin-bottom: 0;
  color: gray;
}
@media (max-width: 767px) {
  .main-about-why-choose .main-why-box-about .why-box .main-why-box-content .description {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .main-about-why-choose .main-why-box-about .col-lg-2 {
    flex: 0 0 auto;
    width: 20%;
  }
}

.dropdown-menu.active {
  background: transparent;
  border: 1px solid #ccc !important;
  position: relative;
  width: 88%;
  margin: 0 auto 10px auto !important;
}
.dropdown-menu.active a {
  font-size: 13px;
}
@media (max-width: 991px) {
  .dropdown-menu.active a {
    overflow-x: scroll;
  }
}

@media (max-width: 991px) {
  .dropdown a {
    margin-bottom: 0 !important;
    border-bottom: none !important;
  }
}
@media (max-width: 991px) {
  .dropdown {
    border-bottom: 1px solid #5e327a;
    margin-bottom: 10px;
  }
}

.dropdown-item:hover {
  color: #fff;
  background-color: #F177AD;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #F177AD !important;
}

.dropdown-toggle::after {
  position: relative;
  top: 1px;
}

.dropdown > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

a.dropdown-item {
  font-size: 14px;
  padding: 5px 10px;
}

.banner-main {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .banner-main {
    height: 100%;
  }
}

.single-item {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}
@media (max-width: 991px) {
  .single-item {
    margin-bottom: 50px;
    height: 495px;
  }
}
@media (max-width: 767px) {
  .single-item {
    height: 435px;
  }
}

.banner-slider {
  height: auto;
}
.banner-slider .slick-list {
  height: 100% !important;
}
.banner-slider .slick-list .slick-track {
  height: 100%;
}
.banner-slider .slick-dots {
  display: none !important;
}

.banner-img .left-img {
  width: 100%;
}
.banner-img .left-img .img img {
  width: 200px;
  transition: ease-in-out 0.5s;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 50px 0 auto;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .banner-img .left-img .img img {
    width: 180px;
    height: 200px;
    margin: 0 20px 0 auto;
  }
}
@media (max-width: 991px) {
  .banner-img .left-img .img img {
    width: 246px;
    height: 306px;
  }
}
@media (max-width: 767px) {
  .banner-img .left-img .img img {
    width: 200px;
    height: 250px;
  }
}
@media (max-width: 575px) {
  .banner-img .left-img .img img {
    height: 350px;
  }
}
.banner-img .left-img h3 {
  width: 217px;
  font-size: 14px;
  margin-top: 10px;
  margin: 0 30px 0 auto;
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .banner-img .left-img h3 {
    width: 170px;
  }
}
@media (max-width: 991px) {
  .banner-img .left-img h3 {
    width: 235px;
  }
}
@media (max-width: 767px) {
  .banner-img .left-img h3 {
    width: 187px;
  }
}

.single-item .slick-track {
  display: flex;
  justify-content: end;
  align-items: center;
}
.single-item .slick-track .slick-current .img img {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .single-item .slick-track .slick-current .img img {
    height: 330px;
  }
}
@media (max-width: 991px) {
  .single-item .slick-track .slick-current .img img {
    height: 413px;
  }
}
@media (max-width: 767px) {
  .single-item .slick-track .slick-current .img img {
    height: 350px;
  }
}
.single-item .slick-track .slick-current h3 {
  width: 100%;
  margin-top: 10px;
  font-size: 18px;
}

.banner-details {
  width: 100%;
  position: relative;
  height: calc(100vh - 120px);
}
@media (max-width: 1199px) {
  .banner-details {
    height: 100% !important;
  }
}
.banner-details:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4392156863);
  z-index: 0;
}
.banner-details img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  aspect-ratio: 16/9;
}

.main-banner {
  position: relative;
  width: 100%;
  height: 100%;
}

.slick-prev {
  right: 100px;
  left: inherit;
  display: inline-block;
  height: 50px;
  bottom: 0;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  top: inherit;
}
.slick-prev::after {
  position: absolute;
  content: "";
  background-image: url("../../images/left.png");
  background-color: #fff;
  background-position: center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  border: 1px solid #ccc;
}
@media (max-width: 991px) {
  .slick-prev {
    bottom: -44px;
  }
}
@media (max-width: 767px) {
  .slick-prev {
    bottom: -60px;
  }
}
@media (max-width: 575px) {
  .slick-prev {
    bottom: -80px;
  }
}

.slick-next {
  right: 20px;
  left: inherit;
  display: inline-block;
  height: 50px;
  bottom: 0;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: inherit;
}
.slick-next::after {
  position: absolute;
  content: "";
  background-image: url("../../images/right-a.png");
  background-color: #fff;
  background-position: center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  border: 1px solid #ccc;
}
@media (max-width: 991px) {
  .slick-next {
    bottom: -44px;
  }
}
@media (max-width: 767px) {
  .slick-next {
    bottom: -60px;
  }
}
@media (max-width: 575px) {
  .slick-next {
    bottom: -80px;
  }
}

.slick-arrow::before {
  display: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: "";
}

.bg-color {
  padding-bottom: 56px;
  padding-top: 100px;
  margin-right: 30px;
  margin-left: 30px;
  background-color: #61337C;
}
@media (max-width: 991px) {
  .bg-color {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .bg-color {
    margin-left: 0;
    margin-right: 0;
  }
}
.bg-color .commontitle {
  margin-bottom: 80px;
}
.bg-color h3 {
  color: #fff;
}
.bg-color p {
  color: #fff;
}

.gallery {
  padding-bottom: 50px;
}

.gallery-item-bg {
  margin-top: -100px;
}
.gallery-item-bg .gallery-item {
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  aspect-ratio: 1/1;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px -10px gray;
}
.gallery-item-bg .gallery-item img {
  width: 100%;
  height: 100px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.counter-area {
  padding-bottom: 80px;
  padding-top: 50px;
  background-color: #f9f9f9;
}
.counter-area .counter__item {
  padding: 50px 30px 0px 30px;
  border-radius: 10px;
  transition: all 0.4s ease-out 0s;
  border: 1px solid #ccc;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.counter-area .counter__item:hover {
  border-color: #5b3178;
}
.counter-area .counter__item .counter__icon {
  margin-bottom: 15px;
}
.counter-area .counter__item .counter__icon img {
  width: 50px;
  height: 50px;
}
.counter-area .counter__item .counter__content .counter__title {
  font-size: 49px;
  font-weight: 800;
}

.banner-ani {
  position: absolute;
  width: 225px;
  height: 200px;
  top: 0;
  right: -175px;
}

.banner-ani-b {
  position: absolute;
  bottom: 0;
  width: 150px;
  height: 602px;
  left: -70px;
}

.about-b {
  position: absolute;
  top: 50px;
  right: -130px;
  width: 250px;
}

.menu-right {
  margin-bottom: 0;
  align-items: center;
}
@media (max-width: 991px) {
  .menu-right {
    flex-direction: column;
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .menu-right li {
    width: 100%;
  }
}

#sendenquiry {
  padding-right: 0;
}

.modal-body button {
  font-size: 15px;
  padding: 5px 10px;
}

.modal-footer button {
  font-size: 15px;
  padding: 5px 10px;
}

#enquiryformmodal .btn-close,
.enqiry-section .btn-close,
#sendenquiry .btn-close {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 2;
}
#enquiryformmodal h5,
.enqiry-section h5,
#sendenquiry h5 {
  font-size: 26px;
  font-weight: bold;
  color: #5e327a;
}
#enquiryformmodal p,
.enqiry-section p,
#sendenquiry p {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 991px) {
  #enquiryformmodal p,
  .enqiry-section p,
  #sendenquiry p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #enquiryformmodal p,
  .enqiry-section p,
  #sendenquiry p {
    font-size: 13px;
  }
}
#enquiryformmodal input,
.enqiry-section input,
#sendenquiry input {
  height: 33px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  padding-left: 10px;
  width: 100%;
}
#enquiryformmodal .modal-body,
.enqiry-section .modal-body,
#sendenquiry .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
#enquiryformmodal input:focus-visible,
.enqiry-section input:focus-visible,
#sendenquiry input:focus-visible {
  outline-color: #5e327a;
}
#enquiryformmodal textarea:focus-visible,
.enqiry-section textarea:focus-visible,
#sendenquiry textarea:focus-visible {
  outline-color: #5e327a;
}
#enquiryformmodal textarea,
.enqiry-section textarea,
#sendenquiry textarea {
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  padding-left: 10px;
}
#enquiryformmodal .form-group,
.enqiry-section .form-group,
#sendenquiry .form-group {
  display: flex;
  flex-direction: column;
}
#enquiryformmodal label,
.enqiry-section label,
#sendenquiry label {
  display: inline-block;
  font-size: 16px;
  margin: 7px 0 3px 0;
  font-weight: 600;
}
@media (max-width: 991px) {
  #enquiryformmodal label,
  .enqiry-section label,
  #sendenquiry label {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #enquiryformmodal label,
  .enqiry-section label,
  #sendenquiry label {
    font-size: 13px;
  }
}
#enquiryformmodal .btn-primary,
.enqiry-section .btn-primary,
#sendenquiry .btn-primary {
  color: #fff;
  background-color: #5b3178;
  border-color: #583076;
}
#enquiryformmodal .radio,
.enqiry-section .radio,
#sendenquiry .radio {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 33px;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  width: 100%;
}
@media (max-width: 991px) {
  #enquiryformmodal .radio,
  .enqiry-section .radio,
  #sendenquiry .radio {
    margin-bottom: 10px;
    justify-content: flex-start !important;
  }
}
#enquiryformmodal .radio label,
.enqiry-section .radio label,
#sendenquiry .radio label {
  margin: 0;
}
#enquiryformmodal .radio input,
.enqiry-section .radio input,
#sendenquiry .radio input {
  width: 15px !important;
  height: 15px !important;
  margin-right: 15px !important;
}

.full-input {
  display: inline-block;
  padding: 3px;
  border: 1px solid gray;
}
.full-input input {
  outline: none;
  border: none;
  display: block;
  line-height: 1.2em;
  font-size: 15px;
}
.full-input label {
  display: block;
  font-size: 13px;
  color: gray;
}

.Review-slider .slick-list.draggable {
  padding-bottom: 30px;
}
.Review-slider .slick-slider {
  margin: 0 -15px;
}
.Review-slider .slick-slide {
  text-align: center;
  margin-right: 15px;
  margin-left: 15px;
}
.Review-slider .slick-dots li {
  position: relative !important;
  display: inline-block !important;
  width: 40px !important;
  height: 1px !important;
  margin: 0 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
  background-color: #ccc;
}
.Review-slider .slick-dots li button {
  display: none;
}
.Review-slider .slick-dots li.slick-active {
  height: 3px !important;
  background-color: #000;
  position: relative;
  top: 1px;
}

#newslattermodel .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}
#newslattermodel .rating {
  margin-top: 6px;
}
#newslattermodel .modal-footer .btn-secondary {
  padding: 5px 10px;
  font-size: 14px;
  background: #ccc;
  color: #000;
  border-color: #ccc;
}
#newslattermodel .modal-footer .btn-primary {
  padding: 5px 10px;
  font-size: 14px;
  background: #5b3178;
  color: #fff;
  border-color: #5b3178;
}
#newslattermodel .hidden {
  opacity: 0;
  display: none !important;
}
#newslattermodel .score {
  color: green;
  display: inline-block;
  font-size: 17px;
  position: relative;
  top: -9px;
  margin-left: 5px;
}
#newslattermodel .score-rating {
  font-size: 96%;
}
#newslattermodel .total {
  vertical-align: sub;
  top: 0px;
  position: relative;
  font-size: 100%;
}
#newslattermodel .star {
  display: inline-block;
  font-size: 21px;
  color: #d9d9d9;
  position: relative;
}
#newslattermodel .star.animate {
  -webkit-animation: stretch-bounce 0.5s ease-in-out;
}
#newslattermodel .star.hidden {
  opacity: 0;
}
#newslattermodel .full:before {
  font-family: fontAwesome;
  display: inline-block;
  content: "\f005";
  position: relative;
  float: right;
  z-index: 2;
}
#newslattermodel .half:before {
  font-family: fontAwesome;
  content: "\f089";
  position: absolute;
  float: left;
  z-index: 3;
}
#newslattermodel .star-colour {
  color: #ffd700;
}
#newslattermodel .selected:before {
  font-family: fontAwesome;
  display: inline-block;
  content: "\f005";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1);
  opacity: 1;
  z-index: 1;
}
#newslattermodel .selected.pulse:before {
  -webkit-transform: scale(3);
  opacity: 0;
}
#newslattermodel .selected.is-animated:before {
  transition: 1s ease-out;
}
#newslattermodel .modal-dialog {
  max-width: 650px;
  margin: 1.75rem auto;
}
#newslattermodel h5 {
  font-size: 26px;
  font-weight: bold;
  color: #5e327a;
}
#newslattermodel p {
  font-size: 13px;
  color: #000;
  font-weight: 400;
  text-align: center;
}
#newslattermodel input {
  height: 37px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  padding-left: 10px;
}
#newslattermodel .modal-body {
  position: relative;
  flex: 1 1 auto;
  margin: 1rem;
  border: 1px solid #ccc;
}
#newslattermodel input:focus-visible {
  outline-color: #5e327a;
}
#newslattermodel textarea:focus-visible {
  outline-color: #5e327a;
}
#newslattermodel textarea {
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  padding-left: 10px;
}
#newslattermodel .form-group {
  display: flex;
  flex-direction: column;
}
#newslattermodel label {
  display: inline-block;
  font-size: 14px;
  margin: 7px 0 3px 0;
  font-weight: 600;
}
#newslattermodel .btn-primary {
  color: #fff;
  background-color: #5b3178;
  border-color: #583076;
}

.bottom-footer-c {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #5e327a;
  padding-top: 20px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .bottom-footer-c {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
}
.bottom-footer-c ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .bottom-footer-c ul {
    margin-bottom: 5px;
  }
}
.bottom-footer-c ul li a {
  font-size: 15px;
  color: black;
}
@media (max-width: 767px) {
  .bottom-footer-c ul li a {
    font-size: 12px;
  }
}
.bottom-footer-c ul .last {
  margin-left: 10px;
}

.privercy_policy {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .privercy_policy {
    padding: 40px 0;
  }
}
.privercy_policy h1 {
  font-size: 23px;
  font-weight: bold;
  color: #000;
}
.privercy_policy p {
  color: gray;
  font-size: 12px;
}
.privercy_policy h2 {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 20px;
  font-weight: bold;
  color: #000;
}
.privercy_policy h2 strong {
  font-size: 26px;
}
.privercy_policy h3 {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 20px;
  font-weight: bold;
}
.privercy_policy ul li {
  font-size: 15px;
  color: gray;
}

#backtotop {
  display: inline-block;
  background-color: #61337c;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#backtotop::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  line-height: 40px;
  color: #fff;
}

#backtotop:hover {
  cursor: pointer;
  background-color: #333;
}

#backtotop:active {
  background-color: #555;
}

#backtotop.show {
  opacity: 1;
  visibility: visible;
}

#newslattermodel .form-control:focus {
  outline: #5e327a !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: 2px solid #5e327a !important;
}

#newslattermodel input:focus-visible {
  outline-color: #5e327a !important;
}

#newslattermodel textarea:focus-visible {
  outline-color: #5e327a !important;
}

.flotingbtn-main {
  position: fixed;
  bottom: 60px;
  right: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.flotingbtn-main:hover .contentwatsapp {
  width: 190px;
  overflow: visible;
}
.flotingbtn-main:hover .floting-btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.flotingbtn-main .floting-btn {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #25D366;
  display: flex;
  font-size: 25px;
  align-items: center;
  justify-content: center;
  color: white;
}
.flotingbtn-main .floting-btn a {
  color: white;
}

.contentwatsapp {
  background-color: #25d366;
  height: 40px;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: white;
  transition: width 1s;
  white-space: nowrap;
  width: 0px;
  padding-top: 9px;
  overflow: hidden;
}
.contentwatsapp a {
  color: white;
}

.img-zoom-result {
  border: 1px solid #d4d4d4;
  width: 200px;
  height: 200px;
  z-index: -1;
  opacity: 0;
  position: absolute;
  right: -43%;
  top: 55%;
}
@media (max-width: 1399px) {
  .img-zoom-result {
    right: -50%;
  }
}
@media (max-width: 1199px) {
  .img-zoom-result {
    right: -60%;
  }
}
@media (max-width: 991px) {
  .img-zoom-result {
    right: -100%;
    top: 12%;
  }
}
@media (max-width: 767px) {
  .img-zoom-result {
    right: 30%;
    top: 120%;
  }
}

.radio {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  width: 100%;
}
@media (max-width: 767px) {
  .radio {
    margin-bottom: 10px;
  }
}
.radio label {
  margin: 0;
}
.radio input {
  width: 15px;
  height: 15px;
  margin-right: 15px;
}

@media (max-width: 992px) {
  .Quantity {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  #myresult {
    display: none !important;
  }
}

.main-product-bg:hover #myresult {
  z-index: 2;
  opacity: 1;
}

.p-details {
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  align-items: center;
}

.alert-success {
  margin: 10px;
}
.alert-success ul {
  margin-bottom: 0;
}

.symoname-details {
  margin-top: 15px;
  font-size: 15px;
  color: #8c8c8c;
  font-weight: 400;
}

#enquiryformmodal .modal-dialog {
  max-width: 800px;
}

.photo-u {
  height: 33px !important;
}

.menuopen .logo-header {
  display: none;
}

@media (max-width: 767px) {
  #sendenquiry .radio {
    justify-content: flex-start !important;
  }
}

.sticky-top {
  position: sticky !important;
  top: 120px;
  z-index: 5;
}

.dropend a {
  margin-left: 0 !important;
  text-align: center;
  width: 100%;
  display: block;
  text-align: start;
  padding-left: 12px;
}

.pruduct-dropdown-menu {
  background: #FEF0F6;
  padding: 10px 0;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 26px -17px gray;
}

.dropend .dropdown-menu {
  background: #FEF0F6;
  padding: 10px 0;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 26px -17px gray;
  width: 190px;
}
@media (max-width: 991px) {
  .dropend .dropdown-menu {
    background: transparent;
    box-shadow: none;
  }
}

.dropdown-menu.show {
  display: none !important;
}

.pruduct-dropdown .pruduct-dropdown-menu {
  display: none !important;
}
.pruduct-dropdown .pruduct-dropdown-menu .dropend a {
  padding: 10px !important;
  margin-bottom: 0 !important;
}
@media (max-width: 991px) {
  .pruduct-dropdown .pruduct-dropdown-menu .dropend a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
}

.pruduct-dropdown:hover .pruduct-dropdown-menu {
  display: block !important;
}

@media (max-width: 991px) {
  .pruduct-dropdown:hover .pruduct-dropdown-menu {
    display: block !important;
    padding: 0;
    margin: 0 auto 0 auto !important;
    position: relative;
    top: -10px;
    background: transparent;
    width: 85%;
    border-radius: 0;
    border: none !important;
    box-shadow: none;
  }
}
@media (max-width: 991px) {
  .dropdown-toggle1 {
    margin-top: 0;
    padding-bottom: 0;
    border-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .pruduct-dropdown {
    border-bottom: 1px solid;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .pruduct-dropdown .dropdown-toggle {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .pruduct-dropdown .dropdown-toggle:after {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .pruduct-dropdown-menu .dropdown-menu {
    position: relative !important;
    left: 0 !important;
    width: 80% !important;
    margin: 0 auto !important;
  }
}

.dropend {
  position: relative;
}
@media (max-width: 991px) {
  .dropend .dropdown-menu {
    margin-left: 11px !important;
    width: 95% !important;
    border: none !important;
    padding: 0;
    margin: 0 auto 0 10px !important;
    border-radius: 0;
  }
  .dropend .dropdown-menu .link-h {
    border: 0 !important;
    border-top: 1px solid rgba(60, 55, 121, 0.168627451) !important;
    font-size: 12px !important;
  }
}

.dropend .dropdown-menu .productAllDataId li:first-child a {
  border-top: none !important;
}

.dropend .dropdown-menu .productAllDataId .dropend {
  padding-left: 0 !important;
}

.pruduct-dropdown .pruduct-dropdown-menu .productAllDataId .dropend a {
  display: block !important;
  display: block !important;
  padding-left: 15px !important;
  position: relative;
}

.link-h img {
  position: absolute;
  left: 0;
}

.open-close-btn {
  display: none;
}
@media (max-width: 991px) {
  .open-close-btn {
    display: block !important;
  }
}

.new-enqiry-section {
  background-color: #f9f9f9;
}

ul.accordion-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0px;
  margin: 0;
  list-style: none;
}
ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #FFF;
  padding: 10px 10px;
  margin: 0 auto 15px auto;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}
ul.accordion-list li.active h3:after {
  transform: rotate(45deg);
}
ul.accordion-list li.active .answer {
  display: block !important;
}
ul.accordion-list li h3 {
  font-weight: 500;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.01em;
  cursor: pointer;
}
ul.accordion-list li h3:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  color: #5e327a;
  transition: all 0.3s ease-in-out;
  font-size: 19px;
}
ul.accordion-list li div.answer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: gray;
  margin: 0;
  margin-top: 13px;
  padding: 0;
  font-size: 14px;
  cursor: pointer;
}
ul.accordion-list li div.answer p {
  position: relative;
  display: block;
  font-weight: 300;
  padding: 10px 0 0 0;
  cursor: pointer;
  line-height: 150%;
  margin: 0 0 15px 0;
  font-size: 15px;
}

.pruduct-dropdown .pruduct-dropdown-menu .dropend:hover {
  background-color: #ffffff;
}

.pruduct-dropdown .pruduct-dropdown-menu .dropend:hover a {
  color: black;
}

.pruduct-dropdown .pruduct-dropdown-menu .dropend:hover .productAllDataId a {
  color: #000;
}

.pruduct-dropdown .pruduct-dropdown-menu .dropend:hover .productAllDataId li:hover a {
  color: #000;
}

@media (min-width: 992px) {
  .maincertificate.col-lg-3 {
    flex: 0 0 auto;
    width: 15%;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-weight: 500;
  color: #4c4c4c;
  outline: none;
  visibility: visible;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
  outline: 0;
}

.section-padding {
  padding-top: 80px;
}

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

.filter {
  text-align: center;
  max-width: 1050px;
  margin: auto;
}

.gallery a {
  display: flex;
  display: flex;
  width: 100%;
  height: 350px;
}

.gallery img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
  object-fit: contain;
  transition: 0.3s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
}

.gallery img:hover {
  transform: scale(1.1);
}

.sets .hide,
.sets .pophide {
  display: none;
}

.openDiv {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9058823529);
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  z-index: 9999;
}

.imgPreview {
  width: 70%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  max-height: 40vw;
  height: auto;
}

.prevButton,
.nextButton {
  transition: 1s linear;
  padding: 10px 35px;
  font-size: 19px;
  border: none;
  color: white;
  background: rgba(0, 0, 0, 0.3333333333);
  border-radius: 10px;
  border: 1px solid white;
  margin: 10px;
}

.prevButton:hover,
.nextButton:hover {
  background: #fff;
  color: black;
}

/* resposive CSS Code */
@media (max-width: 1199px) {
  .section-padding {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .title {
    font-size: 37px;
  }
  .closeBtn {
    padding: 6px 25px;
  }
  .prevButton,
  .nextButton {
    font-size: 19px;
    padding: 8px 25px;
  }
}
@media (max-width: 540px) {
  .section-padding {
    padding-top: 30px;
  }
  .closeBtn {
    font-size: 19px;
    border-radius: 15px;
  }
  .prevButton,
  .nextButton {
    font-size: 19px;
    padding: 6px 20px;
    border-radius: 10px;
    margin: 5px;
  }
  .imgPreview {
    width: 90%;
    max-height: 50vh;
    height: auto;
  }
}
#btncontainer .btn {
  background: 0 0;
  border: 0;
  border-radius: 0.25rem;
  padding: 5px 10px;
  font-size: 16px;
  color: black;
  margin-top: 0;
}

#btncontainer {
  background-color: #ede9f0;
  width: -moz-max-content;
  width: max-content;
  padding: 12px;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 30px;
}
@media (max-width: 767px) {
  #btncontainer {
    overflow-x: scroll;
    width: 100%;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

#btncontainer .btn-active {
  color: #fff;
  background-color: #eb73ab;
  /* font-size: 1411px; */
}

.openDiv .closeBtn {
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  right: 25px;
  top: 25px;
  color: white;
  transition: 0.5s linear;
  padding: 8px 20px;
  border-radius: 25px;
  background: black;
  outline-offset: -6px;
  outline: 2px solid #fff;
}

.openDiv .closeBtn:hover {
  cursor: pointer;
  background: white;
  color: black;
  outline: 2px solid #000;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.wrapper strong {
  color: #000;
  font-weight: 600;
}

@media (max-width: 400px) {
  .maincertificate {
    flex: 0 0 auto;
    width: 50% !important;
  }
}
.synonyms-details {
  font-size: 16px;
}
@media (max-width: 767px) {
  .synonyms-details {
    font-size: 13px;
  }
}

.page-loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #fff;
  z-index: 1050;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.page-loader .txt {
  color: #666;
  text-align: center;
  top: 40%;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-weight: bold;
  line-height: 1.5;
}

.spinner {
  position: relative;
  top: 50%;
  width: 150px;
  height: 150px;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 100%;
  transform: translateY(-50%);
  left: 0;
}
.spinner img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner_one {
  position: relative !important;
}
.banner_one h1 {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: initial;
  text-align: center;
  z-index: 99999999999;
  width: 60%;
}

.banner-slider.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

@media (max-width: 1199px) {
  .main-why-margin {
    margin-top: 30px;
  }
}

.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.maincontentdiv, .maincontentdiv2, .maincontentdiv3 {
  opacity: 0;
}

.mainbodyload {
  overflow: hidden;
  height: 100vh;
}/*# sourceMappingURL=style.css.map */