/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #2c3990;
  --secondary: #333333;
}

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

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

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

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  font-family: "Google Sans";
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "Google Sans";
}

.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;
  font-family: "Google Sans";
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: "Google Sans";
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "Google Sans";
}

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: 1rem;
  color: #1c1a1d;
  text-transform: capitalize;
  font-weight: 600;
  display: flex;
  padding: 0.875rem 1.875rem;
  line-height: normal;
  align-items: center;
  width: fit-content;
  gap: 0.625rem;
  border-radius: 50px;
}

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

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 1.25rem 3.125rem 1.25rem 3.125rem;
  transition: 0.3s ease-in-out;
  font-family: "Google Sans";
}

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

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

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

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: #1c1a1d;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 0;
  display: inline-block;
  font-family: "Google Sans";
}

/* !NAV HEADER CSS */
/* SEARCH BAR CSS */

#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 10000;
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}

#search input[type="search"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #fff !important;
  background: rgba(0, 0, 0, 0);
  font-size: 3.4375rem;
  line-height: 4.0625rem;
  text-align: center;
  border: 0px;
  margin: 0px auto;
  margin-top: -3.1875rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  outline: none;
  font-family: arial;
}

#search .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 61px;
  margin-left: -45px;
  background-color: limegreen;
  border: black;
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #fff;
  opacity: 1;
  padding: 10px 17px;
  font-size: 27px;
}

.srch-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.srch-btn .themeBtn {
  padding: 15px 120px;
  font-size: 20px;
}

/* !SEARCH BAR CSS */

/* Main Banner Css Start */

.main-slider {
  height: 900px;
  margin: 0 3.125rem 0 3.125rem;
}

.slideOne {
  text-align: center;
  margin-top: 5rem;
}

.homeSlider .slide-inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgb(0 0 0 / 22%);
  border-radius: 15px;
}

.innerBan::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgb(0 0 0 / 22%);
  border-radius: 15px;
}

.innerBan img {
  border-radius: 15px;
}

.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;
  border-radius: 15px;
}

.main-slider h1 {
  font-weight: 600;
  font-size: 7.275rem;
  color: var(--white);
  line-height: 1;
  margin: 0 0 1.25rem 0;
}

.main-slider p {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  /* width: 70%; */
  margin-bottom: 1.25rem;
  margin: 2rem 0;
}

.main-slider .themeBtn {
  background-color: var(--white);
  margin: auto;
}

/* .mainbanner {
  background: url(../images/mainBnnr.webp) center/cover no-repeat;
  margin: 0 3.125rem 0 3.125rem;
  border-radius: 20px;
  height: 900px;
  display: flex;
  align-items: end;
  padding: 6rem 0 6rem 6rem;
} */

.form-inline a:first-child i {
  color: #1c1a1d;
}

.form-inline {
  gap: 1.25rem;
}

.form-inline .themeBtn {
  color: var(--white);
  font-weight: 800;
}

.form-inline .themeBtn i {
  transform: rotate(45deg);
}

/* .main-content h1 {
  font-weight: 600;
  font-size: 7.275rem;
  color: var(--white);
  line-height: 1;
  margin: 0 0 20px 0;
}

.main-content p {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  width: 70%;
  margin-bottom: 1.25rem;
}

.main-content .themeBtn {
  background-color: var(--white);
} */

/* Main Banner Css End */

/* About Sec Css Start */
.subHead {
  font-size: 1.45rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #707070;
  line-height: 1.3;
  margin: 0 0 0.625rem 0;
}

.mainHead {
  font-size: 3.6375rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1;
}

.about-content p {
  line-height: 1.8;
  color: #000;
  margin: 0.75rem 0 1.875rem;
}

.certificate-img {
  text-align: center;
}

.certificate-img img {
  width: 70%;
  border-radius: 40px;
}

.about-content h3 {
  color: var(--primary);
}

.about-content .subHead {
  margin: 0 0 0.625rem 0;
}

.about-items li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
}

.about-items {
  display: flex;
  flex-flow: column wrap;
  /* max-height: 110px; */
  gap: 0.975rem 0;
  margin: 1rem 0 2rem 0;
}

.ab-l {
  display: flex;
  justify-content: space-between;
}

.ab-l img {
  max-width: 12.5rem;
}

.ab-l .diff-img {
  max-width: 16.75rem;
  position: absolute;
  right: 18%;
  top: 52%;
}

