/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&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&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #f2171d;
  --secondary: #099bd7;
  font-family: "Alegreya", serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}
.logo_mobile{
  display: none;
}
h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

h1 {
  margin: 0;
  font-family: "Raleway", sans-serif;
}

h4 {
  margin: 0;
  font-family: "PT Serif", serif;
}
h3 {
  margin: 0;
  font-family: "Raleway", sans-serif;
}
h5 {
  font-family: "Open Sans", sans-serif;
  margin: 0;
}
h6 {
  color: #000;
  margin: 0;
}

.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(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: var(--primary);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  padding: 19px 40px;
  line-height: normal;
  font-family: "Open Sans";
  border-radius: 5px;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}
.form-inline .themeBtn:hover {
  background: var(--primary);
}
/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 0;
  transition: 0.3s ease-in-out;
  box-shadow: 0 3px 5px 0 rgb(0 0 0 / 25%);
  background: linear-gradient(45deg, rgb(225 224 228 / 28%), #fff);
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 22px;
  display: inline-block;
  font-family: "Open Sans";
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 660px;
}

.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: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgb(0 0 0 / 50%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  font-size: 2.5rem;
}

.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;
}

.main-slider h1 {
  color: var(--white);
  font-size: 3.125rem;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0.625rem 0 2.5rem;
}

.main-slider p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1rem;
  font-size: 1.5625rem;
}

/* !MAIN HERO SLIDER 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: 55px;
  line-height: 65px;
  text-align: center;
  border: 0px;
  margin: 0px auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  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 */

/*  New Css Start  */
.top-bar p {
  font-size: 1rem;
  font-style: italic;
  color: #9ebbd1;
  font-family: "Open Sans";
}

.top-bar {
  background-color: #092942;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.top-wrapp {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: end;
}

ul.top-social {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

ul.top-social li a i {
  color: #5996c6;
}

form.top-form span {
  display: flex;
  align-items: center;
  position: relative;
}

form.top-form span a {
  position: absolute;
  right: 10px;
  color: #5f93bb;
  font-size: 18px;
  flex-shrink: 0;
}

form.top-form .form-control {
  height: 50px;
  width: 270px;
  background-color: #041e32;
  border: unset;
  outline: unset;
  box-shadow: unset;
}
form.top-form .form-control::placeholder {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
}

form.top-form .form-group {
  margin: 0;
}

ul.second-list {
  display: flex;
  align-items: center;
}

ul.second-list li + li {
  border-left: 1px solid #d6d6d6;
}

ul.second-list li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 75px 0 20px;
}

ul.second-list li a h5 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #7d7987;
  width: 338px;
}

ul.second-list li a h5 span {
  display: block;
  font-size: 22px;
  color: #232932;
  text-transform: none;
}

.top-bar::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  border: 1px dashed #85919b;
  bottom: -9px;
  z-index: -1;
}

nav.navbar.navbar-expand-lg {
  background: linear-gradient(45deg, #2875b1, #2875b1);
  margin-top: 21px;
  margin-bottom: -54px;
  z-index: 1;
  position: relative;
}

.navbar-nav .nav-item .nav-link + .nav-link {
  border-left: 1px solid;
}

.nav-item + .nav-item {
  border-left: 2px solid #265c86;
}

nav.navbar.navbar-expand-lg::before {
  position: absolute;
  content: "";
  height: 63px;
  width: 1122px;
  border: 1px dashed rgb(255 255 255 / 30%);
  z-index: -1;
  left: 0;
  right: 0;
  margin: auto;
}

.form-inline .themeBtn {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: unset;
  background-color: #058dc5;
  font-family: "Open Sans";
}
.homeSlider .slide-inner::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgb(0 0 0 / 70%);
  z-index: -1;
}

.slideOne h3 {
  font-size: 52px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
  font-family: "Raleway";
  margin-bottom: 7px;
}

ul.main-list li a {
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: capitalize;
  color: rgb(255 255 255 / 79%);
}

ul.main-list li + li {
  margin: 8px 0;
}

