@charset "UTF-8";
/************************Header********************************/
header#Header {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
header#Header .header-custom {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  align-items: center;
}
header#Header .header-custom .Header-Logo img {
  max-width: 85%;
}
header#Header .header-custom button.nav-trigger {
  display: none;
}
header#Header .header-custom .navigation button.sub-menu-toggle {
  display: none;
}
header#Header .header-custom .navigation #menu-primary-menu {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: end;
  width: 100%;
  max-width: -moz-max-content !important;
  max-width: max-content !important;
  margin-left: auto !important;
}
header#Header .header-custom .navigation #menu-primary-menu > li {
  display: flex;
  align-items: center;
  position: relative;
}
header#Header .header-custom .navigation #menu-primary-menu > li > a {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  justify-content: center;
  flex-direction: row-reverse;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
  align-items: center;
  text-decoration: none;
}
header#Header .header-custom .navigation #menu-primary-menu > li > a::after {
  display: block;
  content: "";
  transform: scaleX(0) translateY(50%);
  transition: transform 250ms ease-in-out;
  transform-origin: 100% 50%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--theme-color);
  border-radius: 2rem;
}
header#Header .header-custom .navigation #menu-primary-menu > li > a:hover:after {
  transform: scaleX(1) translateY(50%);
  transform-origin: 0 50%;
}
header#Header .header-custom .navigation #menu-primary-menu > li.current-menu-parent > a, header#Header .header-custom .navigation #menu-primary-menu > li.current-menu-item > a {
  color: var(--theme-color);
}
header#Header .header-custom .navigation #menu-primary-menu > li.current-menu-parent > a::after, header#Header .header-custom .navigation #menu-primary-menu > li.current-menu-item > a::after {
  transform: scaleX(1) translateY(50%);
  transform-origin: 0 50%;
}
header#Header .header-custom .navigation #menu-primary-menu > li.current-menu-parent > a::before, header#Header .header-custom .navigation #menu-primary-menu > li.current-menu-item > a::before {
  border-bottom: 3px solid var(--theme-color) !important;
  border-right: 3px solid var(--theme-color) !important;
}
header#Header .header-custom .navigation #menu-primary-menu > li:not(:last-child) {
  padding-right: 2rem;
}
header#Header .header-custom .navigation #menu-primary-menu > li.menu-item-has-children > a:before {
  content: "";
  display: inline-block;
  border-bottom: 3px solid var(--theme-color-dark);
  border-right: 3px solid var(--theme-color-dark);
  height: 10px;
  width: 10px;
  transform: rotate(45deg) rotateX(0deg);
  margin-top: -0.3rem;
  transition: 0.5s;
}
header#Header .header-custom .navigation #menu-primary-menu > li.menu-item-has-children > a:hover::before {
  border-bottom: 3px solid var(--theme-color);
  border-right: 3px solid var(--theme-color);
}
header#Header .header-custom .navigation #menu-primary-menu > li > .sub-menu {
  margin: 0 !important;
  position: absolute;
  top: 100%;
  background: var(--theme-color-light-x);
  list-style: none;
  padding: 0.5rem !important;
  transform: translateY(1rem);
  width: 15rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  border-radius: 1.2rem;
  text-align: left !important;
  border: 1px solid var(--theme-color-x-light-grey);
}
header#Header .header-custom .navigation #menu-primary-menu > li > .sub-menu > li {
  padding: 0.2rem;
}
header#Header .header-custom .navigation #menu-primary-menu > li > .sub-menu > li:hover {
  background: var(--theme-color-light) !important;
  border-radius: 1.2rem;
  color: var(--theme-color);
  cursor: pointer;
  padding: 0.2rem;
}
header#Header .header-custom .navigation #menu-primary-menu > li > .sub-menu > li:hover > a {
  background: transparent !important;
}
header#Header .header-custom .navigation #menu-primary-menu > li > .sub-menu > li a {
  padding: 0.5rem !important;
  display: inline-flex;
  text-decoration: none;
  width: 100%;
}
header#Header .header-custom .navigation #menu-primary-menu > li > .sub-menu > li.menu-item-has-children {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header#Header .header-custom .navigation #menu-primary-menu > li > .sub-menu > li.menu-item-has-children:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.3rem solid transparent;
  border-right: 0.3rem solid transparent;
  border-top: 0.3rem solid var(--theme-color-dark);
  transform: rotate(-90deg) translateY(0);
  transition: 0.5s;
  margin-right: 0.3rem;
  opacity: 30%;
}
header#Header .header-custom .navigation #menu-primary-menu > li > .sub-menu > li.menu-item-has-children > .sub-menu {
  margin: 0 !important;
  position: absolute;
  left: calc(100% + 1rem);
  top: 0%;
  background: var(--theme-color-light-x);
  list-style: none;
  padding: 0.5rem !important;
  transform: translate(-0.4rem, 2rem);
  width: 15rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  border: 1px solid var(--theme-color-x-light-grey);
  border-radius: 1.2rem;
}
header#Header .header-custom .navigation #menu-primary-menu > li > .sub-menu > li.menu-item-has-children > .sub-menu > li:hover a {
  background: var(--theme-color-light);
}
header#Header .header-custom .navigation #menu-primary-menu > li > .sub-menu > li.menu-item-has-children > .sub-menu > li a {
  padding: 0.7rem !important;
  display: inline-flex;
  color: var(--theme-color-dark);
  border-radius: 1rem;
}
header#Header .header-custom .navigation #menu-primary-menu > li > .sub-menu > li.menu-item-has-children:hover {
  background: transparent !important;
}
header#Header .header-custom .navigation #menu-primary-menu > li > .sub-menu > li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-0.4rem, 0rem);
  z-index: 1;
}
header#Header .header-custom .navigation #menu-primary-menu > li:hover {
  background: transparent !important;
}
header#Header .header-custom .navigation #menu-primary-menu > li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(1rem);
}
header#Header .header-custom .navigation #menu-primary-menu > li:hover > .sub-menu > li:hover {
  color: var(--theme-color) !important;
  background-color: var(--theme-color-light) !important;
  border-radius: 1rem;
}
header#Header .header-custom .navigation #menu-primary-menu > li:hover > .sub-menu > a {
  color: var(--theme-text-dark) !important;
}
header#Header .header-custom .navigation #menu-primary-menu > li:hover > .sub-menu > a:hover {
  color: var(--theme-color) !important;
  background-color: var(--theme-color-light) !important;
  border-radius: 1rem;
}
header#Header .header-custom .navigation #menu-primary-menu a {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--theme-color-dark);
  padding: 0.5rem 0rem 0.5rem 0rem;
  transition: 0.5s;
}
header#Header .header-custom .navigation #menu-primary-menu a:hover {
  text-decoration: none;
}
header#Header .header-custom .navigation #menu-primary-menu li.current-menu-item {
  background: transparent !important;
}

