@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html {
  font-size: 16px;
  overflow-x: clip;
  scroll-behavior: smooth;
}

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

/*.container {
    max-width: 1170px;
}*/

:root {
  --white: #ffffff;
  --black: #000;
  --gary-color: #727272;
  /* --lightgary-color: #b2b9bd; */
  --theme-color: #343131;
  --primary-color: #707070;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: var(--theme-color);
}

h2,
h3 {
  font-family: "Playfair Display", serif;
}

h1,
h4,
h5,
h6 {
  color: #000;
}

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

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

figure {
  margin: 0;
}

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

/* LENIS */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* loader */

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

.preLoader.black {
  background-color: var(--white);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--theme-color);
}

/* loader */

/* 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(--theme-color);*/
/*  -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(--theme-color);*/
/*  opacity: 0.3;*/
/*}*/

/* Cursor End */

/* btn css */

.themeBtn {
  background: var(--theme-color);
  font-size: 1rem;
  color: var(--white) !important;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  padding: 0.88em 1.56em;
  border-radius: 50px;
  line-height: normal;
}

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

/* btn css */

/* mouse animation css  */
.scroll {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

section.getMain .scroll {
  top: 0;
}

.scroll a {
  background: var(--theme-color);
  width: 3.9375rem;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50px;
  box-shadow: 0 5px 23px rgb(152 152 152 / 54%);
  color: var(--white);
  font-size: 1.75rem;
  outline: 3px solid var(--theme-color);
  outline-offset: 22px;
  transition: 0.5s ease;
  animation: bounce-1 2s infinite linear;
  transform-origin: bottom;
}

.scroll:hover a {
  background: var(--black);
  color: var(--white);
  outline-color: var(--black);
}

@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* mouse animation css  */

/* navigation css */

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  /* width: 100%; */
  gap: 2rem;
  margin-right: 2rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 0.9375rem;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 400;
  padding: 0 0;
  display: inline-block;
}

.topBar {
  padding: 0.625rem 0;
}

.topBar p {
  font-size: 0.9375rem;
  color: #343131;
  margin: 0;
}

.navbar {
  border-top: 1px solid #d8d8d8;
  padding: 2px 0;
  position: relative;
  z-index: 999;
}

.calSet {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.3rem;
}

.calSet li a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.calSet li a i {
  color: var(--black);
  font-size: 1.3rem;
}

.calSet li a strong {
  font-size: 1.375rem;
  color: var(--black);
}

.calSet li a span {
  font-size: 1rem;
  color: #343131;
  font-weight: 400;
}

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

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

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

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

/* list item inside dropdown */
.navbar .drop-down li {
  min-width: 250px;
  position: relative;
}

/* links */
.navbar .drop-down ul a {
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  color: var(--primary-color);
  text-transform: uppercase;
  display: block;
}

.navbar .drop-down ul a:hover {
  background: var(--secondary);
  color: #fff;
}

/* -------------------------------------------- */
/* SECOND LEVEL DROPDOWN (Nested dropdown)     */
/* -------------------------------------------- */

.navbar .drop-down .drop-down>a:after {
  transform: rotate(-90deg);
  display: inline-block;
  position: absolute;
  right: 0.625rem;
}

/* Second level UL */
.navbar .drop-down .drop-down ul {
  top: 0;
  left: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background: var(--white);
  min-width: 15.625rem;
  transition: 0.3s;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
}

