@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --bg-alt: #f5f5f5;
  --primary-color: #9b2c3c;
  --secondry-color: #1f425d;
  --common-font: "Montserrat", sans-serif;
  --heading-font: "Mulish", sans-serif;
  --common-box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

::after,
::before {
  box-sizing: border-box;
}

::selection {
  background-color: var(--primary-color);
  color: #fff;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--common-font);
  font-size: 17px;
  color: #333;
}

.service-img {
  box-shadow:
    rgba(0, 0, 0, 0.19) 0px 10px 20px,
    rgba(0, 0, 0, 0.23) 0px 6px 6px;
  object-fit: cover;
  height: 100%;
}

strong {
  color: #000000a8;
}

b {
  color: #000000a8;
}

a {
  color: var(--primary-color);
  transition: 0.3s all ease-in-out;
}

a:hover {
  color: var(--secondry-color);
}

li {
  list-style-type: none;
}

div,
ul,
li,
p,
span,
a,
section {
  margin: 0px;
  padding: 0px;
  text-decoration: none;
}

a {
  text-decoration: none;
}

section,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
summary {
  display: block;
}

.section-padding {
  padding: 100px 0px;
}

.center-align {
  display: flex;
  justify-content: center;
  align-items: center;
}

header {
  position: relative;
  z-index: 10;
  /* background: transparent; */
  background-color: rgba(29, 18, 15, 0.938);
}

.header > div {
  padding: 4px 0px 0px 1px;
}

.desktop_header {
  padding: 0px;
}
.navbar-brand {
  padding: 0;
}
.me_sticky {
  position: static;
  width: 100%;
  background-color: transparent;
  z-index: 600;
}

header .left-round {
  border: 1px solid;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 50px;
  padding: 0 10px 0 0;
  height: fit-content;
  font-weight: 600;
  font-size: 16px;
}

header .left-round span {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  margin: auto;
  border-radius: 50%;
  background: var(--primary-color);
}
header .call-outer {
  display: flex;
  align-items: center;
}
header .left-round span i {
  color: #fff;
}

.fixed_header {
  position: fixed !important;
  box-shadow: 0px -5px 22px rgb(179 160 160 / 60%);
  top: 0;
  /* background-color: white; */
}

.dropbtn {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  padding: 0.625rem 1.5rem;
  border: none;
  color: var(--color-black);
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  transition: all 0.35s ease;
  cursor: pointer;
}

.dropbtn::after {
  content: "\f063";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  padding: 0px 10px;
  line-height: 1;
}

.dropdown-content {
  display: none;
  overflow: auto;
  padding: 0px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.show {
  display: block;
}

.dropdown-content .menu-link {
  font-size: 0.9rem !important;
}

.choose-services .main-element {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* @media screen and (min-width: 992px) {
  .header-mobile {
    display: none;
  }
  header {
    position: absolute;
    z-index: 500;
    width: 100%;
  }
} */

.navbar {
  padding: 0 12px;
}

header .logo {
  width: 325px;
}

header .navbar-nav .mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

header .navbar .navbar-toggler .hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--primary-color);
}

header .navbar .hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

header .navbar .hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

header .navbar .hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar-collapse.collapse.show {
  position: absolute;
  z-index: 99;
  top: 46px;
  right: 0;
  background: var(--secondry-color);
  width: 100%;
  padding: 15px 0;
}

.dropdown-toggle::after {
  content: "\f0d8";
  font-family: "Font Awesome 6 Pro";
  font-size: inherit;
  position: relative;
  top: 2px;
  font-weight: 900;
  margin-left: 5px;
  display: inline-block;
  vertical-align: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(180deg);
  transition: 0.4s ease;
}

.dropdown-toggle.show::after {
  transform: rotate(0deg);
  margin-left: 5px;
}
.navbar-collapse {
  align-items: normal !important;
}
.navbar-nav {
  align-items: normal !important;
}
.navbar-nav li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 21px 0;
}
.navbar-nav li:hover a.dropdown-toggle::after {
  transform: rotate(0deg);
  margin-left: 5px;
}
.navbar-collapse.collapse.show .navbar-nav li {
  margin-bottom: 18px;
}

.navbar-collapse.collapse.show .navbar-nav .menu-list .link-list {
  color: #fff;
}

@media screen and (max-width: 1100px) {
  header .navbar-nav .mx-3 {
    margin-right: 1rem !important;
    margin-left: 0.5rem !important;
  }
  header .left-round {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .navbar-nav li a {
    padding: 0;
  }
  header .left-round {
    border-color: #fff;
    color: #fff;
    font-size: 16px;
  }
  header .left-round span {
    background: #fff;
  }
  header .left-round span i {
    color: var(--primary-color);
  }
  header .navbar-nav {
    align-items: baseline !important;
    margin-left: 10px !important;
  }

  .dropdown-menu.show .menu-item {
    margin-bottom: 0 !important;
  }

  .navbar-collapse.show {
    display: inline !important;
  }

  header .navbar-nav .menu-list {
    width: 95%;
  }

  header .navbar-nav .menu-list .dropdown-menu li {
    width: 100%;
  }

  .reverse {
    flex-direction: column-reverse;
  }

  header .logo {
    width: 204px !important;
    height: 70px;
    object-fit: contain;
  }

  .navbar-collapse .right-round {
    margin: 0 !important;
  }
  .navigation ul.navbar-nav {
    background-color: #dad0a9;
  }
}

header .navbar-nav .menu-list {
  list-style-type: none;
  font-family: "DM Sans";
  margin: 0 12px;
  position: relative;
}

.dropdown-menu {
  height: auto;
  max-height: 450px;
  overflow-x: hidden;
}

/* width */

.dropdown-menu::-webkit-scrollbar {
  width: 4px;
}

/* Track */

.dropdown-menu::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */

.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

/* Handle on hover */

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #9b2c3c;
}

@media screen and (min-width: 991px) {
  header .navbar-nav .menu-list .dropdown-menu {
    position: absolute;
    background-color: #ffffff;
    visibility: hidden;
    opacity: 0;
    transition: opacity 300ms ease-in;
    z-index: 100;
    padding: 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-decoration: none;
    width: max-content;
  }

  header .navbar-nav .menu-list .dropdown-menu {
    display: block;
  }
}

header .navbar-nav .menu-list .dropdown-menu li {
  color: #000000;
  background-color: #ffffff;
  list-style-type: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 200ms ease;
}

header .navbar-nav .menu-list .dropdown-menu li a {
  list-style-type: none;
  padding: 10px 20px;
  transition: all 200ms ease;
  text-decoration: none;
  background-color: white;
  color: black;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--heading-font);
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 150ms linear;
  display: block;
}

header .navbar-nav .menu-list .dropdown-menu li a:hover {
  background-color: var(--primary-color);
  color: white;
}

header .navbar-nav .menu-list:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

header .navbar-nav .menu-list .link-list {
  text-decoration: none;
  color: black;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--heading-font);
}

header .navbar-nav .menu-list .link-list:hover {
  color: var(--primary-color);
}

header .navbar-nav {
  align-items: center;
}

@media screen and (max-width: 1199px) {
  header .navbar-nav .menu-list .link-list,
  header .navbar-nav .menu-list .dropdown-menu li a {
    font-size: 14px;
  }
}

header .navbar-nav .after-cls .fas {
  font-size: 14px;
}

header .navbar-nav .after-cls:hover .fas {
  color: var(--primary-color);
}