/**************************MainBanner**************************************/
section#MainBanner {
  height: 700px;
  padding-top: 3.125rem;
  overflow: hidden;
}
section#MainBanner .MainbannerImage {
  position: relative;
}
section#MainBanner .MainbannerImage .grain-effect-img img {
  height: 100%;
  position: absolute;
  top: 0;
  mix-blend-mode: overlay;
}
section#MainBanner .MainbannerImage .banner-curve img {
  position: absolute;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  bottom: 0px;
}
section#MainBanner .MainbannerImage .outer-bg-rounded {
  display: block;
  left: 0;
  right: 0;
  top: auto;
  bottom: 25px;
  z-index: 9;
  position: absolute;
  margin: auto;
  width: 66.42px;
  height: 66.42px;
  background: #ffffff;
  box-shadow: 0px 8px 30px rgba(134, 134, 134, 0.15);
  border-radius: 50%;
}
section#MainBanner .MainbannerImage .outer-bg-rounded a {
  position: absolute;
  width: 19.08px;
  height: 29.29px;
  left: 23px;
  top: 17px;
  border: 2px solid var(--theme-color-alt);
  border-radius: 30px;
}
section#MainBanner .MainbannerImage .outer-bg-rounded a:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--theme-color-alt);
  left: 6px;
  top: 8px;
  border-radius: 4px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
}
section#MainBanner .Top-Banner-Text h1 {
  font-family: var(--theme-heading-font);
  line-height: 3.813rem;
  text-align: center;
  color: var(--theme-color-dark);
  margin-bottom: 0.3rem;
}
section#MainBanner .span-text {
  display: inline-block;
  font-family: var(--theme-heading-font);
  font-weight: 900;
  font-size: 3.125rem;
  line-height: 3.813rem;
  text-align: center;
  text-transform: capitalize;
  background: linear-gradient(90.32deg, #ff7c30 8.34%, #b51d80 95.36%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 1rem;
  display: block;
}
section#MainBanner .banner-content-text {
  font-family: var(--theme-text-font);
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  text-transform: capitalize;
  color: var(--theme-color-grey);
  margin-bottom: 2rem !important;
  width: 60%;
  margin: auto;
}
section#MainBanner .banner-position-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 120px;
}
section#MainBanner .outer-banner-slider {
  overflow: hidden;
  height: 360px;
}
section#MainBanner .slick-slider .slick-slide.slick-active {
  position: relative;
  z-index: 1;
}
section#MainBanner .slick-slider * {
  visibility: hidden;
}
section#MainBanner .slick-slider .slick-slide.slick-active * {
  visibility: visible;
}
section#MainBanner .slick-slider .slick-list {
  transform: rotate(180deg);
}
section#MainBanner .slick-slider .slick-slide {
  transform: rotate(180deg);
}
@keyframes scroll {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}
/**************************Partners*************************/
#Partners.my-6 {
  margin-top: 6.875rem;
  margin-bottom: 6.875rem;
}
#Partners .Partners-top-title {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.688;
  color: var(--theme-color-grey);
  margin-bottom: 1.625rem;
}
#Partners .partners-logos {
  display: flex;
  justify-content: center;
}
#Partners .partners-logos .outer-box {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#Partners .partners-logos .outer-box:not(:last-child) {
  margin-right: 30px;
}
#Partners .partners-logos .outer-box:nth-child(1) {
  width: 168.16px;
  height: 118.01px;
}
#Partners .partners-logos .outer-box:nth-child(2) {
  width: 168.16px;
  height: 118.01px;
}
#Partners .partners-logos .outer-box:nth-child(3) {
  width: 168.16px;
  height: 118.01px;
}
#Partners .partners-logos .outer-box:nth-child(4) {
  width: 283.34px;
  height: 118.01px;
}
#Partners .partners-logos .outer-box:nth-child(1) img {
  width: 120.52px;
  height: 80.9px;
  -o-object-fit: cover;
     object-fit: cover;
}
#Partners .partners-logos .outer-box:nth-child(2) img {
  width: 132.12px;
  height: 80.9px;
  -o-object-fit: cover;
     object-fit: cover;
}
#Partners .partners-logos .outer-box:nth-child(3) img {
  width: 118px;
  height: 77.68px;
  -o-object-fit: cover;
     object-fit: cover;
}
#Partners .partners-logos .outer-box:nth-child(4) img {
  width: 240.48px;
  height: 86.34px;
  -o-object-fit: cover;
     object-fit: cover;
}

/**********************About*************************************/
#About .About-title {
  display: flex;
  justify-content: center;
}
#About .About-title h2 {
  font-family: var(--theme-heading-font);
  line-height: 60px;
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 4.875rem;
}
#About .about-left-img {
  margin-right: 40px;
}
#About .top-title {
  font-family: var(--theme-text-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  color: var(--theme-color-grey);
  margin-bottom: 0.688rem;
}
#About .about-main-title {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 3.125rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 1.313rem;
}
#About .About-content {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.563rem;
  color: var(--theme-color-xdark);
  margin-bottom: 0.9rem;
}
#About ul {
  list-style-type: none;
  padding-left: 0;
}
#About ul li {
  font-family: var(--theme-text-font);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2.375rem;
  color: var(--theme-color-dark);
}
#About ul li:before {
  content: "";
  background: url(https://projectsconsole.com/mwh/assistppc/wp-content/uploads/2023/02/check-circle.svg) no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
  padding-right: 35px;
  margin-top: 15px;
  vertical-align: text-bottom;
}

/***********Services***************************************/
#Services {
  height: 720px;
}
#Services.my-6 {
  margin-top: 6.875rem;
  margin-bottom: 6.875rem;
}
#Services a {
  text-decoration: none;
}
#Services .service-btn .button-outline {
  padding: 10px 28px;
}
#Services .service-bg {
  margin-top: -70px;
  position: relative;
  z-index: -1;
}
#Services .service-bg img {
  height: 720px;
}
#Services .container-fluid {
  position: relative;
}
#Services .container-fluid .service-main-title {
  display: flex;
  justify-content: center;
}
#Services .container-fluid .service-main-title h2 {
  font-family: var(--theme-heading-font);
  line-height: 60px;
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#Services .container-fluid .service-outer-card {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
  border-radius: 20px;
  display: flex;
  padding: 25px;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  position: relative;
}
#Services .container-fluid .service-outer-card:hover {
  box-shadow: 0px 24px 74px rgba(0, 0, 0, 0.1);
}
#Services .container-fluid .service-outer-card:hover .service-card-img::before {
  content: "";
  background: linear-gradient(310.17deg, #ffe4fb 15.96%, #ffe8d2 83.29%);
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  border-radius: 50%;
  z-index: -1;
  transition: 1s all ease;
}
#Services .container-fluid .service-outer-card .service-card-img {
  margin-right: 22px;
  width: 75px;
  height: 75px;
  border: 1px solid var(--theme-color-x-light-grey);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1/1;
  position: relative;
}
#Services .container-fluid .service-outer-card .service-card-img img {
  height: 40px;
  width: 40px;
}
#Services .container-fluid .service-outer-card .service-card-img:before {
  content: "";
  background: linear-gradient(310.17deg, #ffe4fb 15.96%, #ffe8d2 83.29%);
  position: absolute;
  left: 0px;
  right: 4px;
  top: 0px;
  bottom: 4px;
  border-radius: 50%;
  z-index: -1;
  transition: 1s all ease;
}
#Services .container-fluid .service-outer-card .service-card-title {
  font-family: var(--theme-heading-font);
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 0.75rem;
}
#Services .container-fluid .service-outer-card .service-card-text {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  margin-bottom: 1.25rem;
}
#Services .container-fluid .service-outer-card .service-card-link {
  margin-top: 2rem;
}
#Services .container-fluid .service-outer-card .service-card-link a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#Services .container-fluid .service-position {
  position: absolute;
  bottom: 170px;
  margin-left: 120px;
  margin-right: 120px;
}
#Services .container-fluid .service-btn {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
#Services .container-fluid .service-btn a {
  font-family: var(--theme-heading-font);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  color: var(--theme-color-alt);
  border-bottom: 1px solid transparent;
}
#Services .container-fluid .service-btn a:hover {
  border-bottom: 1px solid var(--theme-color-alt);
}

