:root {
  --white: #fff;
  --black: #000;
  --primary: #0a1e2d;
  --secondary: #4b4bfb;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

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

@media (min-width: 1700px) {
  .container {
    max-width: 1380px;
  }
}

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

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

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

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;
}

figure {
  margin: 0;
}

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

.navbar-brand img {
  max-height: 150px;
  transition: 0.3s ease-in-out;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
  background-color: var(--white);
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 2rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.25rem;
  font-weight: 400;
  color: #0a0a0a;
  line-height: 1;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--secondary);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
header .form-inline {
  margin-left: 2rem;
}
.topRow {
  background-color: var(--primary);
  padding: 1rem 0;
}
.topRow ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem 3rem;
}
.topRow ul li a {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}
.themeBtn {
  background: var(--secondary);
  color: var(--white);
  display: inline-block;
  padding: 0.85em 3em;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  border-radius: 10px;
  text-transform: capitalize;
  border: none;
}
.themeBtn:hover {
  background-color: var(--primary);
  color: var(--white);
}
.main-slider {
  position: relative;
}

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0000002b;
}
.carousel-indicators {
  /* position: unset; */
  margin: 0;
  bottom: 2rem;
  gap: 0.5rem;
}
.carousel-indicators li {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  opacity: 1;
  background-color: #fff;
}
.carousel-indicators li.active {
  background: #00c2ff;
}
.main-slider h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}
.main-slider p {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.main-slider .btn-group {
  gap: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
}
.main-slider .btn-group .themeBtn {
  flex: 1;
  text-align: center;
}
.secHeading {
  font-size: 3.125rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  position: relative;
}

.aboutImg {
  position: relative;
}
.aboutImg > img {
  border-radius: 105px;
}
.aboutImg .expInfo {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 4rem 2rem;
  background-color: var(--primary);
  border-radius: 89px 89px 0 89px;
}
.aboutImg .expInfo h3 {
  font-size: 5.3125rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  text-align: center;
}
.aboutImg .expInfo h3 span {
  font-size: 1.875rem;
  display: block;
}

.aboutSec p {
  line-height: 2.3;
  font-size: 1.125rem;
}
.aboutSec .themeBtn {
  border-radius: 15px;
}

/* trustPplSec */
.trustPplSec {
  text-align: center;
  background-color: var(--primary);
}
.trustPplSec ul {
  display: flex;
  margin: 1rem 0;
  align-items: center;
}
.trustPplSec ul li {
  margin-left: -1.75rem;
}
.trustPplSec ul li img {
  border-radius: 50%;
  border: 5px solid var(--secondary);
}
.trustPplSec p,
.trustPplSec .secHeading {
  color: var(--white);
  font-weight: 400;
}
.trustPplSec .themeBtn {
  margin-top: 1.5rem;
  border: 1px solid var(--secondary);
  border-radius: 15px;
}

.brandIcoSec {
  padding: 3rem 0;
}
.brandIco {
  height: 100px;
  display: grid;
  place-items: center;
  text-align: center;
}

/* reviewCard */
.reviewSec {
  padding: 3rem 0 0;
}
.reviewCard {
  border: 1px solid #e2e2e2;
  padding: 2rem 1.25rem 0rem;
  margin: 0 1rem 6rem;
  transition: 0.3s ease-in-out;
  transform-origin: top;
}
.reviewCard p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  transition: 0.3s ease-in-out;
  text-align: center;
}

.reviewCard .userInfo {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.reviewCard .userInfo h3 {
  font-size: 1.375rem;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  color: var(--primary);
}
.reviewCard .userInfo h3 span {
  display: block;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
}
.reviewCard .userInfo img {
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  margin-bottom: -3rem;
  border: 3px solid var(--primary);
}
.reviewCard:hover {
  background-color: var(--primary);
  transform: scale(1.125);
  position: relative;
  z-index: 1;
}
.reviewCard:hover p,
.reviewCard:hover .userInfo h3 {
  color: var(--white);
}
.reviewCard:hover .userInfo img {
  border-color: var(--secondary);
}
.reviewCard.slick-current {
  background-color: var(--primary);
  height: 350px !important;
  margin-bottom: 5rem;
}

.reviewCard.slick-current p {
  font-size: 1.125rem;
  color: var(--white);
  font-style: italic;
}
.reviewCard.slick-current .userInfo h3,
.reviewCard.slick-current .userInfo h3 span {
  font-size: 1.375rem;
  color: var(--white);
}
.reviewCard.slick-current .userInfo img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  margin-bottom: -6rem;
  transform: translateY(3rem);
}
.reviewSlider {
  min-height: 450px;
}
.reviewSlider .slick-list.draggable {
  margin-right: -18rem;
}
.reviewSlider .slick-track {
  margin-left: -18rem;
}