header .number {
  color: rgb(255, 255, 255);
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

header .color-white {
  color: white !important;
}

.color-white {
  color: white;
}

.theme-button {
  color: #fff;
  padding: 8px 25px;
  background-color: #ee315b;
  border-radius: 0px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.4s;
  text-decoration: none;
  border-radius: 5px;
  position: fixed;
  bottom: 40px;
  z-index: 100;
  left: 15px;
}

.theme-button:hover {
  background-color: #346e7b;
}

.theme-button:hover {
  color: white;
}

.whatsapp {
  display: inline-block;
  position: fixed;
  bottom: 23px;
  left: 0;
  z-index: 100;
  border-radius: 50%;
}

.whatsapp img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

.quote-fixed {
  display: block;
}

@media screen and (min-width: 576px) {
  .quote-fixed {
    display: block;
  }
}

.navbar-collapse {
  display: flex;
  justify-content: space-between;
}

.navbar-collapse .social-media li {
  background-color: var(--primary-color);
  width: 30px;
  display: flex;
  border-radius: 40px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.navbar-collapse .social-media li i {
  font-size: 15px;
  color: white;
  transform: scale(1.1);
  transition: all 500ms ease-in-out;
}

.navbar-collapse .social-media li:hover {
  background-color: var(--secondry-color);
}

.navbar-collapse .social-media li:hover i {
  transform: scale(1.1);
}

.navbar-collapse .right-round {
  padding: 8px 10px;
  border: 1px solid var(--primary-color);
  margin: 0px 10px;
  /* width: 150px; */
  width: 128px;
  display: flex;
  background-color: var(--primary-color);
  justify-content: center;
  /* border-radius: 0px 34px 34px 0px; */
  border-radius: 30px;
  color: white;
}

.navbar-collapse .right-round a {
  color: white;
}

.navbar-collapse .right-round:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.bg-banner {
  /* background-image: url("../images/index-bg.png"); */
  background-image: url("../images/teamremovals-banner.jpg");
  background-position: center 25%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.bg-banner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(
    to right,
    #000000bf,
    #04040491,
    #0c02026b,
    #1203037d
  );
}

.bg-banner .book-appointment .btn2 {
  background-color: #fff;
  color: var(--primary-color);
}

.bg-banner .book-appointment .btn2::before {
  background-color: var(--primary-color);
  color: #fff;
}

.bg-banner .banner-text-wrap {
  position: relative;
  z-index: 99;
}

.bg-banner .banner-text-wrap .banner-text {
  color: #fff;
  font-weight: 600;
}

.bg-banner {
  height: 650px;
  /* padding: 156px 0px; */
}

.bg-banner .head-banner {
  font-size: 50px;
  font-family: var(--heading-font);
  font-weight: 800;
  color: #fff;
}

.bg-banner .head-banner span {
  font-size: 50px;
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--secondry-color);
}

.bg-banner img {
  height: 345px !important;
  width: 100%;
}

.book-appointment {
  margin-left: 0px;
  align-items: center;
}

.book-appointment .btn2 {
  display: block;
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
  color: white;
  font-size: 14px;
  background-color: var(--primary-color);
  border-radius: 35px;
  position: relative;
  text-decoration: none;
  font-family: var(--heading-font);
  padding: 12px 35px;
  border: none;
  margin-right: 10px;
  text-transform: uppercase;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}

.book-appointment .btn2 span {
  z-index: 5;
  position: relative;
  transition: color 350ms ease;
}

.book-appointment .btn2:hover span {
  color: white;
}

.book-appointment .btn2::after,
.book-appointment .btn2::before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  background: var(--secondry-color);
  z-index: -1;
}

.book-appointment .btn2::before {
  /*   background: blue; */
  transform: translateX(-100%);
  z-index: 1;
}

.book-appointment .btn2:hover:before {
  transform: translateX(0);
  transition: transform 350ms ease;
}

.book-appointment .btn2::after {
  z-index: 0;
  transform: translateX(100%);
  transition: none;
  transition: transform 350ms ease;
}

.book-appointment .btn2:hover:after {
  opacity: 1;
  transform: translateX(0);
  transition: transform 350ms 360ms ease;
}

.book-appointment .btn3 {
  display: block;
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
  color: white;
  background-color: var(--primary-color);
  border-radius: 35px;
  position: relative;
  text-decoration: none;
  font-family: var(--heading-font);
  padding: 8px 25px;
  border: none;
  font-size: 14px;
  margin-right: 10px;
  text-transform: uppercase;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}

.book-appointment .btn3 span {
  z-index: 5;
  position: relative;
  display: flex;
  transition: color 350ms ease;
  font-size: 14px;
}

.book-appointment .btn3:hover span {
  color: white;
}

.book-appointment .btn3::after,
.book-appointment .btn3::before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  background: #fd7062;
  z-index: -1;
}

.book-appointment .btn3::before {
  /*   background: blue; */
  transform: translateX(-100%);
  z-index: 1;
}

.book-appointment .btn3:hover:before {
  transform: translateX(0);
  transition: transform 350ms ease;
}

.book-appointment .btn3::after {
  z-index: 0;
  transform: translateX(100%);
  transition: none;
  transition: transform 350ms ease;
}

.book-appointment .btn3:hover:after {
  opacity: 1;
  transform: translateX(0);
  transition: transform 350ms 360ms ease;
}

.main-heading {
  margin-bottom: 40px;
}

.main-heading .line {
  font-weight: 700;
  text-transform: capitalize;
  color: #fd7062;
  font-size: 14px;
  position: relative;
  padding-left: 80px;
  line-height: 1;
  font-family: var(--heading-font);
}

.main-heading .line::before {
  position: absolute;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #fd7062;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}

.main-heading .head2 {
  font-size: 38px;
  line-height: 1.3;
  text-transform: capitalize;
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--primary-color);
}
.head2 {
  font-size: 38px;
  line-height: 1.3;
  text-transform: capitalize;
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--primary-color);
}

.para {
  font-size: 16px;
  font-family: var(--heading-font);
  margin: 10px 0px;
}

.service-card {
  margin: 4px 0px;
  box-shadow: var(--common-box-shadow);
  border: 0px !important;
  height: 99%;
}
.home-service .service-card img {
  height: auto !important;
}
.service-card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.service-card .service-text {
  padding: 10px;
}

.service-card .service-btn {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  font-weight: 500;
  color: var(--secondry-color);
}

.service-card .service-btn i {
  font-size: 1rem;
  transform: rotate(270deg);
  color: var(--secondry-color);
  margin-right: 8px;
}

.service-card .btn-text:hover {
  padding-left: 6px;
}

.service-card .service-btn .btn-text {
  font-size: 1rem;
  /*  position: absolute;*/
  top: 50%;
  left: 100%;
  /*  transform: translateY(-50%);*/
  opacity: 1;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  left: calc(100% + 5px);
}

.service-card:hover .btn-text {
  left: calc(100% + 15px);
  opacity: 1;
}

.service-card .head3 {
  font-size: 18px;
  padding: 0 10px;
}

