/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");


/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */
@font-face {
  font-family: 'accid-font';
  src: url('../fonts/accid___.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gobold';
  src: url('../fonts/Gobold\ Hollow.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* .custome-family {
  font-family: 'accid-font', sans-serif;
} */
:root {
  --white: #fff;
  --black: #313131;
  --primary: #60338b;
  --secondary: #f9f2ff;
}

html {

   scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  background: #f7f9f8;
  overflow-x: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #000;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

h1,
h2 {
  font-family: 'accid-font', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  margin: 0;
}

.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);
  /* text-transform: uppercase; */
  font-weight: 500;
  display: inline-block;
  padding: 0.8rem 2.4rem;
  line-height: normal;
  border-radius: 27px;

}

.themeBtn:hover {
  color: var(--white) !important;
  background: var(--primary) !important;

}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

.work-section .content .themeBtn:hover {
  background: var(--secondary);
  border-color: transparent;
}

/* NAV HEADER CSS */

/* NAV HEADER CSS */

.main-header {
  padding: 40px 60px;

  /* background: #fff; */
}

.mobile-menu {
  display: none !important;
}

.navbar {
  position: relative;
}

/* CENTER LOGO */
.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.navbar-brand img {
  height: 180px;
  position: relative;
  top: 13px;
}

/* LEFT MENU */
.left-menu {
  flex: 1;
  padding-left: 3rem;
}

/* RIGHT SIDE */
.right-area {
  display: flex;
  align-items: center;

}

.right-area .navbar-nav {
  gap: 2rem !important;
}

.navbar-nav {
  gap: 2.9rem;
  font-size: 17px;
}

.header-buttons {
  padding-left: 6rem;
}

.header-buttons .themeBtn:nth-child(1) {
  background: none;
  color: var(--black);
  border: 1px solid var(--primary)
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.1rem;
  color: var(--black);
  /* text-transform: capitalize; */
  font-weight: 600;
  padding: 0;
  display: inline-block;
  position: relative;
}

.navbar-nav .nav-link:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  transition: 0.2s ease;
}

.navbar-nav .nav-link:hover:before {
  width: 100%;

}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important
}

/* Active Tab Styling */
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  /* padding: 0; */

}

.navbar-nav .nav-item:has(.nav-link.active) {
  color: var(--primary);
  /* Bullet color changes */
}

.navbar-nav .nav-link.active::before {
  width: 100%;
}




/* MAIN HERO SLIDER CSS */

/* * MAIN HERO SLIDER CSS */
.mainSlider {
  height: 100vh;
  position: relative;
  z-index: 1;
  padding: 0;

}



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

.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;
  align-items: center;
}

.mainSlider .slideOne {
  padding: 5rem 2.6rem;
  background: linear-gradient(112deg, rgb(145 118 157 / 84%) 27%, rgb(253 253 253 / 8%) 70%);
}

.mainSlider h1 {
  margin: 0;
  color: var(--white);
 font-size: 5.1rem;
  line-height: 1;
  font-weight: 400;
}



.mainSlider span {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  margin: 0.625rem 0;
  font-size: 1.3625rem;
}

.mainSlider p {
  font-size: 2.2rem;
  color: var(--white);
}

.mainSlider .themeBtn {
  margin-top: 0.9rem;
}

/* new-slide-pagination-css */
.homeSlider .swiper-pagination {
  position: absolute;
  top: 41%;
  right: 75px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 38px;
  z-index: 10;
  width: fit-content;
  height: fit-content;
  left: 94% !important;
}

/* Bullet = Number */
.homeSlider .swiper-pagination-bullet {
  position: relative;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.5;
  right: -42px;
  cursor: pointer;
  transition: all 0.3s ease;


}

/* Active Number */
.homeSlider .swiper-pagination-bullet-active {
  color: var(--white);
  opacity: 1;
  font-weight: 600;
  transition: all 0.3s ease;
  right: 0 !important;
}


/* Horizontal line beside active number */
.homeSlider .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 125%;
  left: 18px;
  transform: translateY(-50%);
  width: 100px !important;
  height: 3px;
  background-color: var(--white);

}

.homeSlider .swiper-pagination-bullet-active .bullet-number {

  position: relative;
  top: -13px;
  left: 18px;

}

.homeSlider .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 125%;
  left: 18px;
  transform: translateY(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--white);


}