.about-content .themeBtn {
  border: 1px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
}

.about-box {
  background-color: #1c1a1d;
  text-align: center;
  width: fit-content;
  padding: 1.75rem 1.5rem;
  border-radius: 30px;
  position: absolute;
  bottom: 0;
}

.about-box h5 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
}

.about-box h5 span {
  font-size: 1.375rem;
  font-weight: 300;
}

.about-box p {
  letter-spacing: 4px;
  color: var(--white);
  font-size: 1.375rem;
  text-transform: capitalize;
  font-family: "Google Sans";
}

.about-images {
  width: fit-content;
  margin: 0 0 0 auto;
  position: relative;
}

/* About Sec Css End */

/* Wash Sec Css Start */

.wash-flex {
  background-color: #f5f2ec;
  border-radius: 30px;
  padding: 1.25rem 2.62rem 1.25rem 1.25rem;
  display: flex;
  align-items: end;
  gap: 2.5rem;
}

.wash-content h4 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--primary);
  margin: 0 0 0.75rem 0;
}

.wash-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #1c1a1d;
  margin: 0 0 0.875rem 0;
  padding: 0 0 0.875rem 0;
  border-bottom: 1px solid #dfdada;
}

.wash-content {
  flex: 1;
}

.wash-sec {
  padding: 4rem 0 6rem 0;
}

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

.washslider .swiper-button-next,
.washslider .swiper-button-prev {
  width: 1.875rem;
  height: 1.8575rem;
  background: #f9f6f1;
  bottom: 0;
  top: unset;
  color: #1c1a1d;
  left: 0;
  right: 0;
  margin: auto;
}

.washslider {
  padding: 0 0 5rem 0;
}

.washslider .swiper-button-prev {
  left: -3rem;
}

.washslider .swiper-button-next {
  right: -5rem;
}

.washslider::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 45%;
  background: rgb(0 0 0 / 10%);
  right: 0;
  bottom: 1rem;
}

.washslider::after {
  content: "";
  height: 1px;
  width: 45%;
  background: rgb(0 0 0 / 10%);
  right: unset;
  position: absolute;
  left: 0;
  bottom: 1rem;
}

/* Wash Sec Css End  */

/* Services Sec Css Start */

.services-sec .swiper-button-prev:after,
.services-sec .swiper-button-next:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 23px;
}

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

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

.services-sec .swiper-button-next,
.services-sec .swiper-button-prev {
  background: #2c3990d1;
  width: 3.25rem;
  height: 3.25rem;
  color: var(--white);
  border-radius: 50px;
  top: 54%;
  transition: 0.5s ease-in-out;
}

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

.services-sec .swiper-button-next {
  right: 8rem;
}

.services-sec .swiper-button-prev {
  left: 9rem;
}

.services-top {
  text-align: center;
  margin: 0 0 2.75rem 0;
}

.services-top .mainHead {
  width: 80%;
  margin: 1rem auto 0;
}

.services-sec {
  padding: 9rem 0;
  background-color: #f5f2ec;
}

.services-main {
  text-align: center;
}

.services-content h2 {
  font-size: 1.375rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #1c1a1d;
  margin: 0.625rem 0 1rem;
}

.services-content p {
  color: #707070;
  line-height: 1.85;
}

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

.servtop {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
}

.services-imag img {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  object-fit: cover;
}

/* Services Sec Css End  */

/* Benefit Sec Css Start */

.benefit-sec {
  padding: 4rem 3.125rem 8rem 12.05rem;
}

.benefit-imag {
  text-align: center;
}

.benefit-sec .subHead {
  color: var(--primary);
  margin-bottom: 3rem;
}

.about-content h4 {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #1c1a1d;
  margin: 0 0 1.875rem 0;
}

.benefit-imag img {
  width: 70%;
  height: 36.875rem;
  border-radius: 20px;
}

.benefit-sec .about-content p {
  width: 87%;
}

/* Benefit Sec Css End */

/* Choose Sec Css Start */

.choose-sec {
  padding: 12rem 5.4375rem 14rem 6.25rem;
  z-index: 1;
  background-color: #fdf6f2;
}

.choose-imag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.choose-imag img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  border-radius: 30px;
}

.choose-sec .about-content p {
  width: 83%;
}

.choosesub {
  position: absolute;
  right: 0;
  z-index: -1;
  bottom: -7%;
}

.choosetop {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}

