@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");

html {
  font-size: 16px;
  overflow-x: hidden;
}

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

}

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

:root {
  --white: #ffffff;
  --black: #000;
  --gary-color: #727272;
  --lightgary-color: #b2b9bd;
  --theme-color: #01182e;
  --primary-color: #93292d;
  --skyBlue-color: #217cc8;
}

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

h1,
h2,
h3,
h4,
h5,
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;
}

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

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

/* btn css */

.themeBtn {
  background: #217cc8;
  font-size: 1.125rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 50px;
  line-height: normal;
}

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

/* btn css */

/* mouse animation css  */

.bounce-element {
  animation: bounce 0.9s infinite alternate;
  -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}


/* new-header-design */
.mainHeader {

  background: #01182e;
}

.color-1 {
  color: #2c9dfc
}

.mainHeader .navbar {
  padding: 0 11rem 0px 0px !important;
}

header .logo-design {
  clip-path: polygon(0 0, 100% 0%, 89% 100%, 0% 100%);
  background: white;
}

.logo-design img {
  padding: 10px 7rem;
}

header .logo-line-1::before {
  content: "";
  background: #2c9dfc;
  height: 110%;
  width: 10px;
  top: -12px;
  position: absolute;
  right: 28px;
  transform: rotate(17deg);
}

header .logo-line-1::after {
  content: "";
  background: #082d4f;
  height: 111%;
  width: 10px;
  top: -12px;
  position: absolute;
  right: 23px;
  transform: rotate(17deg);
}

.mainHeader .navbar-nav {
  gap: 4rem
}

.mainHeader .navbar-nav .nav-item .nav-link {

  font-size: 18px;
  font-weight: 500;
  color: white;
}

/* Show dropdown on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Optional: prevent dropdown from disappearing instantly */
.dropdown-menu {
  transition: all 0.5s ease;
}


.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0px 15px 0px;

}

.call-us-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 16px;

}

.call-icon {
  background-color: #4aa6ff;
  color: white;
  border-radius: 50%;
  padding: 12px;
  font-size: 18px;
  margin-right: 10px;
}

.call-text {
  display: flex;
  flex-direction: column;
  color: white;
}

.call-text span:first-child {
  font-size: 14px;
  color: #4aa6ff;
}

.call-text span:last-child {
  font-weight: bold;
  font-size: 16px;
}

.quote-btn {
  background-color: #4aa6ff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.quote-btn:hover {
  background-color: #fff;
  color: #2c9dfc;

}

.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
  outline: unset !important;
}

/* end */

.mouse {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 11;
  text-align: center;
}

/* mouse animation css  */

/* navigation css */

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  gap: 57px;
}

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

/* .navbar-nav .nav-item:last-child .nav-link {
	background: var(--theme-color);
	font-size: 1rem;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	border-radius: 0;
	padding: 1.04em 1.56em;
	border-radius: 0;
} */
.an-navbar {
  background: var(--theme-color);
  padding: 1.35rem 0;
}

/* navbar-new-design */
.navbar-brand {
  padding: 10px 0px;
}

.logo-line-1 {
  clip-path: polygon(0 0, 100% 0%, 89% 100%, 0% 100%);

  position: relative;
}

.logo-line-1:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 175px;
  background: #082d4f;
  right: 26px;
  transform: rotate(20deg);
  top: -6px;
}

.logo-line-2 {
  position: relative;
}

.logo-line-2:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 162px;
  background: #2c9dfc;
  right: 34px;
  transform: rotate(20deg);
  top: -6px;
}

.tel-btn i {
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: #2c9dfc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.get-btn {
  background-color: #2c9dfc;
  border-radius: 50px;
  color: white;
  border: 1px solid transparent;
}

.service-btn {
  background-color: transparent;
  border-radius: 50px;
  color: white;
  border: 1px solid #fff;
}

/* navigation css */

/* slider css */

.mainSlider {
  height: 937px;
  position: relative;
  z-index: 1;
}

.mainSlider .btn-group {
  gap: 1rem;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.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;
  align-items: center;
}

.slideContent {
  text-align: left;
}

/* new-slide-pagination-css */
.homeSlider .swiper-pagination {
  position: absolute;
  top: 50%;
  right: 75px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
  width: fit-content;
  height: fit-content;
  left: auto;
}