.arrow {
  animation: upDown 1.5s ease-in-out infinite;
  position: absolute;
  left: 0;
  right: 4%;
  margin: auto;
  bottom: 15%;
  text-align: center;
  width: fit-content;
  height: fit-content;
  z-index: 0;
}

.arrow i {
  height: 6.25rem;
  width: 4rem;
  display: grid;
  place-items: center;
  margin: auto;
  background-color: rgb(217 217 217 / 34%);
  border-radius: 30px;
  color: var(--white);
  font-size: 1.285rem;
  border: 2px solid var(--white);
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
    /* neeche */
  }

  100% {
    transform: translateY(0);
    /* wapas upar */
  }
}

/* end */





/* slide-social-icon */

.header_links {
  position: relative;
  z-index: 11;
  top: 31%;
  left: 1%;
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.header_links li:first-child {
  writing-mode: sideways-rl;
  color: var(--black);
  font-size: 17px;
  font-style: italic;
  margin: 0 14px 16px 12px;
}

ul.header_links li a {
  color: var(--black);
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
}

ul.header_links li a:hover {
  color: var(--white);
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  transition: all 0.3s ease;
}

ul.header_links li {
  line-height: 1;
  margin-bottom: 20px;
}

.arrow {
  animation: upDown 1.5s ease-in-out infinite;
  position: absolute;
  left: 0;
  right: -1%;
  margin: auto;
  bottom: 10%;
  text-align: center;
  width: fit-content;
  height: fit-content;
  z-index: 0;
}

.arrow i {
  height: 6.25rem;
  width: 4rem;
  display: grid;
  place-items: center;
  margin: auto;
  background-color: rgb(217 217 217 / 34%);
  border-radius: 30px;
  color: var(--white);
  font-size: 1.285rem;
  border: 2px solid var(--white);
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
    /* neeche */
  }

  100% {
    transform: translateY(0);
    /* wapas upar */
  }
}


/* !MAIN HERO SLIDER CSS */

.about-section {
  position: relative;
  /* background: url(../images/section-about-after.png) no-repeat var(--primary); */
  background-position: left;
}

.about-section .about-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding-right: 5rem;

}





.about-section .about-content h2 {
  font-size: 5.7rem;
  color: var(--black);
  text-transform: capitalize !important;
  line-height: 1.7;
}

.about-section .about-content .sign-plus {
  position: absolute;
  right: -44%;
  top: 36%;
  z-index: -1;
}

.ab-left-before {
  position: absolute;
  left: -148%;
  top: 33%;
  z-index: -1;
}

.about-section .about-content p {
  color: var(--black);
}

/* .about-section .about-content h3 {
  font-size: 7.1rem;
  color: var(--white);
  font-family: 'richardson-small', Arial, sans-serif;
  line-height: 0.8;
  padding-bottom: 1rem;
} */

.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0px 15px 0px;

}

.top-bar .call-us-btn {

  padding-left: 1rem;
}

.about-img {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.about-section p {
  color: var(--white)
}

.call-us-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #313131;
  font-size: 16px;
  padding-left: 5.2rem;
}

/* .call-icon {
  background: linear-gradient(90deg, rgba(89, 246, 251, 1) 13%, rgba(251, 252, 254, 1) 59%);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  margin-right: 17px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  animation: call-animation 2s infinite;
  border: 1px solid #fff;
} */

.call-icon figure img {
  width: 55px;
  height: auto;
}

.call-text {
  display: flex;
  flex-direction: column;
  color: var(--black);
  line-height: 1.3;
  padding-left: 1rem;
}

.call-text span:first-child {
  color: var(--black);
  font-size: 18.3px;
  line-height: 1.5;
}

.call-text span:last-child {
  color: var(--black);
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
}

/* .top-bar .call-us-btn .call-icon {
  background: linear-gradient(90deg, rgba(89, 246, 251, 1) 13%, rgba(251, 252, 254, 1) 59%);
  animation: call-about 2s infinite;
} */

/* @keyframes call-about {
  0% {
    box-shadow: 0 0 0 0px rgb(37 52 76 / 70%);
  }

  100% {
    box-shadow: 0 0 0 9px rgb(37 52 76 / 28%);
  }
} */

.about-before-img {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  bottom: -4.9%;
  left: -7%;
  background: #f7f9f8;
  z-index: 1;
  padding: 2rem;
  border-radius: 0 76px;
}

