/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}



:root {
  --white: #fff;
  --black: #000;
  --primary: #203D41;
  --secondary: #FAF3FD;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: 'Satoshi', sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
  margin: 0 2.188rem;
  border-radius: 1rem;
  overflow: hidden;
}

p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1E1E1E;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

.mainHead {
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1.2;
}

.subHead {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 1.125rem;
  color: var(--white);
  font-weight: bold;
  display: inline-block;
  padding: 0.688rem 1.563rem;
  line-height: normal;
  border-radius: 45px;
}

.themeBtn:hover {
  color: #fff;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid var(--primary);
  padding: 0.688rem 1.563rem;
  color: var(--primary);
}

/* NAV HEADER CSS */

header {
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 1.875rem;
  padding: 0.8rem 0;
  margin-right: 1.25rem;
}
.navbar-brand img {
  width: 140px;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: #1E1E1E;
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
  transform: scale(1.05);
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 100vh;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 4.375rem;
  line-height: 1.2;
  font-weight: bold;
  text-transform: capitalize;
  text-align: left;
}

.main-slider p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  margin: 20px 0 42px;
  font-size: 1.25rem;
}

/* !MAIN HERO SLIDER CSS */

/* Drop-Down Css Start */

.navbar .nav-item.drop-down {
  position: relative;
  z-index: 1;
}

.quicklist li a:hover {
  color: var(--white);
}

.navbar .drop-down>a:after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  padding-left: 0.625rem;
  color: var(--primary);
}

.navbar .drop-down ul {
  display: block;
  position: absolute;
  left: 0.875rem;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  transition: 0.3s;
}

.navbar .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .drop-down li {
  min-width: 200px;
  position: relative;
  list-style: none;
}

.navbar .drop-down ul a {
  padding: 6px 1.0625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: none;
  color: #151515;
  display: block;
  text-transform: uppercase;
}

.navbar .drop-down ul a:hover {
  background: var(--primary);
  color: var(--white);
}

/* Drop-Down Css End  */

/* Header Section */

/* header top */
.header_top {
  background-color: var(--primary);
  padding: 0.75rem 0;
}

.header_top ul {
  display: flex;
  align-items: center;
  gap: 2.9375rem;
}

header .form-inline {
  gap: 12px;
}

header .form-inline .user {
  background-color: #F0D7F8;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--black);
  font-size: 20px;
}

.header_top ul li a {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header_top ul li {
  position: relative;
}

.header_top ul .border_r::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1.25rem;
  background-color: #DDDDDD;
  right: -1.5rem;
  top: 0px;
}


/* Banner section */
.slideOne {
  text-align: center;
}

.slideOne h4 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
}

.themeBtn i {
  margin-left: 1rem;
}

/* ABout section */

.about_content {
  padding-left: 2rem;
}

.about_bg1 {
  background-color: #FAF3FD;
  padding: 2.375rem 5rem;
  border-radius: 20px;
}

.about_img1 {
  position: absolute;
  top: 8%;
  left: 15%;
}

.about_img2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.about_bg1 img {
  z-index: 11;
  position: relative;
}

.about_content .mainHead {
  margin-bottom: 1rem;
  width: 90%;
}

.about_content p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  position: relative;
  z-index: 11;
  width: 95%;
}

/* Our services */
.services {
  background-color: var(--secondary);
}

.services .col-md-6:nth-child(1),
.services .col-md-6:nth-child(2) {
  margin-bottom: 2.3125rem;
}

.services .col-md-6:nth-child(3) .comprehensive,
.services .col-md-6:nth-child(4) .comprehensive {
  gap: 0;
}

.services .col-md-6:nth-child(3) .comprehensive p,
.services .col-md-6:nth-child(4) .comprehensive p {
  width: 90%;
}

.service_head {
  text-align: center;
}

.service_head .mainHead {
  margin: 0.625rem 0 3.75rem;
}

.comprehensive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.0625rem;
  border: 1px solid #B5B5B5;
  border-radius: 20px;
}