/* Bullet = Number */
.homeSlider .swiper-pagination-bullet {
  position: relative;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.5;
  right: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Active Number */
.homeSlider .swiper-pagination-bullet-active {
  color: #2d9cdb;
  opacity: 1;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Horizontal line beside active number */
.homeSlider .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 125%;
  left: 18px;
  transform: translateY(-50%);
  width: 100px;
  height: 3px;
  background-color: #2d9cdb;
}

/* end */

.mainSlider h2 {
  margin: 0 0 1.5rem;
}

.mainSlider h1 {
  font-size: 76px;
  color: white;
  line-height: 1;
  margin: 0;
  font-family: "BioSans", sans-serif;
  font-weight: 700;
}

.mainSlider span {
  font-size: 34px;
  font-family: "Poppins", sans-serif;
  color: white;
}

.mainSlider p {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  color: white;
}

/* slide-social-icon */
.header_links {
  position: relative;
  z-index: 11;
  top: 27%;
  left: 1%;
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.header_links li:first-child {
  writing-mode: sideways-rl;
  color: #fff;
  font-size: 17px;
  font-style: italic;
  margin: 0 5px 16px 12px;
}

ul.header_links li a {
  color: #fff;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
}

ul.header_links li a:hover {
  color: #fff;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

ul.header_links li {
  line-height: 1;
  margin-bottom: 20px;
}

.headingOne {
  font-size: 1.75rem;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  margin: 0 0 1rem;
}

.headingTwo {
  font-size: 7.5rem;
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
}

.headingThre {
  font-size: 2.8125rem;
  font-weight: 500;
  color: var(--white);
}

.topLogo {
  padding: 10px 0;
}

.topLogo .clrBtn {
  background: var(--primary-color);
}

.topLogo .d-flex {
  justify-content: flex-end;
  gap: 1rem;
}

.sliderSocial {
  position: absolute;
  left: 4rem;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  flex-direction: column;
  gap: 2rem;
}

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

/* slider css */

/* About Sec Css Start */

.section-2 {
  background: url(../images/aceBg1.webp) center/cover no-repeat;
  z-index: 1;
}

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

.mainHead {
  font-size: 4.5625rem;
  font-weight: 400;
  color: #f7f9f8;
  line-height: 1;
}

.mainsubHead {
  font-size: 55px !important;
  font-weight: bold !important;
}


/* row-double-padding */
.row-padding {
  padding: 5rem 0;
}

.window-content .mainHead span {
  display: block;
}

.window-content {
  padding-left: 1rem;
}

.window-content p {
  font-size: 1.125rem;
  /*width: 78%;*/
  color: var(--white);
}

.window-content p+p {
  margin: 2rem 0 2.75rem;
}

.window-content .btn-group .themeBtn {
  background-color: #2c9dfc;
  padding: 0.9875rem 3rem;
  border-radius: 50px;
}

.window-content .btn-group a {
  flex-shrink: 0;
}

.window-content .mainHead {
  margin-bottom: 1rem;
}

.phone-imag {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-imag h5 {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #2c9dfc;
}

.phone-imag h5 span {
  display: block;
  font-size: 31px;
  font-weight: 400;
  color: var(--white);
  margin-top: 0.625rem;
}

.window-content .btn-group {
  gap: 2rem;
  align-items: center;
}

.window-img {
  position: relative;
}

.windowsub1 {
  position: absolute;
  top: 5rem;
  right: 0;
}

.windowsub2 {
  position: absolute;
  right: 10%;
  top: 10%;
}

/* About Sec Css End  */

/* Cleaning Sec Css Start  */

.cleaning-sec {
  z-index: 1;
  background-color: #01182e;
  padding: 10rem 0 12rem;
}

.cleaningtop {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: -3%;
  z-index: -1;
}

.services-sec {
  background: url(../images/servicesbg.webp) center/cover fixed;
  z-index: 1;
  padding: 6rem 0 13rem 6rem;
}

.cleaningsub {
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

.cleaning-sec h4 {
  font-size: 137px;
  font-weight: 400;
  text-transform: uppercase;
  color: #1e2f40;
  position: absolute;
  top: 0;
  margin: auto;
  right: 0;
  writing-mode: sideways-lr;
  bottom: 0;
  z-index: -1;
  text-align: center;
}

.mainHead span {
  color: #2c9dfc;
}

.cleaning-content p {
  color: var(--white);
  font-size: 1.125rem;
  /*width: 78%;*/
}

.cleaning-content {
  padding-left: 2rem;
}

.cleaning-content p+p {
  margin: 1.75rem 0;
}

.cleaning-content .mainHead {
  margin-bottom: 1.575rem;
}

.cleaning-content .btn-group {
  align-items: center;
  gap: 3rem;
}

.cleaning-content .btn-group figure {
  height: 110px;
  width: 110px;
  background-color: #217cc8;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 2.25rem;
  color: var(--white);
}

/* Cleaning Sec Css End   */

/* Services Sec Css Start */

.services-sec .themeBtn {
  margin-top: 0;
}

.cleaning-imag {
  position: relative;
}

.services-top {
  text-align: center;
  margin-bottom: 3rem;
}

.subHead {
  font-size: 1.125rem;
  font-weight: 400;
  color: #2c9dfc;
}

.services-top .mainHead {
  color: var(--white);
}

.services-content h2 {
  font-size: 2.1875rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  margin: 1rem 0;
}

.services-content p {
  font-size: 1.125rem;
  line-height: 1.5;
  width: 80%;
  color: var(--white);
}

.services-content a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  margin-top: 0.625rem;
}

.services-img {
  position: relative;
}

.services-img::before {
  position: absolute;
  content: "";
  height: 250px;
  width: 220px;
  background-color: #2a96f1;
  top: -0.875rem;
  left: -20px;
  border-radius: 20px 0 0 0;
  z-index: -1;
  opacity: 0;
  transition: 0.6s ease;
}

.services-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(8 29 52 / 95%);
  z-index: -1;
}

figure.services-img img {
  width: 100%;
  transition: 0.6s ease;
}

.servicesslider .swiper-slide.swiper-slide-active .services-img::before {
  left: -12px;
  top: -12px;
  opacity: 1;
}

.cleaning-content .btn-group figure img {
  width: 50px;
}

.cleaning-content h5 {
  font-size: 137px;
  font-weight: 400;
  color: #1e2f40;
}

.servicesslider {
  padding: 1.875rem 1.875rem 0 1.875rem;
}

.servicesslider .swiper-button-next figure {
  place-items: center;
  display: grid;
}

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

.servicesslider .swiper-button-next {
  right: 10%;
  height: 7.5rem;
  background: rgb(33 124 200 / 72%);
  width: 7.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  top: -30%;
  bottom: 0;
  margin: auto;
}

.servicesslider .swiper-button-next figure img {
  width: 60px;
}

/* Services Sec Css End  */

/* Imag Shine Css Start */

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

.img-box img {
  object-fit: cover;
  width: 100%;
  transition: 0.9s ease;
}

.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);
  transition: 0.6s ease;
}

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

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

  100% {
    left: 125%;
  }
}