/***********Assist****************************************/
#Assist .assist-left-col-right-padding {
  padding-right: 2.188rem;
}
#Assist .Assist-top-title {
  display: flex;
  justify-content: center;
}
#Assist .Assist-top-title h2 {
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 3.125rem;
}
#Assist .Assist-top-left-title {
  font-family: var(--theme-text-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  color: var(--theme-color-grey);
  margin-bottom: 0.688rem;
}
#Assist .assist-left-title {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 3.125rem;
  color: var(--theme-color-dark);
  margin-bottom: 1.625rem;
}
#Assist .assist-left-text {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.563rem;
  color: var(--theme-color-xdark);
  margin-bottom: 1.625rem;
}
#Assist ul {
  list-style-type: none;
  padding-left: 0;
}
#Assist ul li {
  font-family: var(--theme-text-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 38px;
  color: var(--theme-color-dark);
}
#Assist ul li:before {
  content: "";
  background: url(https://projectsconsole.com/mwh/assistppc/wp-content/uploads/2023/02/check-circle.svg) no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
  padding-right: 35px;
  margin-top: 15px;
  vertical-align: text-bottom;
}

/******************Products****************************************/
#Products.my-6 {
  margin-top: 6.875rem;
  margin-bottom: 6.875rem;
}
#Products .cutom-padding {
  padding-left: 100px;
  padding-right: 100px;
}
#Products .Products-title {
  display: flex;
  justify-content: center;
}
#Products .Products-title h2 {
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 3.125rem;
}
#Products .product-card {
  background: linear-gradient(0.81deg, #ffe4fb 0.72%, #ffe8d2 99.33%);
  border-radius: 45px;
  width: 470.76px;
  height: 420.77px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 45px;
  position: relative;
}
#Products .product-card .light-button a.button-outline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#Products .product-card .product-top-img img {
  max-width: 80%;
}
#Products .product-card .product-title {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 1.2rem;
}
#Products .product-card .product-text {
  font-family: var(--theme-text-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.688rem;
  text-align: center;
  color: var(--theme-color-xdark);
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  padding: 0 1.875rem;
}
#Products .product-main-btn {
  margin-top: 3rem;
}
#Products .product-main-btn a {
  font-family: var(--theme-heading-font);
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.688rem;
  color: var(--theme-color-alt);
  border-bottom: 1px solid transparent;
  text-decoration: none;
}
#Products .product-main-btn a:hover {
  border-bottom: 1px solid var(--theme-color-alt);
}

/***********************Solution*****************************/
#Solution .Blogs {
  position: relative;
}
#Solution .Blogs:not(:last-child) {
  border-bottom: 1px solid var(--theme-color-x-light-grey);
  padding-bottom: 30px;
  margin-bottom: 45px;
}
#Solution .Blogs > a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
#Solution .Solution-main-heading {
  display: flex;
  justify-content: center;
}
#Solution .Solution-main-heading h2 {
  font-family: var(--theme-heading-font);
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 3.125rem;
}
#Solution .left-side-solution-text {
  font-family: var(--theme-text-font);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.688rem;
  color: var(--theme-color-xdark);
}
#Solution .right-side-solution-title {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 0.356rem;
}
#Solution .right-side-solution-text {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688rem;
  color: var(--theme-color-xdark);
}

/***************************Footer*****************************/
#Footer {
  position: relative;
  overflow: hidden;
}
#Footer::after {
  content: "";
  position: absolute;
  width: 331.9px;
  height: 331.9px;
  right: 0px;
  bottom: -300px;
  background: var(--theme-color);
  filter: blur(73px);
  border-radius: 50%;
}
#Footer::before {
  content: "";
  position: absolute;
  width: 331.9px;
  height: 331.9px;
  right: -200px;
  bottom: -200px;
  background: var(--theme-color-alt);
  filter: blur(73px);
  border-radius: 50%;
}
#Footer.mt-6 {
  margin-top: 6.875rem;
}
#Footer .get-in-touch-left-text {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  border-right: 1px solid #d9d9d9;
  height: 90px;
  padding-right: 100px;
  display: flex;
  align-items: center;
}
#Footer .get-in-touch-right-text {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 4.625rem;
  line-height: 3.75rem;
  text-align: center;
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#Footer .get-in-touch-border {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 40px;
}
#Footer .footer-navigation {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
#Footer .footer-navigation-heading {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 1.141rem;
}
#Footer :is(.services-navigation-links ul li,
.products-navigation-links ul li,
.social-navigation-links ul li) {
  font-family: var(--theme-heading-font);
  margin-bottom: 0.875rem;
}
#Footer :is(.services-navigation-links ul li a,
.products-navigation-links ul li a,
.social-navigation-links ul li a) {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
}
#Footer :is(.services-navigation-links ul li a,
.products-navigation-links ul li a,
.social-navigation-links ul li a):hover {
  color: var(--theme-color-alt);
}
#Footer .copyright-text {
  font-family: var(--theme-heading-font);
  font-weight: 500;
  font-size: 0.875;
  line-height: 1.063;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  margin-bottom: 1.25rem;
}

/*******************InnerBanner****************************/
#InnerBanner.banner-gradient-corners {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
  overflow: hidden;
}
#InnerBanner.banner-gradient-corners .banner-background-color {
  position: absolute;
  width: 100%;
  height: 460px;
  left: 0px;
  top: 0;
  background: linear-gradient(180deg, #ffe4fb 0%, rgba(255, 228, 251, 0) 100%);
  bottom: 0;
  right: 0;
  transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -1;
}
#InnerBanner.banner-gradient-corners::before {
  content: "";
  background: var(--theme-color);
  filter: blur(113.273px);
  transform: rotate(49.24deg);
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  left: -200px;
  bottom: -200px;
}
#InnerBanner.banner-gradient-corners::after {
  content: "";
  background: var(--theme-color-alt-dark);
  filter: blur(113.273px);
  transform: rotate(49.24deg);
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  right: -200px;
  bottom: -200px;
  z-index: -1;
}
#InnerBanner.banner-gradient-corners .Inner-Banner-position-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#InnerBanner.banner-gradient-corners .Inner-Banner-position-content .inner-banner-heading {
  font-family: var(--theme-heading-font);
  font-weight: 900;
  font-size: 3.125rem;
  line-height: 3.813rem;
  margin-bottom: 1rem;
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#InnerBanner.banner-gradient-corners .grain-effect {
  mix-blend-mode: overlay;
}
#InnerBanner.banner-gradient-corners .Inner-banner-curve-img img {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/****************InnerServices*******************/
#InnerServices.mt-6 {
  margin-top: 6.875rem;
}
#InnerServices a {
  text-decoration: none;
}
#InnerServices .service-outer-card {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
  border-radius: 20px;
  display: flex;
  padding: 25px;
  height: 100%;
  position: relative;
  border: 0.946379px solid var(--theme-color-x-light-grey);
}
#InnerServices .service-outer-card:hover {
  box-shadow: 0px 24px 74px rgba(0, 0, 0, 0.1);
}
#InnerServices .service-outer-card:hover .service-card-img::before {
  content: "";
  background: linear-gradient(310.17deg, #ffe4fb 15.96%, #ffe8d2 83.29%);
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  border-radius: 50%;
  z-index: -1;
  transition: 1s all ease;
}
#InnerServices .service-outer-card .service-card-img {
  margin-right: 22px;
  width: 75px;
  height: 75px;
  border: 1px solid var(--theme-color-x-light-grey);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1/1;
  position: relative;
}
#InnerServices .service-outer-card .service-card-img:before {
  content: "";
  background: linear-gradient(310.17deg, #ffe4fb 15.96%, #ffe8d2 83.29%);
  position: absolute;
  left: 0px;
  right: 4px;
  top: 0px;
  bottom: 4px;
  border-radius: 50%;
  z-index: -1;
  transition: 1s all ease;
}
#InnerServices .service-outer-card .service-card-img img {
  width: 40px;
  height: 40px;
}
#InnerServices .service-outer-card .service-card-title {
  font-family: var(--theme-heading-font);
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 0.75rem;
}
#InnerServices .service-outer-card .service-card-text {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  margin-bottom: 1.25rem;
}
#InnerServices .service-outer-card .service-card-link a {
  font-family: var(--theme-heading-font);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.688;
  text-transform: capitalize;
  color: var(--theme-color-alt);
  text-decoration: none;
}
#InnerServices .service-outer-card .service-card-link a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#InnerServices .service-outer-card .service-card-link a:hover {
  border-bottom: 1px solid var(--theme-color-alt);
}