.about-before-img p {
  line-height: 1.6;
  padding-left: 1.4rem;
  writing-mode: sideways-lr;
  padding-top: -1rem;
  padding-bottom: 1rem;
  color: var(--primary);
  font-size: 19px;
}

.ab-before-content {
  position: absolute;
  top: 64%;
  background: #60338be6;
  z-index: 1;
  right: 0;
  padding: 2rem 1rem;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 6px;

}

.ab-before-content p {
  line-height: 1;
}

.ab-before-content p span {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
  display: block;
}

/* Drop-Down Css End  */


/* services-section */
.sec-heading {
  text-align: center;
}

.sec-heading span {
  font-size: 1.2rem;
  background: #eeddfd;
  padding: 0.2rem 2.4rem;
  border-radius: 22px;
}

.sec-heading h2 {
  font-size: 4.6rem;
  letter-spacing: 1.2px;
}

.sec-heading h3 {
  position: absolute;
  font-size: 11.5rem;
  top: 18px;
  text-align: left;
  padding-left: 56px;
  color: rgb(224 229 226 / 18%);
  font-weight: 700;
  z-index: -1;
}

.service-box {
  position: relative;
  padding: 2rem 1.4rem;
}

.service-box:before {
  content: "";
  position: absolute;
  width: 103%;
  height: 81%;
  /* background: #f9f2ff; */
  z-index: -1;
  left: -8px;
  top: 18%;
  border-radius: 20px;
}

.services-section .slide-1::before {
  background: #f9f2ff;
}

.services-section .slide-2::before {
  background: #e5ffea;
}

.services-section .slide-3::before {
  background: #e1f7ff;
}

.services-section .slide-4::before {
  background: #edf2fb;
}

.service-box h3 {
  padding-top: 1rem;
  font-size: 1.5rem;
}

.service-box p {
  color: var(--black);
}

.service-box .themeBtn {
  padding: 0.7rem 1.6rem;
  margin-top: 1rem;
}


/* ----- */

.custome-section {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
}

.custome-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/left-custome-bg.png) no-repeat;
  top: 0
}

.custome-section:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 101%;
  background: url(../images/your-mental-health.png) no-repeat;
  top: -6px;
  right: 0;
}

.custome-section .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custome-section .content h2 {
  font-size: 5.9rem;
  text-transform: capitalize;
}

/* .custome-section .content p {
  color: var(--black);
} */

/* .custome-section .themeBtn {
  background: #b3111c;
  color: var(--white);
} */

/* .custome-section .star-right {
  position: absolute;
  top: 12%;
  left: 0;
} */

/* .custome-section .top-bar .call-us-btn .call-icon {
  background: #b3111c;
}

.custome-section .call-icon figure img {
  filter: brightness(5.5);
}

.custome-section .call-text span {
  color: var(--black) !important;
} */

/* .star-cent {
  position: absolute;
  right: 36.8%;
  z-index: 1;
  bottom: 18px;
  transform: rotate(57.3deg);
} */
/* ------- */

.support-section .content {
  text-align: center;
  background: var(--secondary);
  position: relative;
  padding: 5rem 0;
  border-radius: 20px;
}

.support-section .content h2 {
  font-size: 3.9rem;
}

.support-section .content p {
  font-size: 1.5rem;
  padding: 0 21rem;
  padding-bottom: 1rem;
  color: #000;
}

.sup-before-left {
  position: absolute;
  top: -19%;
  left: -36px;
}

.sup-before-right {
  position: absolute;
  right: -49px;
  bottom: -16%;
}

/* ---- */
.work-section {
  background: url(../images/dote-before.png) no-repeat center;
  background-position-y: 210px;
}

.work-section .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6rem;
  height: -webkit-fill-available;
  justify-content: space-around;
}

/* .work-section .content .sub-content {
  display: flex;
  flex-direction: column;
  /* height: -webkit-fill-available; */
/* justify-content: space-around;
  height: 290px;
  align-items: center;

} */

.work-section h2 {
  font-size: 5rem;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 5rem;
}

.work-section .content p {
  padding: 0.4rem 0;
  color: #000;
}

.work-section .content .request-img {
  background: var(--primary);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border: 9px solid #e0dbe8;
}

.work-section .content .request-img img {
  width: 90px;
}

.curved-arrow-right,
.curved-arrow {
  position: absolute;
  top: 17%;
}

.curved-arrow {
  right: -16%;
}

.curved-arrow-right {
  left: -14%;
}