/* Imag Shine Css End  */

/* Gallery Sec Css Start */

.gallery-sec ul li a figure img {
  height: 280px;
  border-radius: 21px;
}
.gallery-sec .container{
  z-index: 1;
  position: relative;
}
.gallery-sec .themeBtn {
  margin-top: 5rem;
}

.gallerysub {
  position: absolute;
  right: 8%;
  bottom: 7%;
}

section.gallery-sec ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-sec {
  background-color: #01182e;
  padding: 17rem 0 0;
}

/* inner-use-padding */
.gallery-sec .gallery-inner-sec {
  padding: 9rem 0 !important;
}

/* Gallery Sec Css End  */

/* Testimonials Sec Css Start */

.testimonials-sec {
  background: url(../images/clientbg.webp) center/cover fixed;
  padding: 6rem 0 0;
}

.testimonials-top {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-top .subHead {
  color: var(--white);
}

.testimonials-main {
  background-color: var(--white);
  padding: 5.625rem 3.125rem 1.25rem 2.5rem;
  position: relative;
  border-radius: 16px;
  min-height: 430px;
}

.testimonials-main p {
  font-size: 1.125rem;
  color: #313131 !important;
  line-height: 1.5;
  /* height: 84px; */
  /* overflow-y: auto; */
}

.testimonials-sub {
  position: absolute;
  left: 3.875rem;
  top: -4rem;
  text-align: center;
}

.testimonials-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonials-flex h5 {
  font-size: 1rem;

  font-weight: 400;
  text-transform: capitalize;
  color: #313131;
}

.testimonials-stars {
  display: flex;
  align-items: center;
  gap: 0.2625rem;
}

.testimonials-stars li a i {
  color: #ffbc00;
}

.gallery-sec .mainHead {
  text-align: center;
  margin-bottom: 1.75rem;
  color: #f7f9f8;
}

.testimonslider {
  padding: 6rem 0 6rem;
  margin-bottom: -14rem;
}

.testimonslider .swiper-pagination-bullet {
  width: 50px;
  border-radius: 0;
  transition: 0.5s ease;
  background-color: #fff;
  opacity: 100%;
}

.testimonslider .swiper-pagination-bullet-active {
  width: 90px;
  background-color: #2c9dfc !important;
}

/* Testimonials Sec Css End  */

/* Contact Sec Css Start */

section.contact-sec {
  /* background: url(../images//contactbg.webp) center/cover fixed; */
     background-color: #01182e !important;
    padding: 3rem 0 23rem;
    margin-bottom: -21rem;
}

.contact-sec:before {
  content: "";
  position: absolute;
  background: url(../images/contact-sec-before.png) no-repeat;
  bottom: 5%;
  width: 100%;
  height: 138vh;
  z-index: 0;
}

section.contact-sec .mainHead {
  text-align: center;
  margin-bottom: 3.875rem;
}

form.contact-form .form-control {
  height: 3rem;
  outline: unset;
  box-shadow: unset;
  background-color: var(--white);
  border: unset;
  border-radius: 10px;
}

form.contact-form textarea.form-control {
  height: 130px;
}

form.contact-form button {
  border: unset;
  text-align: center;
  /*width: 240px;*/
  margin: auto;
  display: block;
  margin-top: 1.75rem;
}

/* Contact Sec Css End  */

/* Footer Sec Css Start */
footer {
  position: relative;
  background: url(../images/footerbg.webp) center/cover no-repeat;
  padding: 14rem 0 0;
  height: 660px;
  align-content: center;
}

ul.footer-info li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
}