.homeSlider .swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

/*  New Css End   */

/* PLumbning-Sec Css Start */

.plumbing-wrapp {
  display: flex;
  align-items: center;
  gap: 20px;
}

section.plumbing-sec {
  background: linear-gradient(45deg, rgb(225 224 228 / 50%), #fff);
  padding: 1rem 0;
}

.plum-content {
  flex: 1;
}

.plum-content h1 {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #4b4b4b;
}

.plum-content h1 span {
  color: var(--primary);
  margin-left: 7px;
}

.plum-content p {
  color: #202020;
  font-size: 14px;
  line-height: 1.6;
}

.plum-content p a {
  color: #202020;
  font-family: "Open Sans";
  font-weight: bold;
}
/* PLumbning-Sec Css End  */

/* Expert-Sec Css Start */

.expert-main h2 {
  font-size: 42px;
  font-weight: bold;
  text-transform: capitalize;
  color: #333333;
  line-height: 1;
}

.expert-main h2 span {
  color: #09a3d5;
}

.expert-main h4 {
  font-size: 20px;
  font-style: italic;
  color: #333333;
  line-height: 1.2;
  letter-spacing: 0.3px;
  margin: 0.625rem 0 7px;
}

.expert-main p {
  color: #898989;
  line-height: 1.625;
  letter-spacing: 0.3px;
  width: 98%;
}

.expert-main p + p {
  margin: 1rem 0 0;
}

.expert-content h3 {
  font-size: 24px;
  font-weight: bold;
  text-transform: capitalize;
  color: #333333;
  font-family: "Alegreya", serif;
  margin: 1rem 0 5px;
}

.expert-wrapp {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.expert-content p {
  color: #999999;
  line-height: 1.625;
  margin-bottom: 10px;
}

.secondBtn {
  font-size: 14px;
  font-weight: bold;
  text-transform: capitalize;
  color: #ec3633;
  font-family: "Open Sans";
}

/* Expert-Sec Css End  */

/* Services-Sec Css Start  */

.mainHead {
  font-size: 38px;
  font-weight: bold;
  color: #242424;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-transform: capitalize;
}

section.services-sec .mainHead {
  text-transform: none;
}

.services-top p {
  line-height: 1.7;
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.3px;
}

a.services-img {
  height: 7.25rem;
  width: 7.25rem;
  display: grid;
  place-items: center;
  border-radius: 100%;
  background-color: #ffff;
  margin: auto;
}
.services-img img{
  height: 80px;
}
.services-content h2 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #242424;
  font-family: "Raleway";
  line-height: 1.625;
  margin: 0.995rem 0 6px;
}

.services-content p {
  color: #797979;
  line-height: 1.75;
  width: 90%;
  margin: auto;
}

.services-wrapp {
  text-align: center;
  padding: 13px;
}

.services-sec {
  background: url(../images/servicesbg.webp) center/cover no-repeat;
  padding-bottom: 4rem;
}
.services-slider {
  padding-bottom: 5rem;
}

.services-slider .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  background: #f5f5f5;
  border: 2px solid #bcbcbc;
}

.services-slider .swiper-pagination-bullet-active {
  background: #002e5b;
}
/* Services-Sec Css End  */

/* Video-Sec Css Start  */

figure.video-img {
  position: relative;
}

figure.video-img::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgb(0 0 0 / 50%);
}

.video-sec {
  background: url(../images/videobg.webp) center/cover fixed;
}

figure.video-img img {
  width: 100%;
}

figure.video-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  position: absolute;
}

figure.video-img a i {
  height: 80px;
  width: 80px;
  display: grid;
  place-items: center;
  background-color: rgb(0 0 0 / 40%);
  border-radius: 50px;
  color: #099bd7;
  font-size: 1.5rem;
  border: 4px solid rgb(255 255 255 / 69%);
}

figure.video-img a i:hover {
  transform: scale(1.1);
  transition: 0.6s ease;
}