/********************ParentServices*********************************/
#InnerBannerParent.banner-gradient-corners {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
  overflow: hidden;
}
#InnerBannerParent.banner-gradient-corners .Inner-banner-curve-img img {
  position: absolute;
  bottom: 0;
  width: 100%;
}
#InnerBannerParent.banner-gradient-corners .banner-background-color {
  position: absolute;
  width: 100%;
  height: 460px;
  left: 0px;
  top: 0;
  background: linear-gradient(180deg, #ffe4fb 0%, rgba(255, 228, 251, 0) 100%);
  bottom: 0;
  right: 0;
  transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -1;
}
#InnerBannerParent.banner-gradient-corners::before {
  content: "";
  background: var(--theme-color);
  filter: blur(113.273px);
  transform: rotate(49.24deg);
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  left: -200px;
  bottom: -200px;
}
#InnerBannerParent.banner-gradient-corners::after {
  content: "";
  background: var(--theme-color-alt-dark);
  filter: blur(113.273px);
  transform: rotate(49.24deg);
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  right: -200px;
  bottom: -200px;
  z-index: -1;
}
#InnerBannerParent .grain-effect {
  mix-blend-mode: overlay;
}
#InnerBannerParent .Inner-Banner-position-content {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#InnerBannerParent .Inner-Banner-position-content .col-lg-12.justify-content-center .parent-service-title {
  justify-content: center;
}
#InnerBannerParent .Inner-Banner-position-content .parent-product-title {
  display: flex;
  justify-content: center;
}
#InnerBannerParent .Inner-Banner-position-content .parent-product-title h1 {
  text-transform: capitalize;
  margin-bottom: 1rem;
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#InnerBannerParent .Inner-Banner-position-content .parent-product-content {
  font-family: var(--theme-heading-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--theme-color-dark);
}
#InnerBannerParent .Inner-Banner-position-content .parent-service-title {
  display: flex;
}
#InnerBannerParent .Inner-Banner-position-content .parent-service-title h1 {
  text-transform: capitalize;
  margin-bottom: 1rem;
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#InnerBannerParent .Inner-Banner-position-content .parent-service-content {
  font-family: var(--theme-heading-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--theme-color-dark);
}
#InnerBannerParent .bg-shadow {
  background: #fdfafd;
  box-shadow: 0px 24px 74px rgba(0, 0, 0, 0.1);
  border-radius: 17px;
  padding: 30px 30px 12px 30px;
}
#InnerBannerParent .bg-shadow .points {
  font-family: var(--theme-heading-font);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.688rem;
  text-transform: capitalize;
  display: flex;
  color: var(--theme-color);
  margin-bottom: 1rem;
}
#InnerBannerParent .bg-shadow .points::before {
  content: "";
  background: url(../images/check-circle-pink.svg) no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
  padding-right: 30px;
  margin-top: 3px;
}

/********************InnerParentServices*******************************/
#InnerParentServices {
  position: relative;
  z-index: 1;
}
#InnerParentServices.mt-6 {
  margin-top: 6.875rem;
}
#InnerParentServices .bg-shadow-gradient {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  border: 2px solid #fff;
  padding: 40px 30px;
  position: relative;
}
#InnerParentServices .bg-shadow-gradient .Inner-Child-Title {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 2.188rem;
  line-height: 2.5rem;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  margin-bottom: 1.25rem;
}
#InnerParentServices .bg-shadow-gradient .Inner-child-content {
  margin-bottom: 2.125rem;
  font-family: var(--theme-text-font);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.688rem;
  color: var(--theme-color-xdark);
}
#InnerParentServices .bg-shadow-gradient .service-outer-card {
  background: #ffffff;
  border: 0.946379px solid var(--theme-color-x-light-grey);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  height: 100%;
}
#InnerParentServices .bg-shadow-gradient .service-outer-card:hover {
  box-shadow: 0px 8px 30px rgba(134, 134, 134, 0.15);
}
#InnerParentServices .bg-shadow-gradient .service-outer-card:hover .service-card-title {
  color: var(--theme-color);
}
#InnerParentServices .bg-shadow-gradient .service-outer-card:hover .service-card-link a {
  border-bottom: 1px solid var(--theme-color-alt);
}
#InnerParentServices .bg-shadow-gradient .service-outer-card:hover .service-card-img::before {
  right: 0;
  bottom: 0;
}
#InnerParentServices .bg-shadow-gradient::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  left: 0;
  top: 0;
  background: var(--theme-color-alt);
  filter: blur(149.865px);
  border-radius: 50%;
  z-index: -1;
}
#InnerParentServices .bg-shadow-gradient::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: 0px;
  bottom: 0px;
  background: var(--theme-color);
  filter: blur(150.621px);
  z-index: -1;
  border-radius: 50%;
}
#InnerParentServices .bg-shadow-gradient .service-card-img {
  margin-bottom: 1.375rem;
  width: 75px;
  height: 75px;
  border: 1px solid var(--theme-color-x-light-grey);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1/1;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
#InnerParentServices .bg-shadow-gradient .service-card-img::before {
  content: "";
  background: linear-gradient(310.17deg, #ffe4fb 15.96%, #ffe8d2 83.29%);
  position: absolute;
  left: 0px;
  right: 4px;
  top: 0px;
  bottom: 4px;
  border-radius: 50%;
  z-index: 1;
  transition: 1s all ease;
}
#InnerParentServices .bg-shadow-gradient .service-card-img img {
  z-index: 1;
  height: 40px;
  width: 40px;
  aspect-ratio: 1/1;
}
#InnerParentServices .bg-shadow-gradient .service-card-text {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688;
  color: var(--theme-color-xdark);
}
#InnerParentServices .bg-shadow-gradient .service-card-text p {
  margin-bottom: 0 !important;
}
#InnerParentServices .bg-shadow-gradient .service-card-title {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-align: center;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 1rem;
}
#InnerParentServices .bg-shadow-gradient .service-card-link {
  margin-top: 2rem;
}
#InnerParentServices .bg-shadow-gradient .service-card-link a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/********************ChildServices*********************************/
#InnerBannerChild.banner-gradient-corners {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
  overflow: hidden;
}
#InnerBannerChild.banner-gradient-corners .Inner-banner-curve-img img {
  position: absolute;
  bottom: 0;
  width: 100%;
}
#InnerBannerChild.banner-gradient-corners .banner-background-color {
  position: absolute;
  width: 100%;
  height: 460px;
  left: 0px;
  top: 0;
  background: linear-gradient(180deg, #ffe4fb 0%, rgba(255, 228, 251, 0) 100%);
  bottom: 0;
  right: 0;
  transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -1;
}
#InnerBannerChild.banner-gradient-corners::before {
  content: "";
  background: var(--theme-color);
  filter: blur(113.273px);
  transform: rotate(49.24deg);
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  left: -200px;
  bottom: -200px;
}
#InnerBannerChild.banner-gradient-corners::after {
  content: "";
  background: var(--theme-color-alt-dark);
  filter: blur(113.273px);
  transform: rotate(49.24deg);
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  right: -200px;
  bottom: -200px;
  z-index: -1;
}
#InnerBannerChild .grain-effect {
  mix-blend-mode: overlay;
}
#InnerBannerChild .child-content-position {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#InnerBannerChild .child-content-position .child-banner-content {
  margin-bottom: 1.688rem;
}
#InnerBannerChild .child-content-position .child-banner-title {
  display: flex;
  justify-content: center;
}
#InnerBannerChild .child-content-position .child-banner-title h1 {
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 1rem;
}