.head3 {
  font-size: 1.4rem;
  color: var(--secondry-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

.headsub-title {
  font-size: 1.8rem;
  color: var(--secondry-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

.testimonial .owl-dots {
  display: none !important;
}

.testimonial .owl-carousel .owl-nav {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.testimonial .owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondry-color);
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border: none;
}
.testimonial .owl-nav button span {
  color: #fff;
  font-size: 16px;
}

.testimonial .owl-carousel .owl-item {
  padding: 0px 10px;
}

.testimonial .owl-carousel .test-img {
  width: 100px;
  height: 100px;
}

.testimonial .owl-carousel .fa-quote-right {
  color: var(--primary-color);
  font-size: 25px;
}

.testimonial .owl-carousel .fa-star {
  color: #fd7062;
}

.testimonial .owl-carousel .owl-nav {
  display: none;
}

.testimonial .owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.testimonial .owl-carousel .owl-dot.active span {
  background-color: var(--primary-color) !important;
}

.testimonial .owl-carousel button.owl-dot {
  background: #888888;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin: 0 3px;
}

.testimonial .owl-carousel button.owl-dot.active {
  background-color: var(--primary-color);
}

.testimonial .text {
  text-align: justify;
}

/* home-testimonial  */

.home-testimonial .owl-dots {
  display: none !important;
}
.home-testimonial .owl-carousel .owl-nav {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.home-testimonial .owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondry-color);
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border: none;
}
.home-testimonial .owl-nav button span {
  color: #fff;
  font-size: 18px;
}

.home-testimonial .owl-carousel .test-img {
  width: 100px;
  height: 100px;
}

.home-testimonial .owl-carousel .fa-quote-right {
  color: var(--primary-color);
  font-size: 25px;
}

.home-testimonial .owl-carousel .fa-star {
  color: #fff;
}

.home-testimonial .owl-carousel .owl-nav {
  display: none;
}

.home-testimonial .owl-carousel .owl-dot.active span {
  background-color: var(--primary-color) !important;
}

.home-testimonial .owl-carousel button.owl-dot {
  background: #888888;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin: 0 3px;
}

.home-testimonial .owl-carousel button.owl-dot.active {
  background-color: var(--primary-color);
}

.home-testimonial .text {
  text-align: justify;
}
.strip-bg {
  position: relative;
  z-index: 1;
  background: var(--secondry-color);
  padding: 80px 40px 80px 0;
  justify-content: center;
}
.strip-bg:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  background-image: url("../images/strip-bg.jpg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.strip-bg .heading-strip {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.strip-bg p,
.strip-bg span,
.strip-bg a,
.strip-bg .para {
  text-align: left;
  color: #fff;
  display: block;
  text-align: center;
}

.strip-bg .number-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.strip-bg .number-wrap a {
  font-size: 20px;
  font-weight: 600;
}

.bg-theme {
  padding: 30px 0px;
  background-color: var(--secondry-color);
}

.para-quote {
  font-size: 22px;
  font-family: var(--heading-font);
  margin: 10px 0px;
}

.p-rel {
  position: relative;
}

.top-height {
  height: 80px;
}

.banner {
  background-image: url("../images/banner-bg.jpg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner .head2 {
  font-size: 40px;
  line-height: 1.3;
  text-transform: capitalize;
  font-family: var(--heading-font);
  font-weight: 800;
  color: #ffffff;
}

.banner .breadcrumb .breadcrumb-item {
  font-size: 17px;
  font-family: var(--heading-font);
  margin: 10px 0px;
  color: white;
}

.banner .breadcrumb .breadcrumb-item a {
  color: var(--primary-color);
}

.banner .breadcrumb .breadcrumb-item a:hover {
  color: white;
}

.banner .breadcrumb .breadcrumb-item::before {
  color: white;
}

.service-details {
  padding: 40px 0px;
}

.service-details .ul-list li {
  display: block !important;
}

.service-details .main-heading {
  margin-bottom: 15px;
}

.service-details .main-heading .head2 {
  font-size: 35px;
}

.service-details .main-heading .head2 span {
  font-size: 35px;
}

.fixedside-menu {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  padding-left: 30px;
}

.fixedside-menu .navigate {
  padding: 20px 30px;
  margin-bottom: 0;
  background: #f5f5f5;
}

.fixedside-menu .fixed-form #side-form {
  padding: 2px 70px;
}

.fixedside-menu .navigate .head3 {
  font-size: 22px;
  text-align: center;
  color: var(--secondry-color);
  font-family: var(--heading-font);
  font-weight: 800;
}

.fixedside-menu .navigate .quick-links a {
  display: block;
  color: var(--secondry-color);
  font-weight: 700;
  font-family: var(--heading-font);
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  line-height: 1;
  text-transform: capitalize;
  margin: 16px 0px;
}

.fixedside-menu .navigate .quick-links a::before {
  position: absolute;
  left: 0;
  content: "\f0de";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fd7062;
  transform: rotate(90deg);
}

.fixedside-menu .navigate .quick-links a:hover {
  color: var(--primary-color);
}

.fixedside-menu .contact-call {
  border: 2px solid #ebebeb;
  padding: 15px;
  margin-bottom: 40px;
  background-color: var(--secondry-color);
}

.fixedside-menu .contact-call .head3 {
  font-size: 22px;
  color: #ffffff;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 800;
}

.fixedside-menu .contact-call .para {
  text-align: center;
}

.fixedside-menu .contact-call .contact-box {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.fixedside-menu .contact-call .head4 {
  margin: 0;
}

.fixedside-menu .contact-call i {
  color: white;
  font-size: 15px;
  padding-right: 7px;
}

.fixedside-menu .contact-call .head4 {
  font-size: 22px;
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 800;
}

.fixedside-menu .contact-call a {
  color: white;
  padding: 11px 23px;
  border-radius: 35px;
  background-color: var(--primary-color);
  font-size: 15px;
  font-weight: 700;
}

.fixedside-menu .contact-call a:hover {
  background-color: #fff;
  color: var(--primary-color);
  transition: 0.5s ease;
}

.fixedside-menu .contact-call a:hover i {
  color: var(--primary-color);
  transition: 0.5s ease;
}

.text-just {
  text-align: justify;
}

.ul-list li {
  display: flex;
}

.ul-list li i {
  color: var(--primary-color);
  padding-right: 10px;
  padding-top: 5px;
}

.why-list {
  display: flex;
  background-color: #fff;
  padding: 20px;
  transition: all 0.4s ease-in-out;
}

.why-list .icon {
  margin-right: 20px;
  transition: all 0.4s ease-in-out;
}

.why-list .icon i {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  text-align: center;
  font-size: 23px;
  border: 1px dashed var(--secondry-color);
  background-color: transparent;
  color: var(--secondry-color);
  transition: all 0.4s ease-in-out;
}

.why-list:hover {
  background-color: var(--primary-color);
}

.why-list:hover .fa-check {
  color: rgb(255, 255, 255);
}

.why-list:hover .icon i {
  border-radius: 100%;
  text-align: center;
  font-size: 20px;
  border: 1px solid var(--secondry-color);
  background-color: var(--secondry-color);
  color: #ffffff;
}

.why-list:hover .content .head3 {
  color: white;
}

.why-list:hover .content .para {
  color: white;
}

.faqs .accordion-item .accordion-button {
  font-size: 17px;
  font-family: var(--heading-font);
  font-weight: 700;
  padding: 15px 10px;
  background-color: rgba(204, 7, 30, 0.062745098);
}

.accordion-item {
  border: none;
}

.accordion-body {
  padding: 16px 10px;
}

.accordion-header {
  margin-bottom: 10px;
}

.faqs .accordion-item .accordion-button:focus {
  z-index: 3;
  border-bottom: 1px solid rgb(255, 255, 255);
  outline: 0;
  box-shadow: none;
  color: var(--primary-color);
  background-color: rgba(204, 7, 30, 0.062745098);
}

.faqs .accordion-item .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: rgba(204, 7, 30, 0.062745098);
}

.accordion-button:not(.collapsed)::after {
  filter: invert(71%) sepia(33%) saturate(7047%) hue-rotate(321deg)
    brightness(104%) contrast(112%);
}

.get-quote .detail {
  box-shadow:
    0 0.5px 1px 0 rgba(51, 77, 114, 0.1),
    0px 1.6px 3.6px 0 rgba(51, 77, 114, 0.15);
  background: var(--secondry-color);
  min-height: 100%;
  transition: 0.4s all ease-in-out;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px;
  border-radius: 40px;
}

.detail .detail-heading {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.detail p {
  margin: 0;
  padding: 0;
}

.get-quote .detail p {
  color: #fff;
}

.get-quote .detail .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #fff;
  flex-shrink: 0;
}
.get-quote .detail .icon i {
  color: var(--primary-color);
  font-size: 20px;
}
.get-quote .detail:hover {
  box-shadow: 0px 20px 45px rgba(51, 77, 114, 0.15);
  background-color: var(--primary-color);
}

.get-quote .form-head {
  background-color: var(--secondry-color);
  border-bottom: 1px solid rgb(255, 255, 255);
}

.get-quote .form-head .widget-title {
  position: relative;
  /* height: 110px; */
  padding: 9px 0;
}

.get-quote .form-head .widget-title .qoute-mn {
  position: absolute;
  top: -56px;
}

.get-quote .form-head .widget-title .qoute-mn img {
  height: 115px;
  width: 108px;
}

.get-quote .form-head .widget-title .quote-txt {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.get-quote .form-head .widget-title .quote-txt .head3 {
  color: white;
  font-size: 1.7rem;
  font-family: var(--heading-font);
  font-weight: 700;
}

.get-quote .form-body {
  padding: 20px;
  background-color: var(--secondry-color);
}

.get-quote .form-body .form-control,
.get-quote .form-body .form-select {
  border-radius: 0px;
  border-bottom: 3px solid #e7f1eb;
  box-shadow: none;
  margin: 10px 0px;
  color: #0009;
}

textarea {
  resize: none;
}

.get-quote .form-body .form-control:focus,
.get-quote .form-body .form-select:focus {
  border-radius: 0px;
  border-bottom: 3px solid var(--primary-color);
  box-shadow: none;
}

.contact-form form {
  padding: 30px 70px;
  background-color: #f5f5f5;
  height: 100%;
}

.contact-form .head3 {
  text-align: center;
}

.contact-form .form-body .form-control,
.contact-form .form-body .form-select {
  border-radius: 5px;
  border: 1px solid rgb(238, 238, 238);
  border-bottom: 3px solid #e7f1eb;
  box-shadow: none;
  margin: 10px 0px;
  color: #0009;
  font-size: 15px;
}

.contact-form .form-body .form-control:focus,
.contact-form .form-body .form-select:focus {
  border-radius: 0px;
  border-bottom: 2px solid #9b2c3c9c;
  box-shadow: none;
}

.bg-footer {
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.bg-footer .bg-trans {
  background-color: rgba(39, 43, 61, 0.8901960784);
}

.bg-footer .footer-head {
  padding: 60px 0px;
  border-bottom: 1px solid grey;
  background: #3f4252;
}

.bg-footer .footer-head .cont-list {
  border-radius: 15px;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  padding: 20px;
  margin: 20px 0px;
  height: 125px;
}

.bg-footer .footer-head .cont-list .icon {
  margin-right: 20px;
  transition: all 0.4s ease-in-out;
}

.bg-footer .footer-head .cont-list .icon i {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  text-align: center;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  color: white;
  background-color: var(--secondry-color);
  transition: all 0.4s ease-in-out;
}

.bg-footer .footer-head .cont-list .head3 {
  color: white;
}

.bg-footer .footer-head .cont-list a {
  color: #fff;
}

.bg-footer .footer-head .cont-list a:hover {
  color: white;
}

.bg-footer .footer-head .cont-list:hover .icon i {
  border: 1px dashed #fafafa;
  background-color: transparent;
  color: #fcfcfc;
}

.bg-footer .footer-body {
  padding: 60px 0px;
  border-bottom: 1px solid grey;
}

.bg-footer .footer-body .head3 {
  color: white !important;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.bg-footer .footer-body .head3::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 30px;
  height: 1px;
  background-color: #fd7062;
}

.bg-footer .footer-body .head3::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 2px;
  width: 20px;
  height: 1px;
  background-color: #fd7062;
}

.bg-footer .footer-body .para {
  color: white;
}

.bg-footer .footer-body .footer-menu li a {
  color: white !important;
  transition: 0.3s all ease-in-out;
}

.bg-footer .footer-body .footer-menu li a:hover {
  opacity: 0.7 !important;
}

footer .follow-us i {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  font-size: 17px;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: #ffffff;
  transition: all 0.4s ease-in-out;
  padding-top: 10px;
  margin-right: 10px;
}

footer .follow-us .d-flex {
  flex-wrap: wrap;
  gap: 5px;
}

footer .follow-us i:hover {
  border: 1px solid var(--secondry-color);
  background-color: var(--secondry-color);
  color: #ffffff;
}

.bg-footer .footer-end {
  padding: 15px 0px;
}

.bg-footer .footer-end a {
  color: #ff5b5b !important;
  font-size: 14px;
  font-family: var(--heading-font);
  margin: 0px;
  padding: 0 5px;
}

.bg-footer .footer-end a:hover {
  color: #fd7062 !important;
}

.bg-footer .footer-end p {
  font-size: 14px;
  font-family: var(--heading-font);
  margin: 0px;
}

.bg-seprate {
  background-color: var(--bg-alt);
}

.theme-button {
  color: #fff;
  padding: 8px 25px;
  background-color: var(--primary-color);
  border-radius: 0px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.4s;
  text-decoration: none;
  border-radius: 30px;
  position: fixed;
  bottom: 38px;
  z-index: 100;
  box-shadow: 0px 0px 5px rgb(34, 34, 34);
  left: 15px;
}

.theme-button:hover {
  color: rgb(255, 255, 255);
  background-color: var(--secondry-color);
}

/* .whatsapp {
  display: inline-block;
  position: fixed;
  bottom: 40px;
  right: 15px;
  z-index: 100;
  border-radius: 50%;
}

.whatsapp img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
} */

.thankyou-wrap {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.thankyou-wrap img {
  height: 100px;
  object-fit: contain;
}

.thankyou-wrap span {
  font-size: 60px;
  font-weight: 600;
  color: var(--primary-color);
}

.thankyou-wrap p {
  font-size: 20px;
  font-weight: 500;
}

.thankyou-wrap a {
  color: var(--secondry-color);
  font-weight: 600;
  display: flex;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 991px) {
  .bg-footer .footer-end {
    padding: 15px 0 53px;
  }
  .quote-fixed,
  .whatsapp {
    display: none !important;
  }

  .dropdown-menu.show {
    display: block;
  }
  .choose_left {
    margin-top: 24px;
  }
  .carousel-item img {
    margin-top: 24px;
  }
  .mover_day_right .main-heading h3 {
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 991px) {
  .footer-mobile-wraper {
    display: none;
  }
}

.footer-mobile-wraper {
  background-color: var(--primary-color);
  width: 100%;
  overflow-x: hidden;
  position: sticky;
  bottom: 0;
  z-index: 99;
}
.footer-mobile-wraper .google-review {
  background-color: white;
}
.footer-mobile-wraper a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 0;
}

.footer-mobile-wraper a i {
  padding-right: 5px;
  font-size: 15px;
}

.icon-wraper {
  padding: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.modal .modal-body {
  padding: 0rem;
  box-shadow: 0px 0px 10px grey;
}

.modal .modal-body .form-head .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent !important;
}

.modal .modal-body .form-head .btn-close i {
  font-size: 20px;
  color: white;
}

.service-card:hover .hover-theme-color .head3 {
  color: var(--primary-color);
}

.service-card.service-inner {
  padding: 10px !important;
  justify-content: space-between !important;
}
.service-card.service-inner img {
  height: 12rem;
}

.service-card.service-inner a {
  height: 100%;
  display: flex;
  align-items: center;
}
.service-card.service-inner a .head3 {
  margin: 0;
}
/* ------- mobile header css -------- */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-flex;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}

.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 3px;
  position: absolute;
  background: var(--primary-color);
  border-radius: 2px;
  z-index: 1;
  transition-property: transform, background, all;
  transition-duration: 0.2s;
  transition-timing-function:
    cubic-bezier(0.77, 0.2, 0.05, 1), cubic-bezier(0.77, 0.2, 0.05, 1),
    ease-in-out;
  left: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}

.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

.icons {
  display: inline-flex;
  margin-left: auto;
}

.icons a {
  transition: all 0.2s ease-in-out;
  padding: 0.2rem 0.4rem;
  color: #ccc !important;
  text-decoration: none;
}

.icons a:hover {
  color: white;
  text-shadow: 0 0 30px white;
}

.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0dcaf0;
}

.states-wraper .book-appointment .btn2 {
  width: 75%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .strip-bg .bg-strip-color {
    padding: 30px 0px;
  }

  .why-list {
    margin: 0;
  }

  .testimonial .owl-carousel .owl-dots {
    margin-top: 12px;
  }

  .faqs .accordion-item .accordion-button {
    padding: 12px;
    font-size: 15px;
  }

  .accordion-body {
    padding: 10px;
  }

  .service-details {
    padding: 10px 0px;
  }

  .contact-form .form-body .form-control,
  .contact-form .form-body .form-select {
    margin: 5px 0px;
  }

  .service-img {
    margin: 10px 0px;
  }

  .service-details .why-list {
    padding: 10px;
  }

  .bg-banner img {
    height: 289px !important;
  }

  .get-quote .form-body {
    padding: 20px;
  }

  .testimonial .para.mb-5 {
    margin-bottom: 1rem !important;
  }

  .terms-condition-sec .head2 {
    font-size: 17px !important;
  }

  .terms-condition-wrap .head3 {
    font-size: 15px !important;
  }
}

@media screen and (max-width: 415px) {
  header .logo {
    width: 225px;
  }

  .bg-banner img {
    height: 193px !important;
  }
}

@media (575.99px <=width <=991px) {
  .bg-banner .head-banner {
    font-size: 35px !important;
  }
}

@media screen and (max-width: 1430px) {
  header .logo {
    width: 246px;
  }
}

@media screen and (max-width: 1316px) {
  header .navbar-nav .menu-list {
    margin: 0 7px;
  }
  header .logo {
    width: 217px;
  }
}

@media screen and (min-width: 1024.98px) and (max-width: 1120px) {
  header .logo {
    width: 182px;
  }
}

@media screen and (max-width: 1024.98px) {
  header .logo {
    width: 158px;
  }
}

@media screen and (max-width: 1120px) {
  .navbar-collapse .right-round {
    width: 98px;
    padding: 4px 10px;
    font-size: 13px;
    margin: 0 6px;
  }

  .navbar-collapse .left-round a i {
    font-size: 12px;
  }

  header .navbar-nav .menu-list {
    margin: 0 6px;
  }
}

/*enquiry submit responese css */
.mail-response {
  font-size: 19px;
  color: var(--primary-color);
  text-align: center;
}

#modal-form .mail-response {
  color: #fff;
}

.terms-condition-wrap .head3 {
  font-size: 16px;
  color: var(--primary-color);
  margin-top: 13px;
}

.terms-condition-wrap ul li {
  margin-top: 5px;
}

.terms-condition-sec .head2 {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 25px;
}

.terms-condition-sec .head2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  left: 0;
  right: 0;
  bottom: -7px;
  margin: auto;
}