.choosebotom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

/* Choose Sec Css End  */

/* Gallery Sec Css Start */

.insta-imag img {
  height: 20.0625rem;
  width: 100%;
  object-fit: cover;
}

.homepage .insta-sec,
.gallery-body .insta-sec {
  display: none;
}

.gallery-top {
  text-align: center;
  margin: 0 0 3.125rem 0;
}

.gallery-imag img {
  width: 100%;
}

.gallery-flex {
  display: flex;
  flex-direction: column;
  /* gap: 1rem;
  margin: 0 0.625rem; */
}

.view-btn {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.view-btn a {
  color: #fff;
}

/* Gallery Sec Css End  */

/* Client Sec Css Start */

.client-top {
  margin: 0 0 3.75rem 0;
}

.client-main {
  position: relative;
}

.client-imag {
  display: flex;
  align-items: end;
  gap: 1.75rem;
  position: absolute;
  top: 0;
}

.client-imag h5 {
  font-size: 1.375rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #1c1a1d;
}

.client-imag h5 span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #707070;
  font-family: "Mulish";
  margin: 0.3252rem 0 0 0;
}

.client-content p {
  color: #707070;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.client-stars {
  display: flex;
  align-items: center;
  gap: 0.325rem;
}

.client-stars li a i {
  color: var(--primary);
}

.client-content {
  position: absolute;
  bottom: 2.25rem;
  left: 1.75rem;
  right: 2rem;
}

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

.client-sec .swiper-button-next,
.client-sec .swiper-button-prev {
  height: 3.125rem;
  width: 3.125rem;
  background-color: #f6ecec;
  color: var(--black);
  top: 26%;
  transition: 0.6s ease;
}

.client-sec .swiper-button-prev {
  left: unset;
  right: 19%;
}

.client-sec .swiper-button-next {
  left: unset;
  right: 15%;
}

.client-sec .swiper-button-next:hover,
.client-sec .swiper-button-prev:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Client Sec Css End */

/* Blog Sec Css Start */

.blog-top {
  text-align: center;
  margin: 0 0 3.125rem 0;
}

.blogbg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.blog-sec {
  padding: 6rem 0 10rem 0;
}

.blog-content {
  background-color: var(--white);
  border-radius: 0px 0 20px 30px;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
}

.blog-content h5 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #1c1a1d;
}

.blog-content h5 span {
  color: var(--primary);
}

.blog-content h4 {
  font-size: 1.375rem;
  font-weight: 500;
  color: #1c1a1d;
  line-height: 1.4;
  margin: 1.075rem 0 1rem;
}

.blog-content a {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #1c1a1d;
  display: block;
  font-family: "Google Sans";
}

.blog-main {
  background-color: var(--white);
  border-radius: 0px 0 50px 50px;
}

.blog-imag img {
  border-radius: 50px 50px 0 0;
}

/* Blog Sec Css End  */

/* Contact Sec Css Start */

.contact-sec {
  padding: 6rem 3.125rem 5rem 3.125rem;
}

.contact-content {
  padding: 3rem;
  position: absolute;
  /* margin-left: -17rem; */
  z-index: 1;
  background: #323263;
  max-width: 31.25rem;
  text-align: center;
  right: 3rem;
  top: -10rem;
  width: 31rem;
  border-radius: 30px;
}

.contact-content .subHead,
.contact-content .mainHead,
.contact-content p {
  color: var(--white);
}

.contact-content .mainHead {
  margin: 0 0 1rem 0;
}

form.contact-form .form-control {
  height: 3.625rem;
  outline: unset;
  box-shadow: unset;
  border-radius: 0;
  background: transparent;
  border: unset;
  border-bottom: 1px solid #fff;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  padding: 1rem;
}

form.contact-form .form-control::placeholder {
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
}

form.contact-form {
  margin: 1rem 0 0 0;
}

form.contact-form textarea.form-control {
  height: 6.875rem;
}

form.contact-form button {
  border: unset;
  background-color: var(--black);
  color: var(--white);
  padding: 1rem 1.875rem;
}

form.contact-form option {
  background-color: var(--black);
  color: var(--white);
}

/*.contactbg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 0 50px 50px 0;
  height: 565px;
  filter: invert(13%) sepia(0%) saturate(859%) hue-rotate(227deg) brightness(37%) contrast(85%);
}*/

/* Contact Sec Css End  */