.video-content h5 {
  font-size: 22px;
  font-style: italic;
  color: #fff;
  margin: 0.225rem 0;
}

.video-content p {
  color: #000000;
  line-height: 1.7;
  font-size: 15px;
  width: 98%;
}

.video-content p + p {
  margin: 13px 0;
}

.video-content .mainHead {
  color: #099bd7;
  letter-spacing: 0.15px;
}

/* Video-Sec Css End  */

/* Project-Sec Css Start */

section.project-sec {
  background: #e6e9ec;
}
.services-top {
  margin-bottom: 3rem;
}

section.project-sec .mainHead {
  margin-bottom: 2rem;
}
section.project-sec figure + figure {
  margin: 26px 0 0;
}
/* Project-Sec Css End */

/* Emergency-Sec Css Start */
.emergency-sec {
  background: url(../images/emergency.webp) center/cover no-repeat;
}
.emergency-content {
  text-align: center;
}

.emergency-content p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.3px;
  line-height: 1.3;
  width: 63%;
  margin: auto;
}

.emergency-content h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1;
  /* gap: 1rem; */
}

.emergency-content span {
  color: #1dbee8;
  font-size: 34px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
  margin: 4px 13px 1rem;
}

.emergency-content a {
  font-size: 2.5rem;
  color: #f9bb27;
  font-weight: bold;
  line-height: 1;
  font-family: "Open Sans";
  letter-spacing: 0.3px;
  display: block;
  margin-top: 10px;
}

/* Emergency-Sec Css End */

/* About-Sec Css Start */

.about-overlay {
  background-color: #2b9cbe;
  padding: 43px 30px;
}
.about-main {
  padding-left: 2rem;
}
.about-overlay h2 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
  font-family: "Raleway";
  margin-bottom: 10px;
  line-height: 1.1;
}

.about-overlay p {
  font-size: 17px;
  font-style: italic;
  line-height: 1.4;
  margin: 8px 0 15px;
  color: #fff;
  width: 90%;
}

form.about-form .form-control {
  height: 42px;
  border-radius: unset;
  box-shadow: unset;
  outline: unset;
  color: #999999;
  background: #fff;
}

form.about-form .form-group {
  margin-bottom: 9px;
}

form.about-form textarea.form-control {
  height: 120px;
}

form.about-form button {
  height: 50px;
  width: 178px;
  padding: 0;
  border: unset;
  margin-top: 30px;
  font-family: "Raleway";
}

.about-content h4 {
  font-size: 20px;
  font-weight: bold;
  color: #424242;
  line-height: 1.4;
  margin-bottom: 9px;
}

ul.about-list li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #333333;
  font-family: "Open Sans";
}

ul.about-list {
  display: flex;
  flex-flow: column wrap;
  max-height: 90px;
  gap: 7px;
}
.about-content p {
  font-size: 15px;
  font-weight: 500;
  color: #8e8d8d;
  line-height: 1.7;
  margin-bottom: 1rem;
  width: 84%;
}

.about-main .about-content + .about-content {
  margin: 2rem 0 0;
}

.about-main .about-content:nth-child(2) {
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 2rem;
}

form.about-form .form-control::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  font-family: "Open Sans";
}
.emergency-content h3 span {
  margin-bottom: 0;
}

.about-sec {
  background: url(../images/aboutbg.webp) center/cover no-repeat;
}
ul.about-list.last {
  flex-flow: unset;
  display: grid;
}
/* About-Sec Css End */

/* Testimonilas-Sec Css Start */
/* .testimonials-sec {
  background: CADETBLUE;
} */
/* Testimonilas-Sec Css End */

/* Blog-Sec Css Start */
.test-content {
  background: #fff;
  padding: 40px 24px 40px 20px;
  display: flex;
  align-items: start;
  gap: 15px;
  position: relative;
}

.test-content::before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  clip-path: polygon(0 0, 41% 100%, 100% 0);
  background: #ffff;
  bottom: -38px;
}

.test-content p {
  flex: 1;
  color: #9d9d9d;
  line-height: 2;
}