/*********************Help********************************/
#Help.mt-6 {
  margin-top: 6.875rem;
}
#Help .help-title {
  font-family: var(--theme-heading-font);
  font-weight: 800;
  font-size: 2.188rem;
  line-height: 1.688rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 2.5rem;
}
#Help .points-flex-outer ul.points-flex {
  display: flex;
  flex-wrap: wrap;
}
#Help .points-flex-outer li {
  font-family: var(--theme-heading-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.688rem;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  margin-right: 1.563rem;
  display: flex;
  margin-bottom: 1rem;
}
#Help .points-flex-outer li::before {
  content: "";
  background: url(https://projectsconsole.com/mwh/assistppc/wp-content/uploads/2023/02/check-circle.svg) no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
  padding-right: 35px;
  margin-top: 3px;
}
#Help .consultation-image {
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
}
#Help .consultation-image .consultation-position {
  position: absolute;
  padding-left: 3.125rem;
}
#Help .book-title {
  font-family: var(--theme-heading-font);
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.688rem;
  text-transform: capitalize;
  color: var(--theme-color-light-x);
  text-shadow: 0px 4.35883px 11.9868px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.375rem;
}
#Help .book-free {
  font-family: var(--theme-heading-font);
  font-weight: 900;
  font-size: 5.188rem;
  line-height: 4.438rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 0.375rem;
  -webkit-text-stroke: 2px var(--theme-color-light-x);
  font-family: sans-serif;
}
#Help .book-consultation {
  font-family: var(--theme-heading-font);
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.688rem;
  text-transform: capitalize;
  color: var(--theme-color-light-x);
  margin-bottom: 2.375rem;
}
#Help .book_button {
  margin-top: 3.5rem;
}
#Help ul.work-list {
  list-style-type: none;
  padding-left: 8.438rem;
}
#Help ul.work-list li {
  font-family: var(--theme-text-font);
  padding: 15px 30px;
  font-weight: 600;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 1.25rem;
  line-height: 1.938rem;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  margin-bottom: 1.563rem;
  position: relative;
}
#Help ul.work-list li:nth-child(odd) {
  background: #ffe4fb;
  border-radius: 0px 16.7546px 16.7546px 16.7546px;
}
#Help ul.work-list li:nth-child(odd)::before {
  content: "";
  background: var(--theme-color);
  border-radius: 1.67546px;
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
  position: absolute;
  left: -75px;
  top: -10px;
}
#Help ul.work-list li:nth-child(odd)::after {
  content: "";
  background: url(https://projectsconsole.com/mwh/assistppc/wp-content/uploads/2023/03/line-single-img.svg) no-repeat;
  width: 4px;
  left: -67px;
  position: absolute;
  height: 50px;
}
#Help ul.work-list li:nth-child(even) {
  background: #ffe8d2;
  border-radius: 0px 16.7546px 16.7546px 16.7546px;
}
#Help ul.work-list li:nth-child(even)::before {
  content: "";
  background: var(--theme-color-alt);
  border-radius: 1.67546px;
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
  position: absolute;
  left: -75px;
  top: -10px;
}
#Help ul.work-list li:nth-child(even)::after {
  content: "";
  background: url(https://projectsconsole.com/mwh/assistppc/wp-content/uploads/2023/03/line-single-img.svg) no-repeat;
  width: 4px;
  left: -67px;
  position: absolute;
  height: 50px;
}
#Help .work-title {
  font-family: var(--theme-heading-font);
  font-weight: 800;
  font-size: 2.188rem;
  line-height: 1.688rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 2.5rem;
  position: relative;
}
#Help .work-title::after {
  content: "";
  background: var(--theme-color-alt);
  border-radius: 1.67546px;
  transform: rotate(45deg);
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  margin-left: 2.188rem;
}
#Help .line-img-position {
  position: relative;
  margin-top: -35px;
  right: -70px;
  margin-bottom: 1rem;
  max-width: -moz-max-content;
  max-width: max-content;
}
#Help .InnerPricing {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--theme-color-alt-light);
  border-radius: 45px;
  width: 378px;
  height: 362px;
  margin-top: 3.125rem;
}
#Help .InnerPricing .bg-pricing {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='45' ry='45' stroke='%23B51D80FF' stroke-width='1' stroke-dasharray='6%2c 6' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  border-radius: 45px;
  width: 360px;
  height: 345px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#Help .InnerPricing .bg-pricing .pricing-inner-heading {
  font-family: var(--theme-heading-font);
  font-weight: Bold;
  font-size: 1.25rem;
  line-height: 1.678rem;
  color: var(--theme-color);
}
#Help .InnerPricing .bg-pricing .pricing-quantity {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  background: linear-gradient(89.87deg, #ff7c30 0.08%, #b51d80 97.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 6.2rem;
}
#Help .InnerPricing .bg-pricing .pricing-time {
  font-family: var(--theme-heading-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.688rem;
  text-transform: uppercase;
  color: var(--theme-color-dark);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 28.38%, #ffffff 72.75%, rgba(255, 255, 255, 0) 99.06%);
  width: 335px;
  height: 36px;
  line-height: 36px;
  margin-bottom: 1.75rem;
}
#Help .outer-bg-card {
  background: #ffffff;
  box-shadow: 0px 23px 30px rgba(184, 182, 181, 0.15);
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0.938rem;
}
#Help .help-title {
  font-family: var(--theme-heading-font);
  font-style: normal;
  font-weight: 800;
  font-size: 2.188rem;
  line-height: 1.688rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 2.5rem;
}
#Help .bg-card-text {
  font-family: var(--theme-text-font);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.7rem;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  margin-top: 1.25rem;
}
#Help .contact-form-outer {
  border: 1px solid #d9d9d9;
  border-radius: 30px;
  padding: 2.5rem;
  margin-top: 3.125rem;
}
#Help .contact-heading {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.688rem;
  text-transform: uppercase;
  background: linear-gradient(89.87deg, #ff7c30 0.08%, #b51d80 97.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 2.188rem;
}
#Help .form-group {
  margin-bottom: 1.125rem;
}
#Help .form-group input {
  border: 1px solid var(--theme-color-x-light-grey);
  border-radius: 1.875rem;
  height: 2.938rem;
  padding-left: 1.25rem;
  width: 100%;
  outline: none;
}
#Help .form-group textarea {
  height: 12.688rem;
  border: 1px solid var(--theme-color-x-light-grey);
  border-radius: 1.875rem;
  resize: none;
  padding-left: 1.25rem;
  padding-top: 0.938rem;
  width: 100%;
  outline: none;
}
#Help .contact-button {
  margin-top: 2.063rem;
}
#Help .contact-button input[type=submit] {
  font-family: var(--theme-heading-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--theme-color-alt);
  border-radius: 30px;
  text-decoration: none;
  padding: 8px 25px;
}
#Help .contact-button input[type=submit]:hover {
  background: var(--theme-color-alt-dark);
  color: var(--theme-color-dark);
}
#Help .form-control:focus {
  box-shadow: none !important;
}
#Help ::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--theme-color-x-light-grey);
}
#Help ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--theme-color-x-light-grey);
}
#Help .work_section_left {
  margin-top: 5rem;
}
#Help .assist_left {
  margin-top: 6.875rem;
}