/* Hover to open nested menu */
.navbar .drop-down .drop-down:hover>ul {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.form-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* navigation css */

/* slider css */

.mainSlider {
  height: 840px;
  position: relative;
  padding: 0;
}

.mainSlider .slide-inner {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mainSlider .slide-inner::before {
  content: "";
  background: #00000060;
  position: absolute;
  inset: 0;
}

.slideContent {
  text-align: left;
}

.slideContent h2 {
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
}

.slideContent h3 {
  font-size: 4.125rem;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

.slideContent p {
  font-size: 1.25rem;
  color: var(--white);
}

.swiper-pagination .swiper-pagination-bullet {
  width: 1.1875rem;
  height: 1.1875rem;
  background: transparent;
  border: 2px solid var(--white);
  opacity: 1;
}

.mainSlider .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  right: auto;
  text-align: left;
  width: auto;
  left: 20rem;
  bottom: 5rem;
}

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

.mainSlider .swiper-button-prev:after,
.mainSlider .swiper-button-next:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.75rem;
}

.mainSlider .swiper-button-prev:after {
  content: "\f177";
}

.mainSlider .swiper-button-next:after {
  content: "\f178";
}

.mainSlider .swiper-button-next,
.mainSlider .swiper-button-prev {
  background: #ffffffad;
  width: 3.875rem;
  height: 3.875rem;
  color: #000;
  border-radius: 50px;
  top: 50%;
  transition: 0.5s ease-in-out;
}

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

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

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

/* slider css */

.abtImg figure {
  position: relative;
  text-align: right;
}

.abtImg figure .abtDown {
  position: absolute;
  left: 2rem;
  bottom: -1rem;
  border: 10px solid var(--white);
  border-radius: 50%;
}

.subHeading {
  font-size: 1.875rem;
  color: var(--black);
  font-weight: 600;
  margin: 0;
}

.heading {
  font-size: 3.25rem;
  color: var(--black);
  font-weight: 600;
  line-height: 1;
  margin: 0.8125rem 0 0.8125rem 0;
}

.heading span {
  color: #343131;
  font-size: 1.625rem;
  display: block;
  font-weight: 600;
  padding-top: 8px;
}

section#about .row:first-child {
  padding: 4rem 0 6rem;
}

.aboutContent p {
  margin-bottom: 1.2rem;
}

.howDo-list {
  margin-bottom: 1.2rem;
  margin-left: 1.5rem;
}

.howDo-list li {
  margin-bottom: 0.75rem;
  position: relative;
}

.howDo-list li strong {
  padding-right: 5px;
}

.howDo-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gary-color);
  position: absolute;
  left: -12px;
  top: 8px;
  border-radius: 50%;
}

.serviceMain {
  background: url(../images/srvcbg.jpg);
  padding-bottom: 7rem;
  background-size: cover;
  background-position: center;
}

.sectionHeading {
  font-size: 3.75rem;
  font-weight: 600;
}

.title p {
  margin: 0;
}

.serviceBox {
  text-align: center;
}

.serviceBox figure {
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.serviceBox h2 {
  font-size: 1.67rem;
  color: var(--black);
  font-weight: 600;
}

.serviceBox p {
  line-height: 1.6;
  margin: 0 0 1rem;
}

.serviceBox figure:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.8125rem;
  width: 18.25rem;
  height: 18.25rem;
  background: var(--theme-color);
  border-radius: 50%;
  margin: auto;
  z-index: -1;
}

.serviceSlider {
  padding-top: 0.875rem;
  padding-bottom: 7rem;
}

.serviceSlider .swiper-pagination {
  bottom: 0;
}

.serviceSlider .swiper-pagination .swiper-pagination-bullet {
  border-color: var(--theme-color);
}

.serviceSlider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--theme-color);
}

.anyQuestion {
  padding: 0;
  margin-top: -5rem;
  z-index: 9;
  position: relative;
  margin-bottom: 6rem;
  margin-top: 2rem;
}

.feelContent {
  background: var(--theme-color);
  border-radius: 25px;
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feelContent h4 {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  margin: 0 0 1px;
}

.feelContent h2 {
  font-size: 3.125rem;
  color: var(--white);
  margin: 0;
}

.feelContent .themeBtn {
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0.88em 1.76em;
}

.feelContent .themeBtn span {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  color: var(--black);
  font-size: 12px;
  text-transform: capitalize;
}

.feelContent .themeBtn span strong {
  font-size: 1rem;
  line-height: 19px;
  text-transform: capitalize;
  font-weight: 600;
}

.workVideo figure {
  position: relative;
}

.workVideo figure img,
.workVideo iframe {
  border-radius: 38px;
}

.workVideo figure a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  background: var(--white);
  margin: auto;
  color: var(--theme-color);
  border-radius: 50%;
  font-size: 1.6rem;
}

.workMain {
  padding-bottom: 0;
}

.reviewCard {
  background: #ececec;
  border-radius: 20px;
  padding: 1.25rem 2.5rem;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.reviewCard figure {
  position: absolute;
  top: -55px;
}

.reviewSlider {
  padding-top: 1rem;
}

.reviewCard p {
  height: 250px;
  line-height: 1.8;
  /* margin: 0; */
}

.reviewCard ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid #acacac;
  padding: 0.9375rem 0 0;
}

.reviewCard ul li h2 {
  font-size: 1.625rem;
}