ul.footer-info+ul.footer-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

footer h2 {
  font-size: 33px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #3e5d78;
  padding-bottom: 4rem;
}

ul.footer-social li a figure {
  height: 3rem;
  width: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  transition: 0.6s ease;
  border: 1px solid var(--white);
}

ul.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

ul.footer-social li a figure:hover {
  background-color: #2c9dfc;
  border-color: #2c9dfc;
}

.footer-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.875rem;
}

.footer-menu li a {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
}

.footer-main span {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.275rem;
  display: block;
}

ul.footer-info li a:hover img {
  transform: scale(1.2);
}

ul.footer-info li a img {
  transition: 0.6s ease;
}

.footer-bottom {
  margin-top: 4rem;
  text-align: center;
  background-color: #2c9dfc;
  padding: 2.75rem 0;
}

.footer-bottom p {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
}

.footer-bottom p a {
  font-weight: bold;
  color: var(--white);
}

.contactsub {
  position: absolute;
  bottom: 16%;
  z-index: 1;
}

/* Footer Sec Css End  */

.my-element {
  animation: scalePulse 2s infinite ease-in-out;
}

@keyframes scalePulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.themeBtn:hover {
  background-color: #01182e;
  color: #fff;
}

.window-content .btn-group .themeBtn:hover {
  background: #fff;
  color: #2c9dfc;
}

.service-btn:hover {
  background: #fff;
  color: #000;
}

.get-btn:hover {
  background: #fff;
  color: #2c9dfc;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #2c9dfc;
}

.cleaning-content .themeBtn:hover {
  color: #217cc8;
  background: #fff;
}

form.contact-form button:hover {
  background: #fff;
  color: #000;
}

.gallery-sec .themeBtn:hover {
  background-color: #fff;
  color: #000;
}

ul.footer-menu li a:hover {
  color: #217cc8;
}


/* inner-pages */
/* innerbnr */
.section-main-bg {
  /* background: url(../images/section-main-bg.png); */
  /* background-size: contain;
  background-position: center;
  padding: 0 !important; */
  background: var(--theme-color);
}
.section-residental{
  z-index: 1;
}
.section-residental p {
  color: white;
}

.services-main-bg {
  /* background: url(../images/section-main-bg.png) no-repeat; */
  /* background-size: cover;
  padding: 0 !important; */
  /* background-position: 0 550px; */
  background: var(--theme-color);
}