#Help ul.work-list li:last-child::after {
  display: none;
}

/*********************Faq***********************************/
#Faq.my-6 {
  margin-top: 6.875rem;
  margin-bottom: 5.5rem;
}
#Faq .faq-title {
  font-family: var(--theme-heading-font);
  font-weight: 800;
  font-size: 2.188rem;
  line-height: 1.688rem;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  margin-bottom: 1.5rem;
}
#Faq .accordion-item {
  background-color: transparent !important;
  border-top: 0px !important;
  border-left: 0px !important;
  border-right: 0px !important;
  border-bottom: 1.5px solid var(--theme-color-x-light-grey) !important;
}
#Faq .accordion-item.active {
  border-bottom: 1.5px solid var(--theme-color-alt) !important;
}
#Faq .accordion-item.active .accordion-button:not(.collapsed)::before {
  color: var(--theme-color-alt) !important;
}
#Faq .accordion-button {
  background-color: transparent !important;
  border: 0px !important;
  box-shadow: none !important;
  font-family: var(--theme-text-font);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2.063rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
}
#Faq .accordion-body {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  padding-left: 4.25rem;
  padding-top: 0;
}
#Faq .accordion-item:last-of-type {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
#Faq .accordion-button:not(.collapsed)::before {
  content: "−";
  font-weight: bold;
  margin-right: 34px;
  font-family: var(--theme-text-font);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 2.063rem;
  color: var(--theme-color-xdark);
}
#Faq .accordion-button::after {
  display: none !important;
}
#Faq button.accordion-button::before {
  content: "+";
  font-weight: bold;
  margin-right: 34px;
  font-family: var(--theme-text-font);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 2.063rem;
  color: var(--theme-color-xdark);
}

/************************OtherServices**********************************/
#OtherServices .related-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.125rem;
}
#OtherServices .related-flex .Services-title h2 {
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#OtherServices .related-flex .related-button a {
  font-family: var(--theme-heading-font);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  color: var(--theme-color-alt);
  border-bottom: 1px solid transparent;
  text-decoration: none;
}
#OtherServices .related-flex .related-button a:hover {
  border-bottom: 1px solid var(--theme-color-alt);
}
#OtherServices .service-outer-card {
  background: #ffffff;
  border: 0.946379px solid var(--theme-color-x-light-grey);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  height: 100%;
}
#OtherServices .service-outer-card:hover {
  box-shadow: 0px 8px 30px rgba(134, 134, 134, 0.15);
}
#OtherServices .service-outer-card:hover .service-card-title {
  color: var(--theme-color);
}
#OtherServices .service-outer-card:hover .service-card-link a {
  border-bottom: 1px solid var(--theme-color-alt);
}
#OtherServices .service-outer-card:hover .service-card-img::before {
  right: 0;
  bottom: 0;
}
#OtherServices .service-outer-card .service-card-img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.375rem;
  width: 75px;
  height: 75px;
  border: 1px solid var(--theme-color-x-light-grey);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1/1;
  position: relative;
}
#OtherServices .service-outer-card .service-card-img::before {
  content: "";
  background: linear-gradient(310.17deg, #ffe4fb 15.96%, #ffe8d2 83.29%);
  position: absolute;
  left: 0px;
  right: 4px;
  top: 0px;
  bottom: 4px;
  border-radius: 50%;
  transition: 1s all ease;
}
#OtherServices .service-outer-card .service-card-img img {
  z-index: 1;
  height: 40px;
  width: 40px;
}
#OtherServices .service-outer-card .service-card-text {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688rem;
  color: var(--theme-color-xdark);
}
#OtherServices .service-outer-card .service-card-title {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-align: center;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 1rem;
}
#OtherServices .service-outer-card .service-card-link {
  margin-top: 2rem;
}
#OtherServices .service-outer-card .service-card-link a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/**********************Contact*********************/
#Contact.mt-6 {
  margin-top: 6.875rem;
}
#Contact .left-side-text {
  margin-bottom: 2rem;
}
#Contact .form-group {
  margin-bottom: 1.125rem;
}
#Contact .form-group input {
  border: 1px solid var(--theme-color-x-light-grey);
  border-radius: 1.875rem;
  height: 2.938rem;
  padding-left: 1.25rem;
  width: 100%;
  outline: none;
}
#Contact .form-group textarea {
  height: 12.688rem;
  border: 1px solid var(--theme-color-x-light-grey);
  border-radius: 1.875rem;
  resize: none;
  padding-left: 1.25rem;
  padding-top: 0.938rem;
  width: 100%;
  outline: none;
}
#Contact .contact-button {
  margin-top: 1.563rem;
}
#Contact .contact-button input[type=submit] {
  font-family: var(--theme-heading-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--theme-color-alt);
  border-radius: 30px;
  text-decoration: none;
  padding: 8px 25px;
}
#Contact .contact-button input[type=submit]:hover {
  background: var(--theme-color-alt-dark);
  color: var(--theme-color-dark);
}
#Contact .form-control:focus {
  box-shadow: none !important;
}
#Contact ::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--theme-color-x-light-grey);
}
#Contact ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--theme-color-x-light-grey);
}
#Contact .single-line {
  display: flex;
  gap: 1rem;
}
#Contact .location-icon {
  color: var(--theme-color-alt);
}
#Contact .phone-icon {
  color: var(--theme-color-alt);
}
#Contact .contact-heading h2 {
  background: linear-gradient(89.87deg, #ff7c30 0.08%, #b51d80 97.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 2.8rem;
  line-height: 1 !important;
}
#Contact .landmark {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
}
#Contact .phone-number a {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  text-decoration: none;
}

/*******************InnerProducts**************************/
#InnerProducts.mt-6 {
  margin-top: 6.875rem;
}
#InnerProducts .cutom-padding {
  padding-left: 100px;
  padding-right: 100px;
}
#InnerProducts .Products-title {
  display: flex;
  justify-content: center;
}
#InnerProducts .Products-title h2 {
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 3.125rem;
}
#InnerProducts .product-card {
  background: linear-gradient(0.81deg, #ffe4fb 0.72%, #ffe8d2 99.33%);
  border-radius: 45px;
  width: 470.76px;
  height: 420.77px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 45px;
  position: relative;
}
#InnerProducts .product-card .light-button a.button-outline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#InnerProducts .product-card .product-top-img img {
  max-width: 80%;
}
#InnerProducts .product-card .product-title {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 1.2rem;
}
#InnerProducts .product-card .product-text {
  font-family: var(--theme-text-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.688rem;
  text-align: center;
  color: var(--theme-color-xdark);
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  padding: 0 1.875rem;
}

/********************ParentProductsServices***************************/
#ParentProductsServices.mt-6 {
  margin-top: 6.875rem;
}
#ParentProductsServices .top-title {
  margin-bottom: 2.125rem;
  font-family: var(--theme-text-font);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.688rem;
  color: var(--theme-color-xdark);
}
#ParentProductsServices .card {
  border-radius: 45px;
  padding: 35px 20px;
  background: linear-gradient(0.81deg, #ffe4fb 0.72%, #ffe8d2 99.33%);
  border: none;
}
#ParentProductsServices .card .card-img {
  width: 75px;
  height: 75px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#ParentProductsServices .card .card-img:before {
  content: "";
  background: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  bottom: 0;
  width: 75px;
  height: 75px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