.reviewCard ul li h5 {
  font-size: 1rem;
  margin-bottom: 0;
}

.reviewCard figure img {
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
  border-radius: 50%;
}

.reviewSlider .swiper-slide-next .reviewCard {
  background: var(--theme-color);
}

.reviewSlider .swiper-slide-next .reviewCard p,
.reviewSlider .swiper-slide-next .reviewCard ul li h2,
.reviewSlider .swiper-slide-next .reviewCard p,
.reviewSlider .swiper-slide-next .reviewCard ul li h5 {
  color: var(--white);
}

.mainHow {
  position: relative;
  z-index: 1;
}

.mainHow:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f6f6f6;
  width: 100%;
  height: 120%;
  z-index: -99;
}

.teamCard figure {
  background: var(--white);
  border: 1px dashed #707070;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 0 0px 20px #fff; */
  position: relative;
  z-index: 1;
  margin: 0 auto 0.9375rem;
}

.joinTeam {
  background: #f6f6f6;
}

.teamCard figure:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  margin: auto;
  background: var(--black);
  z-index: -1;
}

.teamCard {
  text-align: center;
  position: relative;
}

.teamCard h2 {
  font-size: 1.875rem;
  margin: 0;
}

.teamCard:before {
  content: "";
  position: absolute;
  top: 6.25rem;
  border: 1px dashed #707070;
  width: 10rem;
  height: 1px;
  right: -22.5%;
  margin: auto;
}

.teamCard.hideLine:before {
  display: none;
}

.joinTeam .themeBtn.borderBtn {
  border-color: var(--theme-color);
  color: var(--theme-color) !important;
  text-transform: capitalize;
}

.joinTeam .teamCard h2 {
  margin-bottom: 0.625rem;
}

.getMain {
  padding: 5rem 7rem 5rem 7rem;
}

.getCard a img,
.subpagecard__img img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.getCard p {
  margin: auto;
  text-align: center;
  line-height: 1.6;
}

.getCard .title {
  font-size: 2.25rem;
  color: var(--black);
  margin: 1.5rem 0 0;
  font-weight: 600;
  text-align: center;
}

.getCard a,
.subpagecard__img {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: block;
}