/* .google-rating span i{
  margin-right: 5px;
  color: #4889f4;
} */

.testimonial img {
  display: none !important;
}

.testimonial .para b {
  display: none !important;
}

.testimonial .para {
  padding: 0 1rem;
}

.testimonial .item .fa-quote-right {
  display: none;
}

.banner.happy-customer {
  background-image: url("../images/happy-customer.jpg");
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 280px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.happy-customer-sec .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.happy-customer-sec .image-wrapper {
  /* height: 255px; */
  /* background: #00000036; */
  position: relative;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
}

.happy-customer-sec .image-wrapper .play-icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1400049e;
}

.happy-customer-sec .image-wrapper .play-icon i {
  font-size: 20px;
  color: #fff;
}

.home-testimonial .social-links-wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0 40px 0;
  flex-wrap: wrap;
}

.home-testimonial .social-links-wrap a {
  width: 129px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondry-color);
  position: relative;
  border-radius: 20px;
}

.home-testimonial .social-links-wrap a span {
  color: #fff;
  margin-top: 20px;
}

.home-testimonial .social-links-wrap .social-icon {
  position: absolute;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  top: -19px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #c4302b;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
}

.home-testimonial .social-links-wrap .social-icon i {
  color: #fff;
  font-size: 19px;
}