figure.test-img {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 20px;
}

figure.test-img h5 {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  color: #9d9d9d;
}

figure.test-img h5 span {
  display: block;
  font-size: 12px;
  color: #099bd7;
  text-transform: uppercase;
  font-family: "Open Sans";
  margin-top: 6px;
}

section.testimonials-sec .mainHead {
  margin-bottom: 2.5rem;
  text-align: center;
}

.blog-content h2 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.3px;
  line-height: 1.4;
  font-family: "Raleway";
  margin: 1rem 0 0.225rem;
}

.blog-content p {
  line-height: 1.7;
  color: #898989;
  font-size: 15px;
  border-bottom: 1px dashed #e2e2e2;
  padding-bottom: 11px;
  margin-bottom: 1rem;
}

ul.blog-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

ul.blog-list li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
  color: #c1c1c1;
}

ul.blog-list li a i {
  color: #95aac6;
}

.blog-overlay {
  border: 1px solid #d9d9d9;
  padding: 23px 9px 24px 25px;
}

.blog-overlay h2 {
  font-size: 18px;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

ul.blog-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}

ul.blog-icon li a {
  font-size: 15px;
  font-weight: 400;
  color: #898989;
  font-family: "Open Sans";
  text-transform: none;
}
section.blog-sec .mainHead {
  margin-bottom: 2rem;
}

.blog-overlay a {
  font-size: 15px;
  font-weight: bold;
  text-transform: capitalize;
  font-family: "Open Sans";
  color: #3695cc;
}
/* Blog-Sec Css End  */

/* Icon-Sec Css Start */
.icon-sec {
  background: url(../images/iconbg.webp) center/cover no-repeat;
  z-index: 1;
  padding: 5rem 0;
}
section.icon-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgb(0 17 37 / 75%);
  z-index: -1;
}

.icon-wrapp a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-wrapp a i {
  height: 114px;
  width: 80px;
  color: #489dc5;
  display: grid;
  place-items: center;
  background: #010;
  font-size: 1.7rem;
}

.icon-wrapp h5 {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #9bb2c7;
  letter-spacing: 0.3px;
}

.icon-wrapp h5 span {
  display: block;
  color: #ffff;
  text-transform: none;
  font-family: "Open Sans";
  margin-top: 7px;
  font-weight: 400;
}

.icon-wrapp {
  background: rgb(1 17 32 / 70%);
}
/* Icon-Sec Css End  */

/* Footer-Sec Css Start */
footer {
  background: url(../images/footerbg.webp) center/cover no-repeat;
  padding-top: 5rem;
}
footer h2 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.15px;
  color: #ffff;
  margin-bottom: 2rem;
  position: relative;
}

footer h2::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 45px;
  background: #6dd1ff;
  bottom: -16px;
}

footer p {
  letter-spacing: 0.3px;
  line-height: 1.6;
  font-size: 15px;
  width: 90%;
}

ul.quick-link li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: #7e95a2;
  display: flex;
  align-items: center;
  gap: 7px;
  font-style: italic;
  font-family: "Open Sans";
  letter-spacing: 0.3px;
}

ul.quick-link li + li {
  margin: 11px 0;
}

ul.quick-link li a:hover {
  transform: translate(10px);
  transition: 0.6s ease;
}

footer figure {
  text-align: center;
}

.footer-bottom p {
  font-size: 17px;
  font-style: italic;
  letter-spacing: 0.3px;
  color: #4ba4cd;
  width: 80%;
}

.footer-bottom {
  padding: 16px 20px;
  border: 1px dashed rgb(255 255 255 / 27%);
  backdrop-filter: blur(51px);
  margin: 27px 0 25px;
}

form.footer-form .form-control {
  height: 42px;
  outline: unset;
  box-shadow: unset;
  color: #999999;
  background: rgb(0 0 0 / 20%);
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: unset;
}

form.footer-form .form-group {
  margin: 0;
}

form.footer-form button {
  height: 46px;
  width: 156px;
  padding: 0;
  border: unset;
  font-family: "Raleway";
}