.getCard a::before,
.subpagecard__img::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.getCard:hover a::before,
.subpagecard:hover .subpagecard__img::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.getCard a img,
.subpagecard__img img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.getCard:hover a img,
.subpagecard:hover .subpagecard__img img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.sceduleMain {
  background: url(../images/scdulebg1.jpg), url(../images/scdulebg2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 0;
}

.sceduleMain .text-center {
  display: inline-block;
  width: 81%;
}

.sceduleMain .text-center .sectionHeading {
  font-size: 2.8125rem;
  margin: 0 0 1.5rem;
}

.sceduleMain .text-center .themeBtn {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  padding: 0.82em 2em;
  width: fit-content;
  border: 1px solid var(--black);
  margin: auto;
}

.sceduleMain .text-center .themeBtn span {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  color: var(--black);
  font-size: 0.75rem;
  text-transform: capitalize;
}

.text-center.leftSubcrb {
  display: table;
  margin-left: auto;
  width: 90%;
}

.text-center.leftSubcrb .sectionHeading {
  color: var(--white);
}

.subsCribe {
  position: relative;
}

.subsCribe input {
  width: 100%;
  height: 4rem;
  border: 1px solid var(--white);
  background: transparent;
  border-radius: 50px;
  padding: 0 1.8rem;
  padding-right: 10rem;
}

.subsCribe input::placeholder {
  color: var(--white);
}

.subsCribe button {
  position: absolute;
  right: 1.25rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: transparent;
  border: 0;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

/* Begin: footer */

footer {
  background-color: #000000;
  padding-top: 4rem;
}

footer .contInfo li a span h3 {
  font-size: 1.625rem;
  font-weight: bold;
  font-family: "Oswald";
}

footer p {
  color: #bcbcbc;
  margin-top: 1rem;
  text-align: left;
  font-size: 0.875rem;
}

footer h3 {
  color: var(--white);
  font-size: 1.625rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

footer .links,
footer .contInfo {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-flow: column;
  /*gap: 0.75rem 0;*/
}

footer .contInfo {
  gap: 2rem 1rem 2rem 1rem;
}

footer .links li a {
  font-size: 1rem;
  color: #bcbcbc;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

footer .contInfo li a {
  display: flex;
  align-items: flex-start;
  gap: 0 1rem;
  line-height: 1.5;
}

footer .contInfo li a span {
  display: block;
  text-transform: none;
  font-size: 1rem;
  color: #bcbcbc;
  line-height: 10ox;
  font-weight: 400;
}

footer .contInfo li a strong {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--white);
}

footer .links li a:hover,
footer .links li a:focus {
  color: var(--white);
}

.payment {
  margin-top: 3rem;
  text-align: left;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--white);
}

.payment img {
  display: block;
}

.copyRight {
  border-top: 1px solid rgb(225 225 225/18%);
  padding: 1.5rem 0;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyRight p {
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1;
  margin: 0;
}

.footerSocial {
  display: flex;
  margin-top: 0;
  align-items: center;
  justify-content: end;
  gap: 0 6px;
}

.footerSocial a {
  font-size: 1rem;
  color: #000;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--white);
  width: 3rem;
  aspect-ratio: 1;
  background: #fff;
}

.footerSocial a:hover {
  background-color: var(--theme-color);
  color: var(--white);
  border-color: var(--theme-color);
}

.copyRight .links {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.copyRight .links li a {
  font-size: 0.875rem;
  font-weight: 400;
  color: aliceblue;
  text-transform: unset;
  text-decoration: underline !important;
  line-height: 1;
}

ul.links.para p {
  margin-top: 0;
  font-size: 1rem;
}

ul.links.para form button.themeBtn {
  width: 17.6875rem;
  height: 2.9375rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  background: #fff;
  color: #000;
  border: unset;
}

footer .contInfo li:first-child a span {
  display: unset;
}

ul.links.para form button.themeBtn:hover {
  background: var(--theme-color);
  color: #fff;
}

ul.contside li {
  font-size: 1rem;
  color: #bcbcbc;
  margin: 1rem;
}

ul.contside li i {
  color: #fff;
  margin-right: 0.6875rem;
}

ul.contside li strong {
  color: #fff;
}

/* END: footer */

.navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-color);
}

/* innerpages Start */

.innerBan .overlay {
  position: absolute;
  text-align: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.innerBan h2 {
  font-size: 5rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 600;
  text-shadow: 0 0 5px black;
}

.innerBan {
  position: relative;
}

.innerBan img {
  height: 41.875rem;
  object-fit: cover;
}

.aboutContent.abtcnt h3 {
  font-size: 3.125rem;
  font-weight: 600;
}

.aboutContent.abtcnt .themeBtn {
  color: #000 !important;
  background: unset;
  border: 1px solid #000;
}

.workMain.workinrr {
  padding-bottom: 5rem;
}

.contactBox {
  text-align: center;
}

.contactBox figure {
  background: var(--white);
  box-shadow: 0 3px 15px rgb(0 0 0 / 6%);
  width: 5.5625rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: auto;
  transition: 0.5s ease-in-out;
}

.contactBox:hover figure {
  box-shadow: 0 3px 32px rgb(0 0 0 / 22%);
}

.contactBox:hover .contactText a {
  font-weight: 600;
}

.contactBox:hover .contactText p {
  font-weight: 400;
}

.contactText {
  padding-top: 2rem;
}

.contactText p {
  font-size: 20px;
  color: #000000;
}

.contactText a {
  font-size: 1.375rem;
  color: var(--black);
  font-weight: 500;
}

.contactForm .form-group label {
  font-size: 1.375rem;
  color: var(--black);
  font-family: "futuraMed";
}

.contactForm .form-group .form-control {
  border-radius: 6px;
  height: 4.0625rem;
  border: 1px solid #c0c0c0;
}

.contactForm .form-group textarea {
  min-height: 9.6875rem;
}

.contactForm .form-group .form-control::placeholder {
  color: #7c7c7c;
}

.contactForm .form-group textarea::placeholder {
  padding-top: 8px;
}

.contactForm .themeBtn {
  border: unset;
}

.contactText h3 {
  font-size: 1.5625rem;
  text-transform: uppercase;
}

.contactForm .form-group label {
  font-size: 1.375rem;
  color: var(--black);
  font-family: "futuraMed";
}

.contactForm .form-group .form-control {
  border-radius: 6px;
  height: 4.0625rem;
  border: 1px solid #c0c0c0;
}

.contactForm .form-group textarea {
  min-height: 9.6875rem;
}

.contactInformss .mainHead {
  font-size: 3.75rem;
}

section.mapsection iframe {
  filter: grayscale(1);
}

section.mapsection {
  padding: 2rem 0 0 0;
  margin-bottom: -0.45rem;
}

/* privacySec */

.privacySec .heading {
  font-size: 3.25rem;
  margin: 0 0 2rem;
}

.privacySec .secHeading {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--black);
  margin: 1.125rem 0;
}

.privacySec p a {
  font-weight: 500;
  color: var(--theme-color);
}

.navbar-brand img {
  width: 9.375rem;
}

footer a img {
  width: 15.625rem;
}

.preLoader img {
  width: 18.75rem;
}

/* SCROLL TOP CSS */

.scroll-top {
  position: fixed;
  right: -5rem;
  bottom: 2rem;
  width: 2.75rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background-color: var(--theme-color);
  color: var(--white);
  z-index: 99;
  transition: all 0.5s ease, right 1s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  border-radius: 50%;
}

.scroll-top.show {
  right: 2rem;
}

.scroll-top:hover {
  background-color: var(--black);
  color: var(--white);
}

/* !SCROLL TOP CSS */

.subpagecard__content h3,
.subpage__content h3 {
  font-size: 2.125rem;
  font-weight: 500;
  text-transform: capitalize;
  margin: 1rem 0 0.5rem;
}

/* career-section */
.career-section .job-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--theme-color);
}