.services-main-bg p {
  color: white;
}

.services-main-bg .contact-sec {
  background: unset;
}

.section-main-bg .contact-sec {
  /* background: unset !important; */
}

.section-main-bg .gallery-sec {
  background: unset !important;
  z-index: 1;
}

.about-bg {
  background: url(../images/about-bg.png) center/cover no-repeat;
  padding: 15rem 0;

}

.services-bg {
  background: url(../images/services-bg.png) center/cover no-repeat;
  padding: 15rem 0;
}

.gallery-bg {
  background: url(../images/gallery-bg.png) center/cover no-repeat;
  padding: 15rem 0;
}

.contact-bg {
  background: url(../images/contact-page-bg.png) center/cover no-repeat;
  padding: 15rem 0;
}

.innerbnr h1 {
  color: white;
  font-weight: bold;
  font-size: 4.5rem;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  ;
}

.innerbnr .section-inner .windowinner1 {
  position: absolute;
  top: -4rem;
  left: 341px;
  width: 30px;
  height: auto;
}

/* about-us */
.theme-bg {
  background: var(--theme-color);
}

.section-3 .video-container .video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: white;
  background: #ff3435;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  cursor: pointer;
}

.section-choose {
  padding: 19rem 0 0;
      z-index: 1;
}

.section-choose h2 {
  font-family: "Raleway", sans-serif;
  font-size: 63px;
}

/* service */
.solar-panel-sec {
  background: url(../images/solar-panel-bg.png) center/cover fixed;
  /* padding: 6rem 0 0; */
}

/* contact-page */

.address-tab {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;

}

.address-tab a {
  color: #fff
}

.address-tab p {
  font-size: 22px;
  padding: 10px 0;
  color: #fff;
  text-transform: capitalize;
}

.address-tab .tel-icon {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: var(--skyBlue-color);
}

.address-tab .loc-tab {
  background: #000;
}

.tel-icon i {
  font-size: 34px;
  color: #fff;
}

.contact-map-sec iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 0;
}

.location-img {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.location-box {
  padding: 0;
  margin: 0;
  border: 7px solid #ffffff;
  border-radius: 17px;

}

.kn {
  color: white;
}


section.services-main-bg p {
  margin-bottom: 20px;
}


.privacy-content p {
  color: white;
  margin-top: 26px;
  font-size: 19px;
}

.privacy-content li {
  color: white;
  line-height: 33px;
  list-style: initial;
  margin-left: 19px;
}

section.cleaning-sec .mainHead {
  font-size: 52px !important;
}


.logo-design img {

  width: 500px;
}


/* popup-form */
.popup .modal-content {
  background-color: #01182e !important;
  background: url(../images//contactbg.webp);
  background-size: 102%;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  border-radius: 10px;
  padding: 10px;
  position: relative;
}

.popup .modal-header {
  border-bottom: none;
  position: relative;
  padding: 0;
}

.popup .close {
  color: white;
  font-size: 1.2rem;
  opacity: 1;
  position: absolute;
  top: -15px;
  left: -24px;
  border: 1px solid #164e7e;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
  background: #217cc8;
}

.popup .close:hover {
  background: #217cc8;

}

.popup .modal-title {
  font-size: 49px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  color: white;
}

.popup .modal-title+.underline {
  width: 60px;
  height: 4px;
  background-color: #217cc8;
  margin: 10px auto 20px;
  border-radius: 2px;
}

.popup .modal-body p {
  text-align: center;
  color: #ccc;
  margin-bottom: 30px;
}

select:invalid {
  color: gray !important;
}

.popup .form-control {

  border: none;
  border: 2px solid transparent;
  border-radius: 10px;
  height: auto;
  padding: 12px;
  color: #000;
  font-size: 0.8rem;
}

.popup .form-control::placeholder {
  font-size: 0.8rem;
  color: #858c93;
}

.popup .form-control:focus {
  box-shadow: none;
  border: 2px solid #217cc8;
}

.popup .submit-btn {
  margin: 20px auto 0;
  display: block;
  border: none;
  border: 1px solid #217cc8 !important;
  padding: 15.4px 1.5rem;
  font-size: 0.9rem;
}

.popup .themeBtn:hover {
  border: 1px solid #217cc8 !important;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 600px;
    margin: 1.75rem auto;
  }
}