/* FONT IMPORT */

/* Google Font */

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Local Font */

:root {
  --white: #fff;
  --black: #000;
  --primary: #08002b;
  --secondary: #5ea699;
}

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

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

section {
  position: relative;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #6c6c6c;
}

h2 {
  font-family: "Lora", serif;
}

h3,
h4 {
  font-family: "Montserrat", sans-serif;
}

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

/* 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 */

.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(--secondary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: var(--secondary);
  font-size: 0.875rem;
  color: var(--white);
  font-weight: bold;
  display: inline-block;
  padding: 0.75rem 2.2em;
  line-height: normal;
}

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

/* !GLOBAL CSS */

/* NAV HEADER CSS */

header {
  background: var(--primary);
}

.navbar-brand {
  position: relative;
  margin: 0 0 -2rem 0;
  padding: 1rem 0 0 0;
  z-index: 1;
}

.navbar-brand:before {
  background: var(--white);
  content: "";
  position: absolute;
  width: 238px;
  height: 238px;
  border-radius: 100%;
  left: -1.5rem;
  top: -1rem;
}

.navbar-nav {
  align-items: center;
  gap: 3rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  padding: 0 0;
  display: inline-block;
  position: relative;
}

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

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

.form-inline {
  margin-left: 2.375rem;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 1045px;
  background: url(../images/mainBanner.webp) center/cover;
}

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

.slideOne {
  margin-top: 11rem;
}

.slideOne h2 {
  color: var(--secondary);
  font-size: 3.4375rem;
  font-style: italic;
  margin: 0;
}

.slideOne h3 {
  color: var(--black);
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1;
}

.slideOne p {
  font-size: 1.125rem;
  margin: 1rem 0 1.5rem 0;
}

.slideOne .btn-group {
  gap: 0.8125rem;
  align-items: center;
}

.themeBtn1 {
  font-size: 1rem;
  padding: 0.875rem 1.9em;
}

.borderBtn {
  font-size: 1rem;
  font-weight: bold;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  display: inline-block;
  padding: 0.6875rem 1.8em;
}

.borderBtn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* !MAIN HERO SLIDER CSS */

/* Quote Sec Css Start */

.quoteBox {
  background: url(../images/quoteBg.webp) center / cover;
  width: 760px;
  height: 860px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.75rem 3.75rem 0 3.75rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15rem;
  z-index: 1;
}

.quoteBox h3 {
  color: var(--white);
  font-weight: 600;
  font-size: 2rem;
  margin: 2.25rem 0 0.625rem 0;
}

.quoteBox p {
  color: rgb(233 233 233 / 57%);
  margin-bottom: 8px;
}

.quoteBox h4 {
  color: var(--secondary);
  font-family: "Lora";
  font-size: 1.5625rem;
  font-weight: 600;
  border-bottom: 2px solid rgb(255 255 255 / 30%);
  width: 100%;
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.quoteForm .form-control {
  border: 1px solid var(--white);
  height: 54px;
  outline: unset;
  box-shadow: unset;
  background: transparent;
  border-radius: unset;
  color: var(--white);
  padding-left: 1.375rem;
}

.quoteForm .form-control::placeholder {
  color: var(--white);
}

.quoteForm .form-group {
  margin-bottom: 1.375rem;
}

.quoteForm .themeBtn1 {
  padding: 0.875rem 3.77em;
  outline: unset;
  border: unset;
  margin-top: 0.625rem;
}

/* Quote Sec Css End */

/* About Sec Css Start */

.aboutSec {
  padding-top: 4rem;
}

.aboutImage {
  margin: 0 -4rem 0 -12rem;
}

.aboutContent {
  margin-top: 6rem;
}

.secHeading {
  font-size: 2.625rem;
  color: var(--secondary);
  font-style: italic;
  margin: 0;
}

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

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

/* About Sec Css End */

/* Video Sec Css Start */

.videoSec {
  padding-top: 6.25rem;
}

.videoSec:before {
  content: "";
  position: absolute;
  background: #f1f1f1;
  width: 100%;
  height: 85%;
  top: 0;
}

.videoWrap {
  position: relative;
  margin-top: 3rem;
  z-index: 1;
  position: relative;
}

.videoWrap > img {
  border: 10px solid var(--white);
}

.videoWrap a {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: auto;
  width: fit-content;
}

/* Video Sec Css End */

/* Call Act Sec Css Start */

.callactSec {
  background: var(--primary) url(../images/callactBg.webp) center / cover;
  padding: 13.125rem 0 5.3rem 0;
  margin-top: -7.7rem;
}

.callactContent {
  position: relative;
}

.callactContent h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.3rem;
}

.callactContent a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.callactContent a small {
  font-size: 3.4375rem;
  font-family: "Lora";
  color: var(--secondary);
  font-weight: 600;
}

.callactContent a span {
  background: var(--secondary);
  width: 70px;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50px;
  color: var(--white);
  font-size: 1.75rem;
}

.arrowImg {
  position: absolute;
  right: -4rem;
  bottom: -1.5rem;
  user-select: none;
  pointer-events: none;
}