.home-testimonial .social-links-wrap .social-icon.instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.home-testimonial .social-links-wrap .social-icon.facebook {
  background: #3b5998;
}

.home-testimonial .social-links-wrap .social-icon.product {
  background: #fff;
}

.home-testimonial .social-links-wrap .product img {
  width: 40px;
}

.home-testimonial .social-links-wrap .social-icon.google {
  background: #0057e7;
}

.home-testimonial .img-wrap span img {
  width: 33px;
}

.home-testimonial .img-wrap {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
  width: fit-content;
  top: 0;
  padding: 7px 14px;
  outline: 5px solid var(--bg-alt);
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}

.home-testimonial .img-wrap::after {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px 0 0 15px;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.home-testimonial .img-wrap span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin-right: 10px;
}

.home-testimonial .-owl-item .para {
  color: #fff;
  font-size: 15px;
  position: relative;
}

.home-testimonial .-owl-item .para::before {
  content: "\f10d";
  font-family: "FontAwesome";
  position: absolute;
  left: -3px;
  top: -30px;
  font-size: 18px;
}

.home-testimonial .-owl-item .para::after {
  content: "\f10e";
  font-family: "FontAwesome";
  position: absolute;
  right: -3px;
  bottom: -11px;
  font-size: 18px;
}

.home-testimonial .-owl-item .head3 {
  color: #fff;
  font-size: 17px;
}

.home-testimonial .owl-carousel .owl-item {
  /* padding: 25px 17px 10px 17px; */
  background-color: var(--primary-color);
}

.home-testimonial .user {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  margin: 15px auto;
}

.home-testimonial .user i {
  font-size: 15px;
  color: var(--primary-color);
}
.google-review {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  margin: auto 0;
  padding: 0 15px;
}

.google-review a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 8px;
}

.google-review .google-img img {
  height: 40px;
  object-fit: contain;
  width: auto;
}

.google-review .review-wrap {
  align-items: flex-start;
  gap: 14px;
}