.reviewSlider .slick-dots {
  width: 50%;
  bottom: 0rem;
}
.reviewSlider .slick-dots li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 10px;
  margin: 0 0.25rem;
  width: 10px;
}
.reviewSlider .slick-dots li button {
  border-radius: 50%;
  height: 10px;
  width: 10px;
  padding: 3px;
  transition: 0.3s ease-in-out;
  background-color: #d2d7d5;
}
.reviewSlider .slick-dots li button:before {
  content: none;
  height: 10px;
  width: 10px;
}
.reviewSlider .slick-dots li.slick-active button:before {
  content: "";
  border-radius: 50%;
  transform: scale(1.5);
  background-color: var(--secondary);
}

.star-trustpilot {
  margin-top: -3rem;
}

.servicesSec h2 {
  font-size: 1.875rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.servicesSec .secHeading {
  color: var(--white);
  font-style: italic;
}
.servicesSec p {
  color: var(--white);
  font-size: 1.125rem;
}
.servicesSec .themeBtn {
  border-radius: 15px;
  border: 3px solid var(--secondary);
}
.servicesSec .content-wrap {
  margin-top: 6rem;
}
.servicesSec .row {
  position: relative;
}
.servicesSec .row + .row {
  margin-top: 5rem;
}
.servicesSec .row::before {
  content: "";
  position: absolute;
  left: -16.5rem;
  top: 2rem;
  height: 100%;
  max-height: 485px;
  background-color: var(--primary);
  width: 100%;
  max-width: 1450px;
}
.servicesSec .row.flex-row-reverse::before {
  max-height: 847px;
  left: auto;
  right: -16.5rem;
}
.servicesSec .row.flex-row-reverse figure img:first-child {
  margin-top: -5rem;
  margin-left: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.servicesSec .row.flex-row-reverse figure img:last-child {
  display: block;
  margin-top: -10rem;
}

.servicesSec .row.lastRow::before {
  max-height: 670px;
}
.servicesSec .row.lastRow figure img:first-child {
  display: block;
  margin-left: auto;
}
.servicesSec .row.lastRow figure img:last-child {
  margin-top: -15rem;
  margin-left: -10rem;
}

.faqWrap {
  background-color: #0a1e2d;
  border-radius: 30px;
  margin-bottom: -6rem;
  padding: 2rem 5rem 2rem 3rem;
  box-shadow: 0 0 12px #6e6e6e;
}
.faqWrap .secHeading {
  color: var(--white);
  font-weight: 500;
}

/* faq section start */
.accordionStyle .card {
  background: transparent;
  border-radius: 0;
  border: none;
}

.accordionStyle .card .card-header {
  padding: 0;
  border: 0;
  background: transparent;
}

.accordionStyle .card .card-header button {
  display: block;
  padding: 20px 0;
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--white);
  width: 100%;
  text-align: left;
  position: relative;
  display: flex;
  line-height: 1;
}
.accordionStyle .card .card-header button .fas {
  position: absolute;
  top: 0;
  right: 20px;
  color: #424242;
  font-size: 1.0625rem;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordionStyle .card .card-body {
  border-radius: 0 0 4px 4px;
  padding: 0 0 20px;
  position: relative;
  top: 0;
}
.accordionStyle .card .card-body p {
  font-weight: 300;
  margin: 0;
  font-size: 1.25rem;
  color: var(--white);
  width: 80%;
}
.accordionStyle .card .card-body ul li {
  font-size: 1.25rem;
  color: #767676;
  font-weight: 400;
  line-height: 30px;
}
.accordionStyle .card .card-body ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.accordionStyle .card .card-header button[aria-expanded="true"] .fas:before {
  content: "\f106";
}
.accordionStyle .card .card-header button[aria-expanded="true"] span {
  color: #000000;
}
.accordionStyle .card .card-header button span {
  padding-right: 13px;
}

.accordionStyle .card .card-header button .fas {
  position: absolute;
  top: 0;
  right: 20px;
  color: var(--white);
  font-size: 1.5rem;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

footer {
  background-color: #0a1e2d;
  padding-top: 12rem;
}

footer h3 {
  color: var(--white);
  font-size: 1.375rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}
.btn-group {
  gap: 1rem;
}
footer .links li a {
  color: var(--white);
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 400;
}
footer .links li a:hover {
  color: var(--secondary);
}

.socialIo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.socialIo li a {
  font-size: 2.5rem;
  display: inline-block;
  color: var(--white);
}
.socialIo li a:hover {
  color: var(--secondary);
}

.contactInfo li a {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
  align-items: center;
  gap: 1rem;
}
.contactInfo li:first-child a {
  font-weight: 600;
  font-size: 1.375rem;
  font-family: "Oswald";
}
.contactInfo li:last-child a {
  align-items: flex-start;
}

.copyRight {
  margin-top: 4rem;
  padding: 1.75rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.copyRight p {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
}

.inner-banr {
  position: relative;
}
.inner-banr .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 10.6rem;
}
.inner-banr .headTwo {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 5rem;
  color: var(--white);
  font-weight: 400;
  margin: 0;
  line-height: 1;
}

/*therapy inner page css start*/

.therapySec h4 {
  font-size: 1.875rem;
  font-weight: 400;
}
.therapySec h2 {
  font-size: 3.125rem;
  font-style: italic;
}
.therapySec p {
  font-size: 1.125rem;
  font-style: italic;
  color: #000;
}

/*faq inner page css start*/

.faqWrap.faqSec {
  padding: 2rem 5rem 2rem 3rem;
  margin: 5.8125rem;
}
.faqWrap.faqSec {
  /* background-color: rgb(120 120 189); */
  border-radius: 30px;
}

/*reviews inner page css start*/

.page-link {
  border: none;
}
.page-link:hover {
  z-index: 2;
  color: #000000;
  border-color: #dee2e6;
  border: 1px solid;
  border-radius: 0;
}
.pagination {
  display: flex;
  list-style: none;
  gap: 1rem;
}
.page-link {
  color: #000;
}
.reviewpagination .page-item.active .page-link {
  background-color: white;
  color: black;
  border: 1px solid black;
}

/*contact inner pages css start*/

.contactSec {
  padding-bottom: 0rem;
}
.formStyle .form-control {
  height: 60px;
  margin-bottom: 20px;
  border: 0;
  border: 1px solid #e2e2e2;
  background: #f9f9f9;
  font-size: 15px;
  padding-left: 2rem;
}

.contInfo li {
  display: flex;
  align-items: flex-start;
  padding: 1rem 2rem;
  border-bottom: 2px solid #d8d8d8;
}

.info a {
  color: #000;
  font-weight: 600;
}
.info {
  margin-left: 1rem;
  display: flow-root;
}
.contactSec h2 {
  font-size: 3.125rem;
  font-weight: 500;
}
.ftrSocial {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0 0;
  gap: 3rem;
}
.ftrSocial li a {
  width: 60px;
  height: 60px;
  border: 2px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.53rem !important;
}
.ftrSocial li a {
  color: #938e8e;
}
.ftrSocial li a:hover {
  background: #4b4bfb;
  color: var(--white) !important;
}

.contactSec iframe {
  width: 100%;
  filter: grayscale(1);
  height: 600px;
  border-left: 0;
  border-right: 0;
  margin-top: 4rem;
}

/*.serviceSlider a {*/
/*  font-size: 1rem;*/
/*  color: #fff;*/
/*  text-transform: capitalize;*/
/*  box-shadow: 0 0 7px rgb(0 0 0 / 20%);*/
/*  height: 116px;*/
/*  padding: 1rem;*/
/*  margin: 0.3rem;*/
/*  border-radius: 5px;*/
/*  display: grid;*/
/*  place-items: center;*/
/*  text-align: center;*/
/*  background-color: var(--primary);*/
/*}*/
/*.serviceSlider a:hover{*/
/*  background-color: var(--secondary);*/
/*}*/

.serviceSlider .serviceBox {
  margin: 0 0.4rem;
  text-align: center;
  background-color: var(--primary);
  height: 46vh;
  padding: 0.4rem;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}
.serviceSlider .serviceBox:hover{
  background-color: var(--secondary);
}
.serviceSlider .serviceBox a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  padding: -1px 0.8rem;
}
.serviceBox img {
  padding-bottom: 2rem;
}
.slick-prev:before {
  content: '←';
  color: #000;
  border: 1px solid;
  padding: 0.4rem;
  position: absolute;
  left: -2rem;
  top: 0;
  font-size: 1.4rem;
  border-radius: 50px;
}
.slick-next:before {
  content: '→';
  color: #000;
  border: 1px solid;
  padding: 0.4rem;
  position: absolute;
  right: -2rem;
  top: 0;
  font-size: 1.4rem;
  border-radius: 50px;
}
.slick-prev:before , .slick-next:before:hover{
  background-color: var(--primary);
  color: #fff;
}