/**
  * Css for Purple Skin
  */
[data-bs-theme=light] {
  --bs-border-color: #d5dce5;
  --bs-heading-main-color: #272727;
  --bs-navbar-brand-color: #202020;
  --bs-navbar-border-color: #e5e9ef;
  --bs-navbar-link-color: #838e95;
  --bs-navbar-link-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-collapse-link-color: #838e95;
  --bs-formcontrol-muted-background: #edf0f5;
  --bs-footer-text-color: #59626d;
  --bs-footer-link-color: #59626d;
  --bs-dropdown-link-active-background: #f8f9fa;
}

[data-bs-theme=light] .hero {
  color: var(--bs-body-color);
}

[data-bs-theme=light] .text-primary {
  color: #2c2c2c !important;
}

[data-bs-theme=light] .text-gray-soft {
  color: #838e95 !important;
}

[data-bs-theme=light] h1,
[data-bs-theme=light] h2,
[data-bs-theme=light] h3,
[data-bs-theme=light] h4,
[data-bs-theme=light] h5,
[data-bs-theme=light] h6,
[data-bs-theme=light] .h1,
[data-bs-theme=light] .h2,
[data-bs-theme=light] .h3,
[data-bs-theme=light] .h4,
[data-bs-theme=light] .h5,
[data-bs-theme=light] .h6 {
  margin-bottom: 20px;
  color: var(--bs-heading-main-color);
}

[data-bs-theme=light] .navbar {
  border-bottom: 1px solid var(--bs-navbar-border-color);
  padding: 0.385rem 1rem;
}

[data-bs-theme=light] .navbar-nav li {
  margin-bottom: 0;
}

[data-bs-theme=light] .navbar-brand {
  color: var(--bs-navbar-brand-color);
  font-size: 16px;
  padding: 8.5px 0;
  font-weight: 500;
  /*margin-top: -1px;*/
}

[data-bs-theme=light] .navbar-brand {
  padding: 5px 0;
  margin-top: 0px;
}

[data-bs-theme=light] .navbar-light .navbar-nav .nav-link,
[data-bs-theme=light] .navbar-light .navbar-nav .menu-item a {
  color: var(--bs-navbar-link-color);
  font-size: 16px;
  text-decoration: none;
}

[data-bs-theme=light] .navbar-light .navbar-nav .show>.nav-link,
[data-bs-theme=light] .navbar-light .navbar-nav .active>.nav-link,
[data-bs-theme=light] .navbar-light .navbar-nav .nav-link.show,
[data-bs-theme=light] .navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-navbar-link-active-color);
}

[data-bs-theme=light] .navbar-top-collapse>.nav>li>a {
  color: var(--bs-navbar-collapse-link-color);
}

[data-bs-theme=light] .dropdown-toggle::after {
  display: none;
}

[data-bs-theme=light] .navbar .navbar-toggler {
  padding: 0;
  border: 0;
}

[data-bs-theme=light] .dropdown-item.active,
[data-bs-theme=light] .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-background);
}

[data-bs-theme=light] .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

[data-bs-theme=light] .dropdown-menu {
  border-color: #d5dce5;
}

[data-bs-theme=light] .dropdown-menu.show {
  display: block;
}

[data-bs-theme=light] .navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

@media (min-width: 992px) {
  [data-bs-theme=light] .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
}