.footer-last p {
  font-size: 14px;
  letter-spacing: 0.3px;
  width: 100%;
  color: #7e95a2;
}

ul.footer-list {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}

ul.footer-list li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: #7e95a2;
  letter-spacing: 0.3px;
  font-family: "Open Sans";
}
.footer-last {
  padding: 12px 0;
}
ul.fooeter-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
}

ul.fooeter-social li a i {
  height: 35px;
  width: 35px;
  border: 1px solid #5e7285;
  color: #5e7285;
  display: grid;
  place-items: center;
  border-radius: 50px;
}
.themeBtn:hover {
  background: #2875b1;
  color: #fff;
}

a.secondBtn:hover {
  color: #2875b1;
}
/* Footer-Sec Css End  */

/* Inner-Pages Css Start */
.inner-banner {
  position: relative;
}

.inner-banner .overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  text-align: center;
}

.overlay h2 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 3.125rem;
  font-weight: bold;
}

.about-video {
  background: url(../images/videobg.webp) center/cover no-repeat;
}

section.video-sec.about-video .video-content h5 {
  color: #000;
}
section.expert-sec.about-expert .expert-content h3 {
  margin-top: 1.25rem;
}
section.about-sec.about-page .about-content h4 {
  margin: 1rem 0;
}

section.about-sec.about-page ul.about-list li a {
  gap: 0.4255rem;
}
section.about-sec.about-page .about-content p {
  margin-bottom: 1.5rem;
}
section.services-sec.services-page .services-top {
  text-align: center;
}

section.services-sec.services-page {
  background: unset;
  padding: 94px 0 100px;
}

section.services-sec.services-page figure.services-img {
  box-shadow: 0 0 32px 0 rgb(0 0 0 / 7%);
}

section.services-sec.services-page .themeBtn {
  margin-top: 1.5rem;
  padding: 1.25rem 1.55rem;
}

section.project-sec.gallery-page .mainHead {
  text-align: center;
}

section.project-sec.gallery-page {
  background: #fff;
  padding: 6.25rem 0;
}

.blog-wrapp + .blog-wrapp {
  margin: 1.875rem 0;
}
section.blog-sec.blog-page .blog-content h2 {
  margin: 1rem 0;
}
.shop-ctn {
  text-align: center;
  padding-top: 0.625rem;
}

.shop-ctn h3 {
  font-size: 22px;
  font-weight: bold;
  text-transform: capitalize;
  color: #337ab7;
  font-family: "Alegreya", serif;
}

.shop-ctn span {
  display: block;
  margin: 0.625rem 0;
  font-size: 30px;
  font-weight: bold;
  font-style: italic;
  color: #d01414;
}

.shop-ctn .themeBtn {
  padding: 12px 22px;
  background: #09a3d5;
}
.shop-overlay + .shop-overlay {
  margin: 2.5625rem 0 0;
}
section.shop-page {
  padding: 100px 0;
}
section.price-sec p {
  color: #898989;
  line-height: 1.8;
  font-size: 14px;
  width: 90%;
  margin-bottom: 2.5rem;
}

.price-wrapp {
  display: flex;
  align-items: center;
  gap: 35px;
  background-color: #f3f3f3;
}

.price-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #242424;
  font-family: "Alegreya", serif;
  margin-bottom: 0.25rem;
}

.price-content h5 {
  font-size: 50px;
  font-weight: bold;
  color: #242424;
  font-family: "Alegreya", serif;
}

.price-content h5 sub {
  color: #898989;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  font-family: "Alegreya", serif;
}
.price-wrapp + .price-wrapp {
  margin: 50px 0 0;
}

.contact-top p {
  line-height: 1.8;
  font-size: 14px;
  font-weight: 600;
  color: #898989;
}

.contact-top {
  margin-bottom: 2rem;
}

.contact-top .mainHead {
  margin-bottom: 3px;
}