/* Footer Sec Css Start */
footer {
  position: relative;
  background-color: #1c1a1d;
  padding: 3.75rem 0 3.75rem 0;
  z-index: 1;
}

.footerlogo img {
  width: 17.8125rem;
  filter: brightness(0) invert(1);
}

.footer-top {
  text-align: center;
  margin: 0 0 2.5rem 0;
  padding: 0 0 2.5rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.footerbg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.footer-content p {
  color: #fff;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0 3.75rem 0;
}

.footer-social li a {
  color: var(--white);
  font-size: 1.25rem;
  font-family: "Google Sans";
}

.footer-social li a:hover i {
  transform: scale(1.2);
  color: var(--primary);
}

.footer-social li a i {
  transition: 0.6s ease;
}

footer h2 {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
  margin: 0 0 1.25rem 0;
}

.footer-items li a {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Google Sans";
}

.footer-items li + li {
  margin: 0.875rem 0 0;
}

.footer-list li a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  font-family: "Google Sans";
}

.footer-list li + li {
  margin: 0.975rem 0 0;
}

.footer-hours li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}

.footer-hours li + li {
  margin: 0.75rem 0 0 0;
}

.footer-content p a {
  text-transform: uppercase;
  color: #7c88d5;
  font-family: "Google Sans";
}

footer .mid-contact h2 {
  text-align: center;
  font-size: 2rem;
}

footer .mid-contact .footer-list li strong {
  color: #fff;
}

footer .mid-contact .footer-list li {
  /* display: inline-block; */
  text-align: center;
  /* width: 22%; */
}

footer .footer-content {
  text-align: center;
  margin-top: 3.4375rem;
}

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

/* Footer Sec Css End  */

/* Hover Effect Css Start */
.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}

.themeBtn:hover {
  transform: scale(1.06);
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Hover Effect Css End  */

/* Imag Shine Css Start */

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img {
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
  height: 20rem;
}

.img-box:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-25deg);
}

.img-box:hover .shine {
  animation: shineMove 0.9s ease forwards;
}

@keyframes shineMove {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

figure.blog-imag {
  overflow: hidden;
}

figure.blog-imag img {
  transition: 0.6s ease;
}

figure.blog-imag:hover img {
  transform: scale(1.1);
}

section.client-sec {
  padding: 2rem 0 1rem;
}

/* Imag Shine Css End  */

/* 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: 6.875rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  text-align: center;
}

.innerBan {
  position: relative;
  margin: 0 3.125rem;
}

section.services-sec.servicepage1 {
  margin-top: 6rem;
}

section.blog-sec.blogpage1 .row + .row {
  margin-top: 3rem;
}

.blogpage1 .blog-content {
  background: #f5f2ec;
}

section.contact-sec.contact-page .contactbg {
  border-radius: unset;
  height: 35.6875rem;
}

section.contact-sec.contact-page .contact-content {
  background: var(--primary);
  padding-right: 2rem;
  width: 40rem;
  position: absolute;
  top: -10.6rem;
  right: 20%;
}

figure.contact-img img {
  height: 100%;
  object-fit: cover;
  width: 40%;
  border-radius: 30px;
}

.about-choose-items li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #707070;
}

.about-choose-items {
  display: flex;
  flex-flow: column wrap;
  /* max-height: 110px; */
  gap: 0.975rem 0;
  margin: 0 0 2rem 0;
}

.benefit-imag img {
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
}

.muscle-relax {
  padding-left: 2rem;
  list-style: disc;
}

.muscle-relax li {
  margin-bottom: 1rem;
}

.rightpoint {
  margin-left: 17rem;
  margin-top: 2rem;
}

.rightpoint .about-items {
  padding-left: 1rem;
}

.conatactslider .insta-sec {
  display: none;
}

/* Blog page start */
.blog_content h2 {
  margin: 1rem 0;
}

.blog_content h3 {
  margin: 1rem 0;
}

.blog_content ul {
  padding-left: 2rem;
  list-style: disc;
  margin: 1rem 0;
}

.blog_content ul li + li {
  margin-top: 0.4rem;
}

.blog_content p {
  margin-bottom: 1rem;
}

/* Blog page end */

/*.mid-contact {
  padding-left: 5rem;
}*/

figure.blog-imag img {
  height: 21.3125rem;
  width: 100%;
  object-fit: cover;
}

figure.contact-img {
  margin-left: 12rem;
}