.google-review .review-wrap .title {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.google-review .review-wrap p {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.google-review .review-wrap p i {
  color: #ffa701;
  font-size: 15px;
}

.google-review .rating-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-review .rating-wrapper .rating {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
}

.google-review .rating-wrapper .rating img {
  width: 40px;
}

@media (max-width: 425px) {
  .review-wrap {
    display: grid;
    grid-template-columns: 1fr; /* stack everything in one column */
    grid-template-rows: auto auto auto;
    gap: 0px; /* space between elements */
    align-items: center;
  }

  /* Row 1 */
  .review-wrap .title {
    grid-column: 1;
    grid-row: 1;
    font-weight: 600;
    font-size: 10px;
    margin: 0;
  }

  .review-wrap .rating {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .review-wrap p:last-of-type {
    grid-column: 1 / span 2;
    grid-row: 2;
    margin: 0;
    font-size: 10px;
    color: #444;
  }
}

/* ?? Mobile Optimization */
@media (max-width: 768px) {
  .bottom_header {
    display: none;
  }
  .google-review .review-wrap {
    gap: 0px;
  }
  .google-review {
    bottom: 10px;
    right: 10px;
    background: white;
    position: fixed;
    /* bottom: 20px; */

    /* right: 20px; */
    /* z-index: 300; */
    /* border: 4px solid black; */
    /* box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px; */

    /* padding: 6px 10px; */
    border-radius: 10px;
  }

  .google-review .google-img img {
    height: 32px;
  }

  .google-review .review-wrap .title {
    font-size: 13px;
  }

  .google-review .review-wrap p {
    font-size: 11px;
  }
}

#carouselExampleInterval {
  box-shadow:
    rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
    rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

iframe[title="Customer Reviews"] {
  top: 0;
  margin: auto;
  transform: rotate(270deg);
  left: -51px !important;
  padding: 6px 0;
}

.why-details .why-list a {
  color: #000;
}

#hometesti .-owl-item {
  /* height: 279px; */
  height: 100%;
  padding: 100px 20px 20px;
  position: relative;
}

.removalist-sec .book-appointment span {
  font-family: unset;
}

.modal-content .form-body {
  padding: 10px;
}

.modal-content .qoute-mn img {
  height: 90px !important;
  width: 98px !important;
}

.modal-content .qoute-mn {
  top: -32px !important;
}

.modal-content .quote-txt .head3 {
  font-size: 22px !important;
}

/* happy customer */

.customer-inner {
  display: flex;
  height: 100%;
  overflow: hidden;
  background: var(--secondry-color);
  border-radius: 30px;
}

.customer-inner img {
  height: 300px;
  object-fit: contain;
}

.customer-inner .happy-right {
  display: flex;
  flex-flow: column;
  gap: 10px;
  height: 100%;
  justify-content: center;
  padding-left: 70px;
  align-items: center;
  position: relative;
  z-index: 10;
}
.customer-inner .happy-right p {
  text-align: center;
  width: 60%;
  margin: 0 auto;
  color: #fff;
}

.customer-inner .happy-left {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customer-inner .happy-left:after {
  content: "";
  position: absolute;
  height: 400px;
  width: 400px;
  border: 2px solid var(--primary-color);
  transform: rotate(45deg);
  border-radius: 40px;
  z-index: -1;
  left: -100px;
  bottom: 50%;
  margin: auto;
  top: 50%;

  background: var(--primary-color);
}
.customer-inner .happy-left:before {
  content: "";
  position: absolute;
  height: 400px;
  width: 400px;
  border: 2px solid var(--primary-color);
  transform: rotate(45deg);
  border-radius: 40px;
  z-index: -2;
  left: -80px;
  bottom: 50%;
  margin: auto;
  top: 50%;
  background: #fff;
}

.customer-inner .icon-wrap {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
.customer-inner .heading {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 700;
  color: #e6dede;
  text-align: center;
}

/* additional css */

.what-serve .under {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  height: 13rem;
  /* overflow: hidden; */
}

.what-serve .under .under-img:hover:after {
  transform: translateY(-85%);
}
.what-serve .under .under-img {
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
.what-serve .under .under-img:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(to bottom, #2f2d2dcf, #2f2d2d75, #2f2d2db7);
  height: 100%;
  width: 100%;
  transition: 0.8s ease;
}
.what-serve .under img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.8s ease;
  transform-style: preserve-3d;
}
.what-serve .under:hover img {
  transform: scale(1.1);
}
.what-serve .under .icon-serve {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  outline: 10px solid #fff;
  color: #fff;

  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.what-serve .under .icon-serve i {
  transition: 0.8s ease;
  transform-style: preserve-3d;
  font-size: 20px;
}

.what-serve .under:hover .icon-serve i {
  transform: rotateY(360deg) scale(1.1);
}

.what-serve .under .under-name {
  flex-grow: 1;
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  top: 10px;
  width: 100%;
  left: 0;
  color: #fff;
  z-index: 10;
  left: 13px;
}

.service-strip {
  position: relative;
  padding: 10px;
  z-index: 1;
}
.service-strip a {
  display: flex;
  align-items: center;
  color: #fff;
  transition: 0.4s ease;
  font-size: 18px;
  text-align: center;
  justify-content: center;
}

.service-strip::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: -2;
  box-shadow: var(--common-box-shadow);
  transition: 0.4s ease;
}

.service-strip::before {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0;
  width: calc(100% - 20px);
  height: 100%;
  left: 0;
  margin: auto;
  border-right: 1px dashed #fff;
  border-left: 1px dashed #fff;
  z-index: -1;
}

.service-strip:hover::after {
  background: var(--secondry-color);
}

/* why-choose css */

.whychoose-card {
  height: 100%;
  position: relative;
  padding: 50px 30px;
  display: flex;
  flex-flow: column;
  align-items: center;
  z-index: 1;
  box-shadow: var(--common-box-shadow);
}

.whychoose-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.why-card-outer {
  margin-bottom: 130px;
}
.whychoose-card.grey::after {
  background: var(--secondry-color);
}
.whychoose-card.grey .icon {
  background: var(--secondry-color);
}

.whychoose-card .icon {
  position: absolute;
  top: -20px;
  z-index: 10;
  left: 0px;
  right: 0;
  margin: auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  width: 60px;
  border: 8px solid var(--bg-alt);
  border-radius: 50%;
}

.whychoose-card .icon i {
  font-size: 20px;
  color: #fff;
}

.whychoose-card .para {
  text-align: center;
  color: #fff;
}
.whychoose-card .why-heading {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  font-family: var(--heading-font);
}

/* steps */

.step-card {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  border-radius: 30px;
  /* box-shadow: var(--common-box-shadow); */
  padding: 40px 20px;
  background: var(--secondry-color);
  height: 100%;
}
.step-card .num {
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  width: 80px;
  border-radius: 0 30px 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondry-color);
  outline: 5px solid var(--bg-alt);
  color: #fff;
}
.step-card .icon {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  box-shadow: var(--common-box-shadow);
  background: var(--bg-alt);
}
.step-card .icon i {
  font-size: 30px;
  color: var(--secondry-color);
}
.steps-heading {
  font-size: 16px;
  display: block;
  margin-top: 18px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
.step-card .num i {
  font-size: 20px;
}

/* booking */
.booking-card {
  display: flex;
  flex-flow: column;
  gap: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.booking-card ul li {
  position: relative;
  margin-bottom: 10px;
  transition: 0.4s;
}
.booking-card ul li:hover {
  color: var(--secondry-color);
}
.booking-card p strong {
  font-size: 16px;
}
.booking-card ul li:before {
  content: "\f49e";
  font-weight: 900;
  position: relative;
  margin-right: 10px;
  font-family: "Font Awesome 6 Pro";
}
.booking-card img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.booking-card .book-body span {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
}
.booking-card .book-body {
  padding: 0 20px 20px;
  display: flex;
  flex-flow: column;
  gap: 15px;
}
.booking-card .btn2 {
  color: #fff;
  padding: 8px 25px;
  background-color: var(--primary-color);
  border-radius: 0px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.4s;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0px 0px 5px rgb(34, 34, 34);
}
.booking-card .btn2 span {
  color: #fff;
  font-size: 15px;
  text-transform: capitalize;
}
/* additional media query */

@media screen and (max-width: 1199.98px) {
  #hometesti .-owl-item {
    height: 305px !important;
  }
  .fixedside-menu {
    padding-left: 0;
  }
}

@media screen and (max-width: 1199px) and (min-width: 991px) {
  .contact-form .form-body .form-control,
  .contact-form .form-body .form-select {
    font-size: 13px;
  }
  .fixedside-menu .navigate {
    padding: 10px;
  }
}

@media (width<991px) {
  .service-card.service-inner img {
    height: auto !important;
  }
  .get-quote .detail {
    padding: 20px;
    gap: 25px;
  }
  .detail .detail-heading {
    font-size: 18px;
  }
  .what-serve .under {
    height: 10rem;
  }
  .navbar-collapse.collapse.show {
    top: 100%;
    width: 100%;
    left: 0;
    padding: 20px;
  }
  .why-card-outer {
    margin-bottom: 60px;
  }
  .top-height {
    height: 60px;
  }

  .flex-dir-col-reverse {
    flex-direction: column-reverse;
  }

  .mover-mn-ap {
    top: -112px;
    position: absolute;
    z-index: 2;
  }

  .mover-mn-ap img {
    height: 126px;
  }

  .para {
    font-size: 16px;
    font-family: var(--heading-font);
    margin: 7px 0px;
  }

  .book-appointment .btn2 {
    padding: 8px 18px;
    margin: 0px 0px 20px;
  }

  .flex-dir-col-reverse {
    flex-direction: column-reverse;
  }

  .main-heading .line {
    font-size: 16px;
    line-height: 2;
  }

  .main-heading .head2 {
    font-size: 28px;
    line-height: 1;
  }

  .main-heading .head2 span {
    font-size: 28px;
    line-height: 1;
  }

  .service-details .main-heading .head2 {
    font-size: 28px;
  }

  .service-details .main-heading .head2 span {
    font-size: 28px;
  }

  .w-75 {
    width: 100% !important;
  }

  .section-padding {
    padding: 40px 0px;
  }

  .main-heading {
    margin-bottom: 20px;
  }

  .head3 {
    font-size: 22px;
  }

  .service-card .service-btn i {
    font-size: 18px;
  }

  .service-card .service-btn .btn-text {
    font-size: 18px;
  }

  .strip-bg .heading-strip2 span a,
  .strip-bg .heading-strip2 {
    font-size: 22px;
  }

  .strip-bg .w-50 {
    width: 75% !important;
  }

  .strip-bg .heading-strip {
    font-size: 22px;
    font-family: var(--heading-font);
    font-weight: 800;
    padding-bottom: 0rem !important;
  }

  .bg-theme .mover-mn-ap {
    top: -100px;
    position: absolute;
    z-index: 2;
  }

  .bg-theme .mover-mn-ap img {
    height: 115px;
  }

  .bg-theme .para-quote {
    font-size: 21px;
    font-family: var(--heading-font);
    margin: 10px 0px;
    text-align: center;
  }

  .bg-theme .book-appointment {
    margin-left: 0px;
    align-items: center;
    margin-top: 0px !important;
    justify-content: center;
  }

  .theme-button {
    color: #fff;
    padding: 5px 17px;
    background-color: var(--primary-color);
    border-radius: 0px;
    font-weight: 600;
    font-size: 17px;
    transition: 0.4s;
    text-decoration: none;
    border-radius: 30px;
    position: fixed;
    bottom: 30px;
    z-index: 100;
    box-shadow: 0px 0px 5px rgb(34, 34, 34);
    left: 15px;
  }

  .whatsapp {
    display: inline-block;
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 100;
    border-radius: 50%;
  }

  .whatsapp img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .testimonial .main-heading {
    text-align: center;
  }

  .testimonial .w-75 {
    width: 100% !important;
  }

  .get-quote .detail .p-4 {
    padding: 0.5rem !important;
  }

  .get-quote .form-head .widget-title {
    position: relative;
    height: 62px;
  }

  .get-quote .form-head .widget-title .quote-txt .head3 {
    font-size: 1.6rem;
  }

  .qoute-mn {
    display: none;
  }

  .get-quote .px-4 {
    padding-right: 0.2rem !important;
    padding-left: 0.2rem !important;
  }

  .get-quote .form-body .form-control,
  .get-quote .form-body .form-select {
    border-radius: 0px;
    border-bottom: 3px solid #e7f1eb;
    box-shadow: none;
    margin: 10px 0px;
    padding: 4px 10px;
    font-size: 14px;
  }

  .get-quote .head3 {
    font-size: 14px;
  }

  .bg-footer .footer-head {
    padding: 10px 0px;
    border-bottom: 1px solid grey;
  }

  .bg-footer .footer-head .cont-list {
    display: flex;
    background-color: var(--primary-color);
    padding: 12px 8px;
    margin: 5px 0px;
  }

  .bg-footer .footer-body {
    padding: 40px 0px 0px;
    border-bottom: 1px solid grey;
  }

  .bg-footer .footer-end p {
    text-align: center;
  }

  .top-height {
    height: 60px;
  }

  .breadcrumb {
    margin-bottom: 0rem;
  }

  .banner .head2 {
    font-size: 22px;
  }

  .banner .breadcrumb .breadcrumb-item {
    margin: 0px 0px;
  }

  .banner {
    min-height: 150px;
  }

  .banner .breadcrumb .breadcrumb-item {
    font-size: 18px;
    font-family: var(--heading-font);
    margin: 0px 0px;
    color: white;
  }

  .service-details .why-list {
    display: flex;
    flex-direction: column;
  }

  .service-details .why-list .icon {
    margin-right: 20px;
    transition: all 0.4s ease-in-out;
    margin-bottom: 15px;
  }

  .service-details .main-heading {
    text-align: start !important;
  }

  .fixedside-menu {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    padding-left: 0px;
  }

  .fixedside-menu .contact-call .head3 {
    font-size: 16px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-weight: 800;
  }

  .fixedside-menu .contact-call {
    border: 2px solid #ebebeb;
    padding: 15px;
    margin-bottom: 40px;
    background-color: var(--secondry-color);
  }

  .contact-form form {
    padding: 20px 15px;
    width: 100%;
  }

  .contact-form form .head3 {
    text-align: center;
  }

  .ul-list.px-5 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }

  .headsub-title {
    font-size: 1.4rem;
    color: var(--secondry-color);
    font-family: var(--heading-font);
    font-weight: 700;
  }

  .terms-condition-sec .head2 {
    font-size: 21px !important;
  }

  .google-review {
    left: 0;
    right: 0;
    width: fit-content;
    bottom: 43px;
    top: auto;
    transform: none;
    width: 100%;
  }

  .bg-banner {
    height: 466px;
  }

  .testi-btn {
    display: flex;
    justify-content: center;
  }

  #hometesti .-owl-item {
    height: 100% !important;
  }
  .customer-inner img {
    height: 200px;
    object-fit: contain;
  }
  .customer-inner .happy-left:after {
    height: 300px;
    width: 300px;
  }
  .customer-inner .happy-left:before {
    height: 300px;
    width: 300px;
  }

  .customer-inner .happy-right {
    padding-left: 0;
    /* background: var(--secondry-color); */
    padding: 20px;
  }
  .customer-inner .icon-wrap {
    font-size: 20px;
  }
  .customer-inner .heading {
    font-size: 28px;
  }
  .strip-bg:after {
    width: 100%;
    z-index: -2;
  }
  .strip-bg::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--secondry-color);
    opacity: 0.6;
  }
}