@media (min-width: 992px) {
  [data-bs-theme=light] .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (min-width: 992px) {
  [data-bs-theme=light] .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

[data-bs-theme=light] .navbar-top-collapse>.nav {
  display: block;
  width: 100%;
}

[data-bs-theme=light] a:hover,
[data-bs-theme=light] a:focus,
[data-bs-theme=light] a:visited {
  text-decoration: none;
  outline: none;
  outline-offset: 0;
}

[data-bs-theme=light] .navbar-top-collapse>.nav>li>a {
  background: none;
  border: 0;
  clear: both;
  color: #838e95;
  display: block;
  font-size: 14px;
  font-weight: 400;
  padding: 0.25rem 1.5rem;
  text-align: inherit;
  white-space: nowrap;
  width: 100%;
}

[data-bs-theme=light] .navbar-top-collapse>.nav>li>a:hover {
  background: #f5f6f9;
  color: #2c2c2c;
}

[data-bs-theme=light] card {
  border-color: #d5dce5;
  border-radius: 6px;
}

[data-bs-theme=light] .card--table {
  border: none;
}

[data-bs-theme=light] .card--table .card-body {
  background: #f6f7f8;
  border: 1px solid #d5dce5;
  border-bottom: none;
}

[data-bs-theme=light] .card--table .card__item {
  padding: 5px 0;
}

[data-bs-theme=light] .card--table .card__item+.card__item {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #d5dce5;
}

[data-bs-theme=light] .alert {
  color: var(--bs-white);
}

[data-bs-theme=light] .alert a {
  color: rgba(var(--bs-white), var(--bs-link-opacity, 1));
}

[data-bs-theme=light] .alert-brand {
  background: #7952b3;
}

[data-bs-theme=light] .btn,
[data-bs-theme=light] .woocommerce a.button,
[data-bs-theme=light] .woocommerce-page a.button,
[data-bs-theme=light] .woocommerce button.button,
[data-bs-theme=light] .woocommerce-page button.button,
[data-bs-theme=light] .woocommerce input.button,
[data-bs-theme=light] .woocommerce-page input.button,
[data-bs-theme=light] .woocommerce #respond input#submit,
[data-bs-theme=light] .woocommerce-page #respond input#submit,
[data-bs-theme=light] .woocommerce #content input.button,
[data-bs-theme=light] .woocommerce-page #content input.button {
  padding: 10.5px 27px;
  font-size: 14px;
}

[data-bs-theme=light] .btn.btn-brand,
[data-bs-theme=light] .woocommerce a.btn-brand.button,
[data-bs-theme=light] .woocommerce-page a.btn-brand.button,
[data-bs-theme=light] .woocommerce button.btn-brand.button,
[data-bs-theme=light] .woocommerce-page button.btn-brand.button,
[data-bs-theme=light] .woocommerce input.btn-brand.button,
[data-bs-theme=light] .woocommerce-page input.btn-brand.button,
[data-bs-theme=light] .woocommerce #respond input.btn-brand#submit,
[data-bs-theme=light] .woocommerce-page #respond input.btn-brand#submit,
[data-bs-theme=light] .woocommerce #content input.btn-brand.button,
[data-bs-theme=light] .woocommerce-page #content input.btn-brand.button {
  background: #7952b3;
  color: var(--bs-white);
}

[data-bs-theme=light] .btn.btn-brand:hover,
[data-bs-theme=light] .woocommerce a.btn-brand.button:hover,
[data-bs-theme=light] .woocommerce-page a.btn-brand.button:hover,
[data-bs-theme=light] .woocommerce button.btn-brand.button:hover,
[data-bs-theme=light] .woocommerce-page button.btn-brand.button:hover,
[data-bs-theme=light] .woocommerce input.btn-brand.button:hover,
[data-bs-theme=light] .woocommerce-page input.btn-brand.button:hover,
[data-bs-theme=light] .woocommerce #respond input.btn-brand#submit:hover,
[data-bs-theme=light] .woocommerce-page #respond input.btn-brand#submit:hover,
[data-bs-theme=light] .woocommerce #content input.btn-brand.button:hover,
[data-bs-theme=light] .woocommerce-page #content input.btn-brand.button:hover,
[data-bs-theme=light] .btn.btn-brand:focus,
[data-bs-theme=light] .woocommerce a.btn-brand.button:focus,
[data-bs-theme=light] .woocommerce-page a.btn-brand.button:focus,
[data-bs-theme=light] .woocommerce button.btn-brand.button:focus,
[data-bs-theme=light] .woocommerce-page button.btn-brand.button:focus,
[data-bs-theme=light] .woocommerce input.btn-brand.button:focus,
[data-bs-theme=light] .woocommerce-page input.btn-brand.button:focus,
[data-bs-theme=light] .woocommerce #respond input.btn-brand#submit:focus,
[data-bs-theme=light] .woocommerce-page #respond input.btn-brand#submit:focus,
[data-bs-theme=light] .woocommerce #content input.btn-brand.button:focus,
[data-bs-theme=light] .woocommerce-page #content input.btn-brand.button:focus {
  background: #7952b3;
  color: var(--bs-white);
}