#ParentProductsServices .card .card-img img {
  width: 40px;
  height: 40px;
  z-index: 1;
}
#ParentProductsServices .card .card-body h5.card-title {
  font-family: var(--theme-heading-font) !important;
  font-weight: 700 !important;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-align: center;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}
#ParentProductsServices .card .card-body .card-text {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688rem;
  text-align: center;
  color: var(--theme-color-xdark);
  margin-bottom: 1.625rem;
}

/*******************BuyProducts****************************/
#BuyProducts.my-6 {
  margin-top: 6.875rem;
  margin-bottom: 6.875rem;
}
#BuyProducts .outer-flex-custom {
  margin-bottom: 2rem;
}
#BuyProducts .outer-flex-custom .inner-custom-box:not(:last-child) {
  margin-bottom: 1.5rem;
}
#BuyProducts .outer-flex-custom .inner-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  max-width: 70%;
  width: 100%;
  box-shadow: 0px 23px 150px rgba(184, 182, 181, 0.15);
  position: relative;
}
#BuyProducts .outer-flex-custom .inner-item .inner-custom-img img {
  min-width: 2.5rem;
  min-height: 2.5rem;
}
#BuyProducts .outer-flex-custom .inner-item::after {
  content: "";
  border-top: 35px solid transparent;
  border-left: 30px solid #fff;
  border-bottom: 35px solid transparent;
  position: absolute;
  right: -25px;
}
#BuyProducts .product-inner-text {
  font-family: var(--theme-text-font);
  color: var(--theme-color-xdark);
  margin-bottom: 1.625rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688rem;
}
#BuyProducts .Gallery_Heading h2 {
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
}
#BuyProducts .right-col-bg {
  background: var(--theme-color-light);
  border-radius: 30px;
  padding: 10px;
}
#BuyProducts .right-col-bg .inner-dashed-border {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='30' ry='30' stroke='%23B51D80FF' stroke-width='1' stroke-dasharray='6%2c 6' stroke-dashoffset='0' stroke-linecap='round'/%3e%3c/svg%3e");
  border-radius: 30px;
  padding: 40px 30px 10px 30px;
}
#BuyProducts .right-col-bg .inner-dashed-border .side-bar-title {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.688rem;
  text-align: center;
  color: var(--theme-color);
}
#BuyProducts .right-col-bg .inner-dashed-border .side-bar-price {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.688rem;
  text-align: center;
  background: linear-gradient(89.87deg, #ff7c30 0.08%, #b51d80 97.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-top: 1.563rem;
  padding-bottom: 1.563rem;
}
#BuyProducts .right-col-bg .inner-dashed-border .side-bar-hours {
  font-family: var(--theme-heading-font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.688rem;
  color: var(--theme-color-dark);
  text-align: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 28.38%, #ffffff 72.75%, rgba(255, 255, 255, 0) 99.06%);
}
#BuyProducts .right-col-bg .inner-dashed-border .buy-button {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#BuyProducts .right-col-bg .inner-dashed-border .side-bar-text-heading {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.688rem;
  text-align: center;
  color: var(--theme-color);
  margin-bottom: 1.563rem;
}
#BuyProducts .right-col-bg .inner-dashed-border .points-child-products .product-points {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.313rem;
  color: var(--theme-color-xdark);
  display: flex;
  margin-bottom: 2rem;
}
#BuyProducts .right-col-bg .inner-dashed-border .points-child-products .product-points p {
  margin-bottom: 0;
}
#BuyProducts .right-col-bg .inner-dashed-border .points-child-products .product-points::before {
  content: "";
  background: url(../images/check-circle.svg) no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
  padding-right: 45px;
  margin-top: 3px;
}

/******************RelatedProducts************************/
#RelatedProducts .related-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.125rem;
}
#RelatedProducts .related-flex .related-title h2 {
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#RelatedProducts .related-flex .related-button a {
  font-family: var(--theme-heading-font);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  color: var(--theme-color-alt);
  border-bottom: 1px solid transparent;
  text-decoration: none;
}
#RelatedProducts .related-flex .related-button a:hover {
  border-bottom: 1px solid var(--theme-color-alt);
}
#RelatedProducts .card {
  border-radius: 45px;
  padding: 35px 20px;
  background: linear-gradient(0.81deg, #ffe4fb 0.72%, #ffe8d2 99.33%);
  border: none;
  height: 100%;
}
#RelatedProducts .card .card-img {
  width: 75px;
  height: 75px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#RelatedProducts .card .card-img::before {
  content: "";
  background: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  bottom: 0;
  width: 75px;
  height: 75px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
#RelatedProducts .card img.icon-img {
  width: 40px;
  height: 40px;
  z-index: 1;
}
#RelatedProducts .card .card-body h5.card-title {
  font-family: var(--theme-heading-font) !important;
  font-weight: 700 !important;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-align: center;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}
#RelatedProducts .card .card-body .card-text {
  font-family: var(--theme-text-font);
  text-align: center;
  color: var(--theme-color-xdark);
  margin-bottom: 1.625rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688rem;
}

/****************SolutionInner********************************/
#SolutionInner.mt-7 {
  margin-top: 6.875rem;
}
#SolutionInner .Blogs {
  cursor: pointer;
}
#SolutionInner .Blogs:not(:last-child) {
  border-bottom: 1px solid var(--theme-color-x-light-grey);
  padding-bottom: 30px;
  margin-bottom: 45px;
}
#SolutionInner .Solution-main-heading {
  display: flex;
  justify-content: center;
}
#SolutionInner .Solution-main-heading h2 {
  font-family: var(--theme-heading-font);
  background: linear-gradient(270deg, #b51d80 0%, #ff7c30 94.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 3.125rem;
}
#SolutionInner .left-side-solution-text {
  font-family: var(--theme-text-font);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.688rem;
  color: var(--theme-color-xdark);
}
#SolutionInner .right-side-solution-title {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-bottom: 0.356rem;
}
#SolutionInner .right-side-solution-text {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.688rem;
  color: var(--theme-color-xdark);
}

.community-blogs.mt-7 {
  margin-top: 6.875rem;
}

.community-blogs header.entry-header.alignwide h1.entry-title {
  font-family: var(--theme-heading-font) !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  line-height: 1.813rem !important;
  text-transform: capitalize !important;
  color: var(--theme-color-dark) !important;
  margin-bottom: 2.5rem;
}

.community-blogs .entry-content {
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  margin-bottom: 1.25rem;
}

div#comments h2.comments-title {
  font-family: var(--theme-heading-font) !important;
  font-style: normal;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  line-height: 1.813rem !important;
  text-transform: capitalize;
  color: var(--theme-color-alt);
  margin-bottom: 5rem;
  margin-top: 5rem;
  position: relative;
}
div#comments h2.comments-title::before {
  content: "";
  display: inline-block;
  background: var(--theme-color-alt);
  height: 2px;
  left: 0;
  width: 160px;
  border-radius: 1px;
  position: absolute;
  bottom: 0;
}
div#comments h2.comments-title::after {
  content: "";
  background: var(--theme-color-x-light-grey);
  position: absolute;
  height: 1px;
  width: 80%;
  margin-left: 30px;
  bottom: 0;
}

footer.comment-meta .comment-author.vcard img.avatar.avatar-60.photo {
  border-radius: 50%;
}

footer.comment-meta .comment-author.vcard a {
  font-family: var(--theme-heading-font);
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  text-decoration: none;
  padding-left: 1.125rem;
}

footer.comment-meta .comment-author.vcard span.says {
  display: none;
}