@media (width<767px) {
  .detail .detail-heading {
    font-size: 16px;
  }
  .bg-banner {
    height: 346px !important;
  }
  .service-strip a {
    font-size: 16px;
  }
  .customer-inner {
    flex-flow: column;
  }
  .customer-inner .happy-left:after {
    left: 0;
    right: 0;
    top: -50px;
    bottom: 0;
    transform: none;
    height: 100%;
    width: 100%;
  }
  .customer-inner .happy-left {
    height: 200px;
  }
  .customer-inner .happy-left:before {
    left: -20px;
    right: 0;
    transform: none;
    height: 100%;
    width: calc(100% + 40px);
  }
  .customer-inner .happy-right p {
    width: 100%;
  }
  .customer-inner .happy-right {
    height: auto;
  }
}

@media screen and (max-width: 575.98px) {
  .happy-customer-sec .image-wrapper .play-icon {
    width: 40px;
    height: 40px;
  }
  .happy-customer-sec .image-wrapper .play-icon i {
    font-size: 15px;
  }
  .bg-banner {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
  }

  .bg-banner .head-banner {
    font-size: 20px;
    line-height: 22px;
  }

  .bg-banner .head-banner span {
    font-size: 30px;
    font-family: var(--heading-font);
    font-weight: 800;
    color: var(--secondry-color);
  }

  .para {
    font-size: 14px;
    font-family: var(--heading-font);
    margin: 7px 0px;
    text-align: justify;
  }

  .book-appointment .btn2 {
    font-size: 12px;
    padding: 8px 18px;
    margin: 0;
  }

  .flex-dir-col-reverse {
    flex-direction: column-reverse;
  }

  .main-heading .line {
    font-size: 13px;
    line-height: 2;
    padding: 0;
    text-align: center;
    margin-bottom: 5px;
  }

  .main-heading .line::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 25px;
    height: 2px;
    background-color: #fd7062;
    bottom: -15px;
    transform: translateY(-50%);
  }

  .main-heading .head2,
  .main-heading .head2 span {
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
  }

  .service-details .main-heading .head2,
  .service-details .main-heading .head2 span {
    font-size: 20px;
  }

  .w-75 {
    width: 100% !important;
  }

  .section-padding {
    padding: 20px 0px;
  }

  .main-heading {
    margin-bottom: 20px;
  }

  .head3 {
    font-size: 16px;
  }

  .service-card {
    padding: 14px;
  }

  .service-card .service-btn i {
    font-size: 14px;
  }

  .service-card .service-btn .btn-text {
    font-size: 14px;
  }

  .strip-bg .heading-strip2 span a,
  .strip-bg .heading-strip2 {
    font-size: 18px;
  }

  .strip-bg .w-50 {
    width: 100% !important;
    margin: 0 0 10px;
    text-align: center;
  }

  .strip-bg .heading-strip {
    font-size: 18px;
    font-family: var(--heading-font);
    font-weight: 800;
    padding-bottom: 0rem !important;
  }

  .bg-theme .mover-mn-ap {
    top: -100px;
    position: absolute;
    z-index: 2;
  }

  .bg-theme .mover-mn-ap img {
    height: 115px;
  }

  .bg-theme .para-quote {
    font-size: 17px;
    font-family: var(--heading-font);
    margin: 10px 0px;
    text-align: center;
  }

  .bg-theme .book-appointment {
    margin-left: 0px;
    align-items: center;
    margin-top: 0px !important;
    justify-content: center;
  }

  .bg-theme .book-appointment .btn3 {
    font-size: 12px;
    padding: 6px 14px;
  }

  .theme-button {
    color: #fff;
    padding: 5px 17px;
    background-color: var(--primary-color);
    border-radius: 0px;
    font-weight: 600;
    font-size: 13px;
    transition: 0.4s;
    text-decoration: none;
    border-radius: 30px;
    position: fixed;
    bottom: 30px;
    z-index: 100;
    box-shadow: 0px 0px 5px rgb(34, 34, 34);
    left: 15px;
  }

  .whatsapp {
    display: inline-block;
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 100;
    border-radius: 50%;
  }

  .whatsapp img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .testimonial .main-heading {
    text-align: center;
  }

  .testimonial .w-75 {
    width: 100% !important;
  }

  .get-quote .detail .p-4 {
    padding: 0.5rem !important;
  }

  .get-quote .form-head .widget-title {
    position: relative;
    height: 62px;
  }

  .get-quote .form-head .widget-title .quote-txt .head3 {
    font-size: 20px;
  }

  .qoute-mn {
    display: none;
  }

  .get-quote .px-4 {
    padding-right: 0.2rem !important;
    padding-left: 0.2rem !important;
  }

  .get-quote .form-body .form-control,
  .get-quote .form-body .form-select {
    border-radius: 0px;
    border-bottom: 3px solid #e7f1eb;
    box-shadow: none;
    margin: 5px 0px;
    padding: 4px 10px;
    font-size: 14px;
  }

  .get-quote .head3 {
    font-size: 14px;
  }

  .bg-footer .footer-head {
    padding: 10px 0px;
    border-bottom: 1px solid grey;
  }

  .bg-footer .footer-head .cont-list {
    display: flex;
    background-color: var(--primary-color);
    padding: 12px 8px;
    margin: 5px 0px;
  }

  .bg-footer .footer-body {
    padding: 40px 0px 0px;
    border-bottom: 1px solid grey;
  }

  .bg-footer .footer-end p {
    text-align: center;
  }

  .top-height {
    height: 60px;
  }

  .breadcrumb {
    margin-bottom: 0rem;
  }

  .banner .head2 {
    font-size: 18px;
  }

  .banner .breadcrumb .breadcrumb-item {
    margin: 0px 0px;
  }

  .banner {
    min-height: 150px;
  }

  .banner .breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-family: var(--heading-font);
    margin: 0px 0px;
    color: white;
  }

  .service-details .why-list {
    display: flex;
    flex-direction: column;
  }

  .service-details .why-list .icon {
    margin-right: 20px;
    transition: all 0.4s ease-in-out;
    margin-bottom: 15px;
  }

  .service-details .main-heading {
    text-align: start !important;
  }

  .fixedside-menu {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    padding-left: 0px;
  }

  .fixedside-menu .contact-call .head3 {
    font-size: 16px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-weight: 800;
  }

  .fixedside-menu .contact-call {
    border: 2px solid #ebebeb;
    padding: 15px;
    margin-bottom: 40px;
    background-color: var(--secondry-color);
  }

  .contact-form form {
    padding: 18px 15px;
  }

  .contact-form form .head3 {
    text-align: center;
  }

  .ul-list.px-5 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }

  .headsub-title {
    font-size: 16px;
    color: var(--secondry-color);
    font-family: var(--heading-font);
    font-weight: 700;
  }

  .testimonial .owl-carousel .owl-item .para {
    text-align: center;
  }

  .fixedside-menu .navigate {
    padding: 18px;
  }

  .testimonial .item {
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  .bg-banner {
    height: 260px !important;
  }
  .strip-bg .number-wrap {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 402px) {
  .bg-banner {
    height: 205px !important;
  }
  header {
    padding: 3px;
  }
}

.about-content {
  width: 75%;
  margin: 0px auto;
  background-color: rgb(243, 238, 238); /* your existing background */
  border: 2px solid #8b7676; /* adds a darker red border */
  border-radius: 5px; /* optional rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* soft drop shadow */
  padding: 2rem; /* spacing inside */
  transition: all 0.3s ease; /* smooth hover animation */
}

@media screen and (max-width: 991px) {
  .about-content {
    width: 100%;
    padding: 10px 0px;
  }
  .sec-content p {
    font-size: 15px;
  }
}

.service-content {
  width: 85%;
  margin: 0px auto;
  background: #f2f2f2;
  background: radial-gradient(
    circle,
    rgba(242, 242, 242, 1) 0%,
    rgba(255, 255, 240, 1) 2%,
    rgba(222, 220, 213, 1) 100%,
    rgba(194, 190, 190, 1) 10%,
    rgba(237, 221, 83, 1) 46%,
    rgba(222, 210, 166, 1) 100%,
    rgba(227, 226, 211, 1) 100%
  );
  /* border: 1px solid #645a5a; adds a darker red border */

  box-shadow: 0 4px 15px rgba(22, 19, 19, 0.3); /* soft drop shadow */
  padding: 2rem; /* spacing inside */
  transition: all 0.3s ease; /* smooth hover animation */
}

/* Optional hover effect for a modern feel */
.about-content:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.d-block.w-33 {
  width: 33.3333%;
}

.carousel-item img {
  padding: 0 5px;
  /* optional spacing */
}
.show_crousal_img {
  border-radius: 26px; /* rounds corners */
  display: block; /* ensures proper layout */
  overflow: hidden; /* optional, ensures no content overflows corners */
}

/* --this css was added in footer so we have pasted it here */

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}
/* 
.col-md-6.col-12.desktop_header .google-review {
  height: 62px;
  position: inherit;
  bottom: 0;
  margin: auto 0;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  z-index: 300;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  top: 0;
  transform: none;
  padding: 0px;
} */