.work-section .content .themeBtn {
  background: none;
  color: var(--black);
  border: 1px solid var(--primary)
}

/* ----- */

.testimonial-section {
  position: relative;
  padding-top: 10rem !important;
  background: #f7f9f8;
}


/* .testimonial-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/youtube-section-bg.png) no-repeat;
  bottom: -21%;
} */

.testimonial-section .before-testimonial {
  position: absolute;
  right: 0;
  top: 130px;

}

.testimonial-section .heading-line h2 {
  color: var(--black);
  text-align: center;
  font-size: 6.4rem;
  line-height: 0;
  text-transform: capitalize;
}

.testimonial-section .heading-line h2 span {
  color: var(--primary);
}

.testimonials-box {
  position: relative;
  top: -4px;
}

.test-before-img {
  position: absolute;
  right: 29%;
  bottom: -166px;
}

/* --- */


.review-box {

  padding: 1.8rem;
  border-radius: 10px;
  background: white;
  box-shadow: -1px -1px 15px -1px #00000078;
  border-radius: 10px;
}

.profile-icon {
  display: flex;
  align-items: center;
}

.profile-icon span {
  background: #0097a7;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: white;
  margin-right: 12px;
}

.profile-icon ul {
  gap: 10px;
  color: #878787;
}

.profile-icon h4 {
  color: #4892ef;
}

.review-box .rating {
  display: flex;
  margin-left: 3rem;
  padding-top: 1rem;
  gap: 13px;
}

.review-box .rating span i {
  color: #fbbb02;
}

.review-box .rating p {
  color: #878787;
}

.testi-bottom-before {
  position: absolute;
  bottom: -15%;
  right: 33%;
}

.reviewslider {
  width: 62%;
  top: 80px;
  position: absolute;
  right: -166px;
  padding: 0rem 0 3rem;
  border-radius: 20px;
  display: none;
}

.reviewslider .swiper-slide {

  border-radius: 10px;
}

.reviewslider .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 29px;
  user-select: none;
  padding: 0;
  top: 81% !important;
}


.reviewslider .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  background: var(--black);
  border-radius: 2px;
  cursor: pointer;
  transition: 0.5s ease;
  opacity: 100%;
}


.reviewslider .swiper-pagination-bullet-active {
  width: 60px !important;
  background-color: var(--primary) !important;
}

/* ----- */

.community-section {
  text-align: center;
  position: relative;
}

.community-section:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg-heart.png) no-repeat left;
  left: 0;
  bottom: -58%;
  z-index: -1;
}

.community-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg-heart-1.png) no-repeat right;
  right: 0;
  bottom: -52%;
  z-index: -1;
}

.community-section .community-child {
  background: var(--secondary);
  padding: 4rem;
  border-radius: 20px;
}

.community-section h2 {
  color: var(--primary);
  font-size: 5rem;
}

.community-section p {
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--black);
  padding-bottom: 3rem;
}

.community-section .content figure {
  position: relative;
}

.community-section .content figure h3 {
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 2rem;
  color: var(--white);
}

/* ------- */
.brand-section h2 {
  font-size: 5rem;
  text-align: center;
}

.brand-section p {
  font-size: 19px;
  text-align: center;
  padding-bottom: 2rem;
}

.brand-section h2 span {
  color: var(--primary);
}

.brand-section figure {
  /* padding: 4rem 2rem; */
  height: 200px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  margin: 1rem 0;
  display: grid;
  place-items: center;
}













/* footer */
footer {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  /* background-position: top left; */
  padding: 15rem 0 30px;
  background-repeat: no-repeat;
  position: relative;
}

.contact-before {
  position: absolute;
  top: -19%;
  right: 24%;
}

.footer-menu {
  display: flex;
  gap: 51px;
  padding: 30px 0;
  border-top: 1px solid #5d5c5c;
  margin: 1.6rem 0 0;

}

/* .footer-menu li::marker {
  color: white;
} */

.footer-menu li:nth-child(1) {
  list-style: none;
}

.footer-menu li a {
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 2px;
  transition: all 0.4s;
  text-transform: capitalize;
  padding-left: 1rem;
}

.footer-menu li a:hover {
  color: var(--primary);
}

.copyright-content {
  background: #f7f9f8;
  padding: 1.4rem 0;
}

.copyright-content p {
  font-size: 18px;
  color: #0c0c0c !important;
  text-align: center;

}

.copyright-content p span {
  font-weight: 700;
}