.comprehensive figure img {
  border-radius: 20px;
  flex-shrink: 0;
}

.care {
  margin: 3.1875rem 0 3.1875rem 3.1875rem;
}

.care a {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  color: #203D41;
  font-size: 1.125rem;
  font-weight: bold;
}

.care a span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 20px;
  background-color: #203D41;
  display: grid;
  place-items: center;
  color: #fff;
}

.care h5 {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.care h4 {
  font-size: 1.375rem;
  font-weight: bold;
  text-transform: capitalize;
  margin: 2rem 0 0.8125rem;
}

.care h4 span {
  display: block;
  font-weight: 400;
  font-size: 1.125rem;
}

.care p {
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

/* Choose Us */
.choose .img_2 {
  position: absolute;
  right: 5%;
  top: 12%;
}

.choose .img_1 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.choose_head {
  text-align: center;
}

.choose_head h2 {
  margin: 0.625rem 0 3.75rem;
}

.flower {
  display: flex;
  align-items: center;
  gap: 1.375rem;
  padding: 2.0625rem 2.0625rem 2.1875rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.30);
  background-color: var(--white);
  z-index: 11;
  position: relative;
}

.flower figure {
  width: 5rem;
  height: 5rem;
  border-radius: 40px;
  border: 1px solid #000;
  display: grid;
  place-items: center;
  background-color: #FAF3FD;
  flex-shrink: 0;
}

.flower h4 {
  color: var(--black);
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
}

.flower p {
  font-size: 0.875rem;
}

.choose .row {
  margin-bottom: 2.25rem;
}

/* Video  section */
.video {
  padding: 0rem 10rem 6rem;
}

.video_about,
.video_img {
  position: relative;
}

.play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 2rem;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  z-index: 2;
}

.play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 204, 255, 0.6);
  color: var(--white);
}

/* Booking section */
.booking {
  background-color: var(--primary);
  margin-bottom: -1rem;
  z-index: 1;
}

.booking h1 {
  font-size: 5.9375rem;
  margin-bottom: 4.0625rem;
  text-align: center;
  color: #fff;
}

.booking h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.875rem;
  color: var(--white);
}

.booking_form .themeBtn {
  border: unset;
  outline: unset;
  background-color: #fff;
  color: var(--black);
  padding: 0.688rem 3rem;
}

.booking_form {
  display: flex;
  align-items: center;
  gap: 1.3125rem;
}

.booking_form input {
  padding: 0.875rem 1.0625rem;
  border: 1px solid #fff;
  border-radius: 45px;
  background-color: unset;
  outline: unset;
  color: #fff;
}

.booking_form input::placeholder {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.booking_form input:nth-child(1),
.booking_form input:nth-child(2) {
  width: 320px;
}

/* Testimonial section */

.testimonial {
  padding: 7.5rem 0 6rem;
  background-color: #FAF3FD;
  border-radius: 0 0 20px 20px;
  margin-top: 0rem;
}

.tesi_head {
  text-align: center;
}

.tesi_head h2 {
  margin: 0.625rem 0 3.75rem;
}

.testi_card {
  text-align: center;
  padding: 2.125rem 1.3125rem;
  border: 1px solid var(--primary);
  border-radius: 15px;
}

.testi_card h4 {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary);
  color: #fff;
  font-size: 1.5625rem;
  font-weight: bold;
  border-radius: 40px;
  margin: auto;
  display: grid;
  place-content: center;
}

.testi_card p {
  margin: 1.5rem 0 0.9375rem;
  font-size: 1rem;
  font-weight: 400;
}

.testi_card h3 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: bold;
}

.testiSlide {
  padding-bottom: 3rem;
}

.testiSlide .swiper-pagination-bullet {
  background-color: #203D41 !important;
}

.testiSlide .swiper-pagination-bullet-active {
  background-color: unset;
  border: 1px solid var(--primary);
}

/* Blog section */

.blog_head h2 {
  margin: 0.625rem 0 3.75rem;
}