::placeholder {
  font-size: 16px !important;
  color: #fff !important;
}
.mobile_header {
  display: none;
}

div#exampleModalToggle select.form-select {
  background-color: #fff;
}
.price span {
  font-size: 30px;
}
.amount span.text-danger {
  color: #fff !important;
}

@media (max-width: 767px) {
  .desktop_header {
    display: none;
  }
  .mobile_header {
    display: block;
    background-color: white;
    padding: 4px 0px 0px 0px;
  }
  .site-logo img {
    /* max-width: 300px; */
    width: 60%;
  }

  .site-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .landing-banner {
    padding: 3% 0;
  }

  header.header {
    padding-bottom: 0;
  }
  .banner-text-wrap.mt-4 {
    margin-top: 0 !important;
  }
  .landing-banner p {
    font-size: 19px;
    padding: 6px 0;
  }
  .landing-banner h1 {
    font-size: 22px;
  }

  header.header .call-outer span {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    margin: auto;
    border-radius: 50%;
    background: var(--primary-color);
    font-size: 20px;
    color: #fff;
  }
  .choose_right img {
    width: 100%;
    /* height: 400px; */
    /* margin-bottom: 5px; */
  }
  .mover_day_right {
    width: 100%;
  }
}

.description-box {
  /* background: #ddd1a7; */
  padding-bottom: 10px;
}

.truck-card {
  width: 300px;
  background-color: #dfd4b0; /* match the beige color from screenshot */
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
}

.price {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #6c6c6c;
  margin-right: 10px;
}

.new-price {
  color: #b72f3f;
  font-weight: 600;
}

.truck-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 5px 0;
}

.truck-subtitle {
  font-size: 0.95rem;
  color: #3b3b3b;
  margin-bottom: 15px;
}

.truck-info {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-bottom: 15px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
}

.info-item .icon {
  font-size: 1.2rem;
  margin-bottom: 3px;
}

.info-item .label {
  font-weight: 500;
  color: #3b3b3b;
}

.info-item .value {
  font-weight: 600;
}

.quote-btn {
  background-color: #b72f3f;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-btn:hover {
  background-color: #9d2735;
}
.truck-card {
  /* background: #fff; */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.truck-card:hover {
  transform: translateY(-8px); /* slightly lifts the card */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.truck-card .quote-btn {
  background-color: #1f425d;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.truck-card .quote-btn:hover {
  background-color: #0056b3;
  transform: scale(1.05); /* slightly enlarges button */
}

.info-item .label {
  font-size: 12px;
}
.info-item .value {
  font-size: medium;
  font-weight: bold;
}

.copyright {
  padding-bottom: 30px;
  padding: 10px;
  border-top: 1px solid;
  color: #fff;
}
footer {
  background: rgba(39, 43, 61, 0.8901960784);
}

.footer-logo {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.footer-logo img {
  width: 20%;
  margin: 0px auto;
}

.social-links {
  justify-content: center;
  margin-bottom: 15px;
}

.terms-para {
  background-color: #9b2c3c;
  color: white;
}

@media (max-width: 400px) {
  .copyright {
    font-size: 10px;
    margin-bottom: 1rem;
  }
  footer .follow-us i {
    width: 32px;
    height: 37px;
  }
}

/* .offers p {
  color: white;
  background: #9b2c3c;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0;
  animation: textBlink 1s infinite;
}

@keyframes textBlink {
  0% {
    color: white;
  }
  50% {
    color: transparent;
  }
  100% {
    color: white;
  }
} */
/* .offers {
  position: sticky;
  top: 0;
  z-index: 9999; 
} */
.offers p {
  color: white;
  background: #9b2c3c;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0;
  animation: textBlink 1.2s ease-in-out infinite;
}

@keyframes textBlink {
  0%,
  100% {
    color: white;
  }
  50% {
    color: #ffccd5;
  } /* soft blink instead of invisible */
}

.offers p .exclusive {
  display: inline-block;
  animation: moveRightLeft 6s linear infinite;
  font-weight: 600;
}

@keyframes moveRightLeft {
  0% {
    transform: translateX(100px); /* start right */
  }
  50% {
    transform: translateX(-100px); /* move left */
  }
  100% {
    transform: translateX(100px); /* start right */
  }
}
.offers p .pay {
  display: inline-block;
  font-weight: 900;
  animation: offerAnim 1s infinite;
}

@keyframes offerAnim {
  0% {
    color: #fff;
    transform: scale(0.8);
  }
  50% {
    color: yellow;
    transform: scale(1);
  }
  100% {
    color: #fff;
    transform: scale(0.9);
  }
}

/* 📱 Mobile view */
@media (max-width: 768px) {
  .offers p {
    font-size: 15px;
    animation: none; /* stop blink */
  }

  .offers p .exclusive {
    animation: none; /* stop moving */
    transform: none;
  }

  .offers p .pay {
    font-size: 18px;
  }
}

.mobile-info {
  display: flex;
  justify-content: space-evenly;
}
@media screen and (max-width: 575px) {
  .fa-phone-volume:before {
    font-size: 10px;
  }
  .footer-mobile-wraper a {
    font-size: 15px;
  }
}