.footer-social-links {
  display: flex;
  /* justify-content: center; */
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-links li a i {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: transparent;
  border: 2px solid var(--black);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.footer-social-links li a i:hover {
  background: var(--primary);
  border-color: transparent;
  /* border: none; */
  color: white;
}

.brand-footer {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

.quickList h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

.calFoter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.calFoter li {
  display: flex;
  gap: 0.5rem;
}

.calFoter li:first-child {
  width: 100%;
}

.calFoter li a,
.calFoter li span {
  font-size: 18px;
  color: var(--black);
  transition: all 0.4s;
}

.calFoter li a:hover,
.calFoter li span:hover {
  color: var(--primary);
}

.calFoter li i {
  color: var(--black);
  margin-top: 6px;
}

.map-location iframe {
  border-radius: 20px;
}


.form-banner h1 {
  font-size: 4.5rem;
}

.form-banner p {
  font-size: 1.2rem;
}

.form-banner .slideOne {
  padding: 3.5rem 2rem;
  background: #60338ba6;
  border-radius: 20px;
  margin: 0 4rem;
}

.form-banner .themeBtn:nth-child(2) {
  border: 1px solid;
  background: none;
  padding: 0.8rem 1.4rem;

}

.form-banner .btn-inner {
  display: flex;
  justify-content: space-between;
}

.forms-section-1 {
  padding-bottom: 1rem;
}

.forms-section-1 .office-box {
  background: url(../images/bg-sec-f.png) no-repeat #60338b;
  padding: 1.3rem;
  border-radius: 20px;
  background-size: cover;
  margin: 1rem 0;
  height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.forms-section-1 .office-box .one {
  font-family: "Gobold", sans-serif;
  font-size: 4rem;
  color: white;
}

.forms-section-1 .text a {
  color: var(--black);
}

.forms-section-1 .text a:hover {
  color: var(--primary);
}

.office-box h3 {
  font-size: 3.2rem;

  color: white;
  font-family: 'accid-font', sans-serif;
}

.office-box .get-start {
  margin-top: 1.3rem;
  border: 1px solid #fff;
  background: none;
  padding: 0.8rem 1.7rem;
  border-radius: 30px;
  display: flex;
  width: fit-content;
  align-items: center;
  color: white;
}

.office-box .icon {
  margin-left: 1rem;
  display: flex;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  display: grid;
  place-items: center;
  border-radius: 100%;

}

.office-box .get-start:hover {
  background: var(--primary);
  border-color: transparent;
}

.office-box .get-start:hover .icon {
  border-color: var(--black);

}

.forms-section-1 h2 {
  font-size: 4.7rem;
  padding-bottom: 1rem;
}

.forms-section-1 .text p {
  font-size: 1.2rem;
  padding-bottom: 3rem;
}

.inner-banner {
  padding: 15rem 0;
  background-size: cover;
}

.inner-banner h1 {
  font-size: 5.3rem;
  color: var(--black)
}

.office-banner {
  background: url(../images/inner-banner-1.png) center no-repeat;
  background-size: cover;
}

.about-banner {
  background: url(../images/about-banner.png) center no-repeat;
  background-size: cover;
}

.about-banner h1 {
  color: var(--white);
}

.section-appointment {
  padding-top: 2rem;
}

.section-appointment .content {
  padding: 3.5rem;
  border: 1px solid #60338b12;
  border-radius: 10px;
}

.section-appointment .content h2 {
  padding: 1rem 0;
  position: relative;
  width: fit-content;
}

.section-appointment .content h2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #60338b33;
  bottom: 11px;
}

.section-appointment .content h4 {
  font-size: 1.2rem;
  color: #000000c4;
}


.section-appointment label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.section-appointment input[type="text"],
input[type="email"],
input[type="date"],
input[type="tel"]{
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
  border-style: #000;
  border-radius: 10px;
  border-color: #00000080;
  border: none;
  border: 1px solid #00000042;
}

.section-appointment .accept-section {
  margin-top: 20px;
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
}

.section-appointment .accept-section input[type="checkbox"] {
  margin-right: 8px;
}

.section-appointment textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
  border-style: #000;
  border-radius: 10px;
  border-color: #00000080;
  border: none;
  border: 1px solid #00000042;
}

.section-appointment .accept-text {
  font-size: 0.85em;
  color: #555;
  margin-top: 5px;
}

.section-appointment .themeBtn {
  display: flex;
  width: 100%;
  border: none;
  margin-top: 2rem;
  text-align: center;
  justify-content: center;
}

.section-appointment form {
  padding-top: 3rem;
  position: relative;
}

.section-appointment form:after {
  content: "";
  /* position: absolute; */
  width: 100%;
  top: 30px;
  height: 2px;
  background: #60338b08;
  box-shadow: 1px 3px 0px #0000000d;
}

.box-content ol li {
  padding: 0.7rem 0;
}

.box-content {
  border: 1px solid #0000000f;
  padding: 1.3rem;
  border-radius: 10px;
}

.ul-style {
  list-style: circle;
  padding-left: 3rem;
  padding-top: 1rem;
}

.ul-style li {
  padding: 0.5rem 0;
}

/* section-blogs */
.section-blogs {
  padding-top: 2.2rem;
  padding-bottom: 0;
}

.section-blogs .blogs-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
  margin-bottom: 6rem;
}

.section-blogs h2 {
  font-size: 4.4rem;
  text-align: center;
  padding-bottom: 4rem;
}

.section-blogs .blogs-box::before {
  position: absolute;
  content: "";
  width: 96%;
  height: 89%;
  background: #ffffff;
  top: 16%;
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 86%, 0% 100%);
  border-radius: 20px 20px 64px 20px;
}