/* Call Act Sec Css End */

/* Service Sec Css Start */

.serviceSec {
  padding-top: 7.5rem;
  z-index: 1;
}

.serviceHeading {
  margin-bottom: 5rem;
}

.serviceImage {
  position: relative;
}

.servicePath {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}

.serviceWraps {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: right;
  text-align: right;
  position: relative;
  z-index: 1;
}

.serviceText h3 {
  font-size: 1.3125rem;
  font-weight: bold;
  color: var(--black);
}

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

.serviceIocn figure {
  background: #ededed;
  width: 124px;
  height: 140px;
  display: grid;
  place-items: center;
  clip-path: polygon(
    50% 0,
    50% 0,
    100% 25%,
    100% 75%,
    50% 100%,
    50% 100%,
    0 75%,
    0 25%
  );
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
  transition: 0.5s ease;
}

.serviceIocn figure img {
  transition: 0.5s ease;
}

.serviceListingLeft .serviceWraps + .serviceWraps {
  margin-top: 2.375rem;
}

.serviceListingLeft .serviceWraps:nth-child(1) {
  margin-right: -7rem;
}

.serviceListingLeft .serviceWraps:nth-child(2) {
  margin-right: -1rem;
}

.serviceListingLeft .serviceWraps:nth-child(3) {
  margin-right: -6.5rem;
}

.rightSide .serviceWraps:nth-child(1) {
  margin: 0 0 0 -7rem;
}

.rightSide .serviceWraps:nth-child(2) {
  margin-right: 0;
  margin-left: -1rem;
}

.rightSide .serviceWraps:nth-child(3) {
  margin-right: 0;
  margin-left: -6.5rem;
}

.rightSide .serviceWraps {
  justify-content: left;
  text-align: left;
}

.serviceIocn:hover figure img {
  filter: brightness(0) invert(1);
}

.serviceIocn:hover figure {
  background: var(--secondary);
}

.serviceSec .themeBtn1 {
  position: relative;
  z-index: 1;
}

/* Service Sec Css End */

/* Customer Sec Css Start */

.customerSec {
  background: url(../images/customerBg.webp) center / cover;
  padding: 3.8rem 0;
  margin-top: -5rem;
}

.customerContent {
  margin-top: 15rem;
}

.customerContent h2 {
  font-size: 4.6875rem;
  color: var(--secondary);
  font-style: italic;
  text-align: center;
}

.customerContent h3 {
  color: var(--white);
  font-size: 3.125rem;
  font-weight: bold;
}

.customerLogo {
  margin-top: 5rem;
}

.customerMen {
  margin-bottom: -1.8rem;
}

/* Customer Sec Css End */

/* Gallery Sec Css Start */

.gallerySec {
  padding: 7.5rem 0;
}

.galleryHeading {
  margin-bottom: 3rem;
}

.galleryWrap {
  margin-bottom: 2.25rem;
  overflow: hidden;
}

.galleryWrap a img {
  transition: 0.5s ease;
}

.galleryWrap:hover a img {
  transform: scale(1.1);
}

/* Gallery Sec Css End */

/* Review Sec Css Start */

.reviewSec {
  background: #f1f1f1;
}

.reviewHeading {
  margin-bottom: 3rem;
}

.reviewImage {
  text-align: center;
}

.reviewImage img {
  transition: 0.5s ease;
  border: 2px solid transparent;
}

.reviewSec .mySwiper {
  padding: 3rem 0;
}

.reviewSec .mySwiper .swiper-slide {
  width: 12% !important;
}

.reviewSec .mySwiper .swiper-wrapper {
  justify-content: center;
}

.reviewSec .mySwiper .swiper-slide-thumb-active .reviewImage img {
  border-color: var(--secondary);
  border-radius: 100%;
  transform: scale(1.7);
}

.reviewCotnent {
  text-align: center;
}

.reviewCotnent p {
  font-size: 1.125rem;
}

.reviewCotnent h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #08002b;
  font-style: italic;
}

.reviewCotnent ul {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.reviewCotnent ul li i {
  color: var(--secondary);
  font-size: 0.875rem;
}

.reviewSec .swiper-button-next:after,
.reviewSec .swiper-button-prev:after {
  display: none;
}

.reviewSec .swiper-button-next,
.reviewSec .swiper-button-prev {
  background: #d9d9d9;
  width: 70px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50px;
  color: var(--primary);
  font-size: 1.5rem;
  top: 62%;
  transition: 0.5s ease;
}

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

.reviewSec .swiper-button-next {
  right: 14%;
}

.reviewSec .swiper-button-prev {
  left: 14%;
}

.bottomCall {
  margin: 0;
  padding: 6.875rem 0 5rem 0;
}

/* Review Sec Css End */

/* Footer Css Start */

footer {
  background: #030010;
  padding-top: 4.6875rem;
}

.links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  border: 1px solid rgb(153 153 153 / 20%);
  width: fit-content;
  padding: 1.5rem 4.375rem;
  margin: 2rem auto 3.125rem;
}

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