form.contact-form .form-control {
  height: 55px;
  border: 1px solid #ebebeb;
  outline: unset;
  box-shadow: unset;
  border-radius: unset;
  color: #959595;

}

form.contact-form textarea.form-control {
  height: 203px;
}

form.contact-form button {
  width: 190px;
  padding: 0;
  height: 50px;
  border: unset;
  margin-top: 3rem;
  border-radius: 3px;
}

.contact-overlay {
  padding: 45px 57px 45px 40px;
  background: #f3f3f3;
}

.contact-wrapp h3 {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #4b4b4b;
  margin-bottom: 4px;
}

.contact-wrapp h3 span {
  color: var(--primary);
}

.contact-wrapp p {
  font-size: 15px;
  color: #202020;
  line-height: 1.5;
  margin-bottom: 4px;
}

.contact-wrapp p a {
  font-weight: bold;
  color: #202020;
  font-size: 15px;
}

.contact-wrapp + .contact-wrapp {
  margin: 16px 0 0;
  border-top: 1px solid #d5d5d5;
  padding-top: 1rem;
}

.contact-wrapp a {
  font-size: 22px;
  font-weight: bold;
  color: #202020;
}

form.contact-form .form-control::placeholder {
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  color: #959595;
  font-family: "Open Sans", sans-serif;
}
section.contact-sec {
  padding: 60px 0 226px;
}
/* Inner-Pages Css End  */

.baSlider {
    margin-bottom: 2rem;
}

.baSlider :is(.before, .after) :is(div, img) {
    height: 600px !important;
    object-fit: cover;
}

.baSlider [baSlider-handler] {
    top: 50% !important;
    transform: translateY(-50%);
    background: var(--primary);
}

.baSlider__text {
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
}

.baSlider__text span {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
}
.before-after{
  background-image: url(../images/testbg.webp);
}
.before-after .container {
  max-width: 880px;
}

.before-after-c {
  display: flex;
  justify-content: space-around;
  
}

.before-after #comparison {
	width: 100%;
	padding-bottom: 100%;
	overflow: hidden; 
  position: relative;
}

.before-after figure {
  position: absolute;
  background-image: url(../images/before-after1.jpg);
  background-size: contain;
  font-size: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.before-after #divisor { 
	background-image: url(../images/before-after2.jpg);
	background-size: cover;
	position: absolute;
	width: 50%; 
	box-shadow: 0 5px 10px -2px rgba(0,0,0,0.3);
	bottom: 0; height: 100%;
  
  &::before,
  &::after {
    content: '';
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
  }
  &::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0,0,0,.3);
  }
  &::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0,0,0,.3);
  }
}
.before-after #handle {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  
  &::before,
  &::after {
    content: '';
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
  }
  &::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
  }
  &::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
  }
}

.before-after input[type=range]{
	-webkit-appearance:none;
	-moz-appearance:none;
	position: absolute;
	top: 50%; left: -25px;
  transform: translateY(-50%);
	background-color: transparent;
	width: calc(100% + 50px); 
  z-index: 2;
  
  &:focus,
  &:active {
    border: none;
    outline: none;
  }
}
.before-after input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid white;
  box-shadow: 0 0 8px 1px rgba(0,0,0,.3);
}
.before-after input[type=range]::-moz-range-track {
	-moz-appearance:none;
	height:15px;
	width: 100%;
	background-color: transparent; 
	position: relative;
	outline: none;    
}

.about-main > h4 {
    font-size: 19px;
    font-weight: 600;
    margin: 10px 0 20px;
}

.about-main > h4 span {
    color: #f70017;
}

figure.video-img video {
    width: 100%;
    height: 487px;
}

.video-sec .mainHead {
    color: #099bd7;
    letter-spacing: 0.15px;
    margin-bottom: 3rem;
    text-align: center;
}

.review-img a img {
  width: 100%;
    height: 397px;
    object-fit: cover;
}

.logo img {
    width: 145px;
}

.footer-logo img {
    width: 198px;
}

.alert .alert-success {
  padding: 1rem;
  background-color: var(--primary);
}