[data-bs-theme=light] .btn.btn-lg,
[data-bs-theme=light] .btn-group-lg>.btn,
[data-bs-theme=light] .woocommerce .btn-group-lg>a.button,
[data-bs-theme=light] .woocommerce-page .btn-group-lg>a.button,
[data-bs-theme=light] .woocommerce .btn-group-lg>button.button,
[data-bs-theme=light] .woocommerce-page .btn-group-lg>button.button,
[data-bs-theme=light] .woocommerce .btn-group-lg>input.button,
[data-bs-theme=light] .woocommerce-page .btn-group-lg>input.button,
[data-bs-theme=light] .woocommerce #respond .btn-group-lg>input#submit,
[data-bs-theme=light] .woocommerce-page #respond .btn-group-lg>input#submit,
[data-bs-theme=light] .woocommerce #content .btn-group-lg>input.button,
[data-bs-theme=light] .woocommerce-page #content .btn-group-lg>input.button,
[data-bs-theme=light] .woocommerce a.btn-lg.button,
[data-bs-theme=light] .woocommerce-page a.btn-lg.button,
[data-bs-theme=light] .woocommerce button.btn-lg.button,
[data-bs-theme=light] .woocommerce-page button.btn-lg.button,
[data-bs-theme=light] .woocommerce input.btn-lg.button,
[data-bs-theme=light] .woocommerce-page input.btn-lg.button,
[data-bs-theme=light] .woocommerce #respond input.btn-lg#submit,
[data-bs-theme=light] .woocommerce-page #respond input.btn-lg#submit,
[data-bs-theme=light] .woocommerce #content input.btn-lg.button,
[data-bs-theme=light] .woocommerce-page #content input.btn-lg.button {
  padding: 13px 27px;
  font-size: 16px;
}

[data-bs-theme=light] .btn.rounded-bottom,
[data-bs-theme=light] .woocommerce a.rounded-bottom.button,
[data-bs-theme=light] .woocommerce-page a.rounded-bottom.button,
[data-bs-theme=light] .woocommerce button.rounded-bottom.button,
[data-bs-theme=light] .woocommerce-page button.rounded-bottom.button,
[data-bs-theme=light] .woocommerce input.rounded-bottom.button,
[data-bs-theme=light] .woocommerce-page input.rounded-bottom.button,
[data-bs-theme=light] .woocommerce #respond input.rounded-bottom#submit,
[data-bs-theme=light] .woocommerce-page #respond input.rounded-bottom#submit,
[data-bs-theme=light] .woocommerce #content input.rounded-bottom.button,
[data-bs-theme=light] .woocommerce-page #content input.rounded-bottom.button {
  border-radius: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

[data-bs-theme=light] .btn-primary,
[data-bs-theme=light] .btn-brand {
  font-weight: 600;
}

[data-bs-theme=light] .footer {
  color: var(--bs-footer-text-color);
}

[data-bs-theme=light] .footer__item:not(:last-child) {
  border-bottom: 1px solid var(--bs-border-color);
}

[data-bs-theme=light] .footer__sub-nav li a {
  color: var(--bs-footer-link-color);
}

[data-bs-theme=light] .footer__inner {
  border-top: 1px solid var(--bs-border-color);
  padding: 30px 0;
}

.testimonial-wrapper {
  border: 10px solid #744187;
  padding: 80px 70px;
  text-align: center;
  position: relative;
}

.testimonial-wrapper:before {
  /* --fa-family: var(--fa-family-classic); */
  font-family: "Font Awesome 7 Free";
  content: "\f10d";
  width: 75px;
  height: 75px;
  line-height: 75px;
  background: #fff;
  text-align: center;
  font-size: 50px;
  color: #3c414c;
  position: absolute;
  top: -40px;
  left: 2%;
}

.testimonial {
  padding: 0 15px;
}

.testimonial .description {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #848484;
  line-height: 30px;
  padding-bottom: 25px;
  margin-bottom: 15px;
  position: relative;
}

.testimonial .description:before {
  content: "";
  width: 75%;
  border-top: 1px solid #ddd;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.testimonial .description:after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  bottom: -10px;
  left: 50%;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  transform: translateX(-50%) rotate(45deg);
}

.testimonial .pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 25px auto;
  overflow: hidden;
}

.testimonial .pic img {
  width: 100%;
  height: auto;
}

.testimonial .title {
  display: inline-block;
  font-size: 23px;
  font-weight: 700;
  color: #848484;
  text-transform: capitalize;
  margin: 0;
}

.testimonial .post {
  display: inline-block;
  font-size: 20px;
  color: #848484;
}

@media only screen and (max-width: 767px) {
  .testimonial-wrapper {
    padding: 50px 40px;
  }
}

@media only screen and (max-width: 480px) {
  .testimonial-wrapper:before {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 40px;
  }

  .testimonial-wrapper {
    padding: 30px 10px;
  }
}

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

  .testimonial .title,
  .testimonial .post {
    font-size: 16px;
  }
}