.career-section .job-list li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.career-section .job-list li::before {
  content: "";
  width: 0.875rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--theme-color);
  position: absolute;
  top: 4px;
  left: 0;
}

.file-input {
  cursor: pointer;
}

.file-input input[type="file"] {
  display: none;
}

.file-input span {
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
  color: var(--theme-color);
}

.partnerSlider {
  user-select: none;
  pointer-events: none;
}

.partnerSlider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.partner__img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
}

.subpagecard {
  margin-bottom: 2.25rem;
}

.subpage__content p strong,
.contactForm .form-group.formcheckbox p strong {
  color: var(--theme-color);
}

.contactForm .form-group.formcheckbox label {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  user-select: none;
}

.contactimg {
  position: sticky;
  top: 2%;
}

.contactForm .form-group.formcheckbox p {
  margin: 0.5rem 0 0;
}

.what-get figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: 80% 100%; */
  border-radius: 1rem;
}

.safe-img img {
  width: 100%;
  height: 34.375rem;
  object-fit: cover;
  border-radius: 1.5rem;
}

.safeguardAnchor {
  text-align: center;
}

.abt-list {
  margin: 1rem 0;
}

.the-importance-img img {
  border-radius: 20px;
}

.mortgage-img img {
  width: 39.25rem;
  height: 39.25rem;
  border-radius: 50%;
}

.space {
  margin-left: 3px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;

  span {
    text-transform: uppercase;
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
    animation: marquee 50s linear infinite;
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
  }
}

.serviceMain .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "\f060";
  font-family: "Font Awesome 5 Pro";
  color: var(--black);
}

.serviceMain .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  top: 9rem;
  left: -4rem;
}

.serviceMain .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  color: var(--black);
}

.serviceMain .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -4rem;
  top: 9rem;
}

.serviceBox figure img {
  border-radius: 50%;
  height: 21.875rem;
  width: 21.875rem;
}

.critical img {
  border-radius: 50%;
}

.dcdcdcdc {
  cursor: none !important;
}

.ssdsd {
  width: 31.25rem;
}

.subpagecard__content p {
  height: 7.5rem;
}

.me {
  display: contents;
  font-size: 2.3rem;
}

.contactBox figure img {
  width: 3.3125rem;
}

.heading span strong {
  font-weight: 600;
  font-size: 2.2rem;
}

section.anyQuestion .scroll {
  top: 14rem;
}

section#safeguardingyourfuture {
  height: 56.25rem;
}

.scroll.about_scroll {
  top: 50%;
}

.subpage__content h3 {
  font-size: 3.125rem;
  font-weight: 600;
}

section#getmainid .scroll {
  top: 0.625rem;
}

.subpagecard__content {
  position: relative;
  padding-bottom: 4rem;
}

.subpagecard__content div {
  position: absolute;
  bottom: 0;
}

.aboutContent.abtcnt .btn-group {
  gap: 2rem;
  margin-top: 1rem;
}

.error { color: #dc3545; font-size: 0.875rem; display: none; }
.success-msg { color: #198754; display: none; margin-bottom: 1rem; }