.guidance {
  height: 490px;
  padding: 1.5625rem;
  border-radius: 17px;
  background-color: #F0D7F8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.guidance .themeBtn {
  background-color: #fff;
  color: #000;
  padding: 0.688rem 3rem;
}

.blog_card figure img {
  border-radius: 17px;
}

.blog_card h5 {
  color: #1E1E1E;
  font-size: 1.0625rem;
  font-weight: 500;
  margin: 1.25rem 0;
}

.blog_card h3 {
  font-size: 2.125rem;
  font-weight: bold;
  color: #000;
}

.guidance h3 {
  color: #13182F;
  font-size: 2.125rem;
  font-weight: bold;
}

/* footer section */
footer {
  padding-top: 2.5rem;
  margin: 0px 2.1875rem 0.625rem;
  background-color: #203D41;
  border-radius: 20px;
}

footer h3 {
  color: var(--white);
  margin: 1.5625rem 0 3.125rem;
  font-size: 1.125rem;
  font-weight: bold;
}

.logo_box p {
  color: #929B9F;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  width: 62%;
  font-family: "Inter", sans-serif;
}

.quicklist li+li {
  margin-top: 0.8125rem;
}

.quicklist li a {
  color: #E2E2E2;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.quicklist li a:hover {
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer_mid {
  border: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 50px;
  padding: 1.3125rem 3.1875rem;
  margin-top: 3.125rem;
}

.contact a {
  color: var(--white);
  font-weight: 500;
  font-size: 1.125rem;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.contact a span {
  color: #929B9F;
  font-size: 0.8125rem;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.contact a:hover {
  transform: translateX(4px);
}

.contact a:hover span {
  color: #ffffff;
}

.copyRight {
  padding: 2.1875rem 0;
}

.copyRight p {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #BABABA;
}

/* Inner pages */

/* inner banner */

.inner_banner figure {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.inner_banner figure h1 {
  font-size: 4.375rem;
  font-weight: bold;
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 84px;
}

.inner_banner {
  padding: 0;
}


/* Inner ABout section */
.about_video {
  background-color: #f9f3fd;
}

.inner_about_head {
  text-align: center;
  margin-bottom: 3.625rem;
}

.inner_about_head h2 {
  margin: 0.625rem auto 1.5625rem;
  font-size: 3.125rem;
  width: 66%;
}

.inner_about_head p {
  width: 77%;
  margin: auto;
}

.video_about {
  margin-bottom: 4.375rem;
}


.about_video .accordion .btn {
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.about_video .accordion .card .card-header {
  border: unset;
  background: #f6e5fd;
  padding: 1.625rem 2.625rem 1.5rem;
  border-radius: 16px;
}

.about_video .accordion .card .card-header .btn h3 {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 45px;
}

.about_video .accordion .card .card-header .btn a {
  color: #000;
  font-size: 1.5625rem;
  font-weight: bold;
}

.about_video .accordion .card {
  border: unset;
  margin-bottom: 1.75rem;
  background: #f6e5fd;
  border-radius: 16px;
}

.about_video .accordion .card .card-body {
  padding: 0 4.375rem 2.625rem 2.6875rem;
}

.about_video .accordion .card .card-body p {
  font-weight: 400;
  margin-bottom: 1.5625rem;
}

.about_video .accordion .card .card-header .fa-chevron-up {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.about_video .accordion .card .card-header button[aria-expanded="true"] .fa-chevron-up {
  transform: rotate(180deg);
}


/* service Page */

.ser_page p {
  margin-top: 2.25rem;
  width: 90%;
  font-weight: 400;
}

.ser_page figure img {
  border-radius: 20px;
}

.ser_page .row .col-md-6:not(:last-child) {
  margin-bottom: 4.375rem;
}

/* Blogs Page */


.blog_page .col-md-4 {
  margin-bottom: 3.125rem;
}

.blog_card figure img {
  border-radius: 20px;
}

.blog_card h5 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0.9375rem 0 0.5rem;
  line-height: 28px;
  width: 92%;
}

.blog_card a {
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
}

.blog_card a i {
  transform: rotate(45deg);
}

/* Testimonials page */


.testi_page .col-md-4 {
  margin-bottom: 1.875rem;
}

/* supplements page */
.about_video.supplements {
  background-color: #FAF3FD;
  border-radius: 0;
  margin-top: -0.75rem;
  z-index: -1;
}

.about_video.supplements .inner_about_head {
  margin: 0 0 3.75rem;
  text-align: left;
}

.about_video.supplements .inner_about_head h2 {
  width: 100%;
}


.cntact-main {
  background: var(--primary);
  border-radius: 23px;
  padding: 2rem 1.6rem;
}

.cntct-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  padding-bottom: 2rem;
  position: relative;
  /* width: 100%; */
}

.cntct-info .d-flex {
  align-items: center;
  gap: 1rem;
}

.cntct-info .d-flex figure {
  width: 3.125rem;
  height: 3.125rem;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cntct-info .d-flex h4,
.loc-info .d-flex h4 {
  font-size: 1.25rem;
  color: #FAF3FD;
  font-weight: bold;
  margin: 0 0 0.4rem;
}

.cntct-info .d-flex a,
.loc-info .d-flex span {
  font-size: 1rem;
  color: #FAF3FD;
  font-weight: 400;
}

.cntct-info:before {
  content: '';
  position: absolute;
  left: 40%;
  /* right: 0; */
  margin: auto;
  background: rgb(255 255 255 / 10%);
  width: 1px;
  height: 100%;
  bottom: 0;
}

.loc-info .d-flex {
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.loc-info .d-flex figure {
  width: 3.125rem;
  height: 3.125rem;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-info {
  margin: 1.5rem 0 0;
}

.send-form {
  background: #FAF3FD;
  border-radius: 20px;
  padding: 3rem 3rem;
}

.send-form .mainHead {
  margin: 0 0 2rem;
}

.send-form form input {
  width: 100%;
  height: 3.75rem;
  border: 0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 400;
  padding: 0 1.3rem;
  margin: 0 0 1.5rem;
}

.send-form form input::placeholder,
.send-form form textarea::placeholder {
  color: #866559;
}

.send-form form textarea {
  width: 100%;
  height: 132px;
  border: 0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 400;
  padding: 1rem 1.3rem;
  margin: 0 0 3rem;
  resize: none;
}

.send-form form button.themeBtn {
  width: 100%;
  border-radius: 10px;
}

.contact-page .about_content p {
  color: #866559;
}

.contact_map {
  padding: 0 0 5rem;
}

.contact_map iframe {
  display: block;
  border-radius: 20px;
}

/* book an appointment */

.contact-page.appointment figure img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.send-form.appoit input::placeholder {
  color: #000;
}

.send-form.appoit label {
  color: #000;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}


.send-form.appoit select {
  width: 100%;
  height: 3.75rem;
  border: 0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 400;
  padding: 0 1.3rem;
  margin: 0 0 1.5rem;
  outline: unset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.send-form form .checkBox input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
}

.checkBox {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.checkBox p {
  font-size: 1rem;
  font-weight: 400;
}

.checkBox p a {
  font-size: 1rem;
  color: #000;
  border-bottom: 1px solid;
}

.send-form.appoit form textarea {
  margin: 0 0 1.5rem;
  height: 212px;
}

.send-form.appoit form input,
.send-form.appoit form textarea,
.send-form.appoit form select {
  border: 1px solid #C8D4E7;
}

.send-form.appoit form button.themeBtn {
  width: fit-content;
  padding: 0.688rem 3.563rem;
  border: 0;
}

.contact-page.appointment figure {
  height: 100%;
}


/* Wellness Programs page */

.services.programs {
  background-color: unset;
}

section.ser_page .themeBtn {
  display: block;
  width: 100%;
  text-align: center;
}

.care .themeBtn {
  color: #fff;
  font-family: 'Inter';
  display: unset;
}
.char {
    display: inline !important;
}