.comment-metadata time {
  display: none;
}

span.edit-link a.comment-edit-link {
  display: none;
}

ol.comment-list li::marker {
  font-size: 0;
}

.comment-content {
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  z-index: -1;
  margin-top: -0.625rem;
  margin-left: 2rem;
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688;
  text-transform: capitalize;
  color: var(--theme-color-xdark);
  padding: 30px 30px 30px 50px;
}
.comment-content p {
  margin-bottom: 0;
}

form#commentform textarea#comment {
  border: 1px solid #d9d9d9;
  border-radius: 0.938rem;
  resize: none;
  width: 100%;
  padding: 15px;
  outline: none;
}

form#commentform input[type=submit] {
  font-family: var(--theme-heading-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--theme-color-alt);
  border-radius: 30px;
  text-decoration: none;
  padding: 8px 25px;
}
form#commentform input[type=submit]:hover {
  background: var(--theme-color-alt-dark);
  color: var(--theme-color-dark);
}

div#respond h2#reply-title {
  font-family: var(--theme-heading-font) !important;
  font-style: normal;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  line-height: 1.813rem !important;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  margin-top: 4rem;
}

label[for=comment] {
  margin-bottom: 2rem;
}

.reply a.comment-reply-link {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.688rem;
  text-transform: capitalize;
  color: var(--theme-color-xgrey);
  text-decoration: none;
}

.reply {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

form#commentform p.form-submit {
  text-align: right;
  margin-top: 1.875rem;
}

footer.entry-footer.default-max-width {
  display: none;
}

form#commentform p.logged-in-as a {
  color: var(--theme-color-alt);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--theme-heading-font);
}

nav.navigation.post-navigation .nav-links .nav-next a {
  text-decoration: none;
}
nav.navigation.post-navigation .nav-links .nav-next a p.meta-nav {
  color: var(--theme-color-alt);
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688rem;
  text-decoration: none;
}
nav.navigation.post-navigation .nav-links .nav-next a p.post-title {
  display: none;
}

div#respond form#commentform :is([type=text], [type=email], [type=url]) {
  border: 1px solid var(--theme-color-x-light-grey);
  border-radius: 1.875rem;
  height: 2.938rem;
  padding-left: 1.25rem;
  outline: none;
  margin-right: 1rem;
}
div#respond form#commentform :is([type=text], [type=email], [type=url]):focus label {
  display: none;
}

.main-community.mt-7 {
  margin-top: 6.875rem;
}
.main-community header.entry-header h2.entry-title a {
  text-decoration: none;
  font-family: var(--theme-heading-font);
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.813rem;
  text-transform: capitalize;
  color: var(--theme-color-dark);
}

nav.navigation.post-navigation .nav-links .nav-previous a {
  text-decoration: none;
}
nav.navigation.post-navigation .nav-links .nav-previous a p.meta-nav {
  color: var(--theme-color-alt);
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688rem;
  text-decoration: none;
}
nav.navigation.post-navigation .nav-links .nav-previous a p.post-title {
  display: none;
}

div#comments ol.comment-list ol.children {
  border-left: 1px solid var(--theme-color-x-light-grey);
  border-radius: 1rem;
}

form#commentform :is(p.comment-form-author, p.comment-form-email, p.comment-form-url) {
  display: inline-block;
  position: relative;
}
form#commentform :is(p.comment-form-author, p.comment-form-email, p.comment-form-url) label {
  padding-left: 20px;
  padding-top: 10px;
  position: absolute;
}

body.blog.is-light-theme.hfeed.has-main-navigation.customize-support .post.type-post.status-publish.format-standard.hentry.category-uncategorized.entry:not(:last-child) {
  border-bottom: 1px solid var(--theme-color-x-light-grey);
  padding-bottom: 30px;
  margin-bottom: 45px;
}

.single.single-post a#cancel-comment-reply-link {
  color: var(--theme-color-alt);
  text-decoration: none;
  font-size: 1rem;
  padding-left: 1rem;
  font-weight: 500;
  font-family: var(--theme-heading-font);
}

nav.navigation.pagination {
  display: flex;
  justify-content: center;
}

body.has-main-navigation nav.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}
body.has-main-navigation nav.navigation.pagination .nav-links a.prev.page-numbers {
  color: var(--theme-color-alt);
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688rem;
  text-decoration: none;
}
body.has-main-navigation nav.navigation.pagination .nav-links a.page-numbers {
  color: var(--theme-color-alt);
  font-family: var(--theme-text-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.688rem;
  text-decoration: none;
}

body.post-template-default.has-main-navigation nav.navigation.post-navigation .nav-links {
  display: flex;
  justify-content: space-evenly;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper.mySwiper {
  height: auto;
}

.swiper-pagination-bullets {
  display: none;
}

div#respond {
  background: var(--theme-color-alt-light);
  padding: 2rem;
  border-radius: 0.938rem;
  margin-bottom: 1rem;
}

.cf7mls-btns .cf7mls_next.action-button, .cf7mls-btns .cf7mls_back.action-button {
  text-decoration: none;
  font-family: var(--theme-heading-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  background: var(--theme-color-alt);
  border-radius: 30px;
  display: inline-block;
  margin: auto;
  padding: 10px 25px;
}

body.modal-open .modal-content {
  background: var(--theme-color-alt-light);
  border-radius: 45px;
  padding: 15px;
}

body.modal-open div#contactModal h3 {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.678rem;
  text-transform: uppercase;
  background: linear-gradient(89.87deg, #ff7c30 0.08%, #b51d80 97.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-open .modal-dialog input[name=yourname] {
  border: none;
  border-radius: 1.875rem;
  height: 2.938rem;
  padding-left: 1.25rem;
  width: 100%;
  outline: none;
}

.modal-open .modal-dialog input[name=your-email] {
  border: none;
  border-radius: 1.875rem;
  height: 2.938rem;
  padding-left: 1.25rem;
  width: 100%;
  outline: none;
}

body.modal-open .modal-dialog button#cf7mls-back-btn-cf7mls_step-6 {
  text-decoration: none;
  font-family: var(--theme-heading-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  background: var(--theme-color-alt);
  border-radius: 30px;
  display: inline-block;
  margin: auto;
  padding: 10px 25px;
}

body.modal-open .modal-dialog input.wpcf7-form-control.has-spinner.wpcf7-submit {
  text-decoration: none;
  font-family: var(--theme-heading-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  background: var(--theme-color-alt);
  border-radius: 30px;
  display: inline-block;
  margin: auto;
  padding: 10px 25px;
  border: 0px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

body.modal-open .modal-dialog button#cf7mls-back-btn-cf7mls_step-6 {
  text-decoration: none;
  font-family: var(--theme-heading-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
  text-transform: capitalize;
  color: var(--theme-color-dark);
  background: var(--theme-color-alt);
  border-radius: 30px;
  display: inline-block;
  margin: auto;
  padding: 10px 25px;
}

body.modal-open .modal-dialog button#cf7mls-back-btn-cf7mls_step-6:hover {
  opacity: unset;
}

body.modal-open .modal-dialog input.wpcf7-form-control.has-spinner.wpcf7-submit:hover {
  opacity: unset;
}

body.modal-open .modal-dialog textarea.wpcf7-form-control.wpcf7-textarea {
  outline: none;
  border-radius: 1.875rem;
  padding: 15px;
  border: 0px;
}

section.not-found-page.pt-110 {
  padding-top: 2rem;
}
section.not-found-page.pt-110 h2.text-ca {
  background: linear-gradient(89.87deg, #ff7c30 0.08%, #b51d80 97.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 2.8rem;
}/*# sourceMappingURL=style.css.map */