.section-blogs .blogs-box .content {
  padding: 2rem;
}

.blogs-box .dte {
  position: absolute;
  width: 80px;
  height: 83px;
  background: var(--primary);
  clip-path: polygon(0% 1%, 100% 0%, 100% 68%, 0% 100%);
  bottom: -9%;
  left: 4%;
  border-radius: 7px 9px 16px;
  color: white;
  display: grid;
  place-items: anchor-center;
  padding-bottom: 1rem;
}

.blogs-box .content h4 {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.7rem 0;
}

.blogs-box .content p {
  font-size: 1.2rem;
  line-height: 1.4;
  padding-bottom: 0.8rem;
}

.blogs-box .content a {
  font-size: 1.3rem;
  text-decoration: underline !important;
  color: var(--primary);
  transition: 0.2s ease-in;
}

.blogs-box .content a:hover {
  color: var(--black);
}



/* .section-urgant */
.section-urgant {
  padding-bottom: 1rem;
  /* padding-top: 0; */
}

.section-urgant h2 {
  font-size: 5.1rem;
  text-align: center;
}

.section-urgant h3 {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 300;
}

.section-urgant h3 strong {

  font-weight: 500;
}

.section-urgant .content-banner {
  background: url(../images/banner-sec.png) no-repeat var(--primary);
  background-size: cover;
  margin-top: 2.8rem;
  padding: 3rem 4rem;
  background-position: center;
  border-radius: 40px;
}

.content-banner h2 {
  font-size: 3.2rem;
  color: var(--white);
  padding-bottom: 1rem;
}

.content-banner p {
  font-size: 1.4rem;
  text-align: center;
  line-height: 0.8;
  color: var(--white);
}

.content-banner a {
  color: var(--white);
}

.inner-about-1 {
  position: relative;
  padding: 2.5rem 0;
}

.inner-about-1 .content-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.inner-about-1 .color-bg:before {
  position: absolute;
  content: "";
  width: 78%;
  height: 54%;
  top: 24%;
  left: 0;
  right: 0;
  background: var(--secondary);
  margin: auto;
  border-radius: 30px;
}

.inner-about-1 .content-details h2 {
  font-size: 4rem;
  color: var(--black);
}

.inner-about-1 .content-details h2 a {
  color: var(--black);
}

.inner-about-1 .justify-img {
  display: flex;
  justify-content: center;
}

.inner-sec-1 .content-service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.inner-sec-1 .content-service span {
  font-size: 6.4rem;
  color: #66399138;
  line-height: 1.1;
}

.inner-sec-1 .content-service h3 {
  font-size: 3.5rem;
  font-weight: bold;
}

.inner-sec-1 .justify-img {
  display: flex;
  justify-content: center;
}

.sec-2 {
  background: var(--primary);
  position: relative;
}

.sec-2:before {
  content: "";
  background: #e5ffea;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 25%;
}

.sec-2 h3{
  color: var(--white);
}
.sec-2 p{
  color: var(--white);
}
.sec-2  .content-service span {
   
    color: #e5ffea59;

}
.pay-section h1{
  font-size: 6rem;
  text-align: center;
}