.links li a:hover,
.socialLinks li a:hover {
  color: var(--secondary);
}

.contactWraps {
  display: flex;
  justify-content: center;
  gap: 3.75rem;
}

.contactInfo {
  display: flex;
  align-items: center;
  gap: 1.375rem;
}

.contactInfo figure {
  background: var(--secondary);
  width: 70px;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50px;
  font-size: 1.75rem;
  color: var(--black);
}

.contactInfo a {
  color: var(--white);
  font-size: 1.125rem;
  text-align: left;
  line-height: 1.7;
}

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

.socialLinks {
  display: flex;
  justify-content: end;
  gap: 1.5rem;
}

.socialLinks li a {
  color: var(--white);
  font-size: 1.5rem;
}

.copyRight {
  background: var(--primary);
  padding: 0.75rem 0;
  margin-top: 5rem;
}

/* Footer Css End */

/* Inner Css Start */

.innerBanner {
  background: url(../images/innerBanner.png) bottom/cover;
  height: 905px;
  display: flex;
  align-items: center;
}

.innerPages .navbar-brand:before {
  top: -3rem;
}

.innerPages .navbar-brand {
  padding-top: 0.5rem;
}

.innerPages header {
  border-bottom: 1px solid var(--white);
}

.innerBan h2 {
  font-size: 3.4375rem;
}

.innerBan h3 {
  font-size: 3.75rem;
}

.aboutInner {
  padding: 1rem 0 6.875rem 0;
}

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

.missionImg:before {
  content: "";
  position: absolute;
  border: 5px dashed #5ea699;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  right: -1.5rem;
  bottom: -1.5rem;
  z-index: -1;
}

.missionImg img {
  width: 100%;
}

.serviceInner {
  padding: 5rem 0;
}

.serviceInner .flex-row-reverse .srvBox {
  margin-right: 0;
  margin-left: -14rem;
  padding: 4.375rem 3.125rem 4.375rem 14rem;
}

.srvBox {
  background: #f6f6f6;
  padding: 4.375rem 14rem 4.375rem 3.125rem;
  margin-right: -14rem;
}

.srvImage img {
  width: 100%;
}

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

.srvImage:before {
  content: "";
  position: absolute;
  border: 5px dashed #5ea699;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  right: -0.5rem;
  bottom: -0.5rem;
  z-index: -1;
}

.galleryInner {
  padding: 6.25rem 0;
}

.contactInner .subHeading {
  font-size: 3.5625rem;
}

.contactInner iframe {
  display: block;
}

.contactBox {
  background: #fbfbfb;
  padding: 5.5rem 9.375rem 5.5rem 3.125rem;
}

.contactBox h3 {
  font-size: 2.25rem;
  color: var(--black);
  font-weight: bold;
}

.contactBox p {
  color: var(--black);
  margin: 1.5rem 0;
}

.contactBox label {
  color: var(--black);
  font-weight: bold;
}

.contactBox .form-control {
  background: var(--white);
  border-radius: 8px;
  outline: unset;
  box-shadow: unset;
  border: unset;
}

.contactBox input {
  height: 56px;
}

.contactBox .form-control::placeholder {
  color: var(--black);
}

.contactBox .form-group {
  margin-bottom: 2rem;
}

.contactBox textarea {
  height: 145px;
}

.contactForm .themeBtn {
  outline: unset;
  border: unset;
  background: var(--black);
  border-radius: 5px;
  padding: 1rem 2.5em;
}

.appointmetContent h3 {
  font-weight: bold;
  font-size: 2.2rem;
  color: var(--black);
}

.appointmentModl .modal-dialog {
  max-width: 1000px;
}

.appointmetContent p {
  color: var(--black);
  font-weight: 500;
  font-size: 1.125rem;
}

.appointmetContent label {
  font-weight: 600;
  color: var(--black);
  font-size: 1.125rem;
}

.appointmetContent .form-control,
.appointmetContent select {
  background: #f6f9fe;
  border: unset;
  border-radius: 10px;
  padding-left: 1.2rem;
  width: 100%;
  outline: unset;
  box-shadow: unset;
}

.appointmetContent input,
.appointmetContent select {
  height: 60px;
}

.appointmetContent textarea {
  height: 170px;
  resize: none;
}

.appointmetContent .themeBtn {
  border: unset;
  outline: unset;
  font-size: 1.25rem;
  border-radius: 10px;
}

.appointmentForm {
  padding-top: 1rem;
}

.appointmetContent {
  padding: 2rem 2rem;
}

/* Inner Css End */

.privacy-page {
  padding: 5rem 0;
}

.privacy-page h4 {
  font-size: 1.8rem;
  font-weight: bold;
}

.privacy-page ul li {
  color: #6c6c6c;
  font-size: 1rem;
  list-style: disc;
  margin-left: 1.3rem;
}

.privacy-page ul li + li {
  margin-top: 10px;
}

.privacy-page ul {
  margin-bottom: 1.8rem;
}
.quoteBox h4 a {
  color: var(--secondary);
}

.navbar-toggler {
    width: fit-content;
}