* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Jost";
  src: url("../assets/fonts/Jost-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../assets/fonts/Jost-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../assets/fonts/Jost-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../assets/fonts/Jost-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../assets/fonts/Jost-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
  font-family: "Jost";
  color: #222;
  padding: 0;
  margin: 0;
}
span,
a {
  display: block;
  list-style: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  /* color:#222; */
}
ul {
  margin: 0;
}
li {
  list-style: none;
}
p {
  color: #364352;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

section {
  padding: 75px 0;
}

h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 64px;
  margin-bottom: 30px;
}

h1 span {
  display: inline;
  color: #ffc513;
}

.sub__title {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
}

.inner_sub_title {
  font-size: 26px;
  line-height: 38px;
  font-weight: 600;
}

.banner_con_text {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  color: #fff;
}

.banner_con_text span {
  font-weight: 700;
  color: #ffb703;
}

.highlight {
  color: #1500c6;
  //display: inline-block;
}

b.highlight {
  display: inline;
}

.title_highlight {
  font-size: 16px;
  font-weight: 600;
  color: #ffc513;
  letter-spacing: 0.5px;
}

/* Header */

header {
  position: relative;
  z-index: 5;
  background-color: #fff;
}

header.sticky {
  position: fixed;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  transition: ease 0.2s;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.hdr_contact .container,
.hdr__info,
.hdr__info li a,
.header__social_icon,
.main__nav,
.main_nav_menu ul,
.nav__contact .con__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main_nav_menu {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hdr_contact {
  border-bottom: 1px solid #c2c2c2;
  background-color: #1500c6;
}
.hdr__info li a {
  gap: 10px;
  padding: 15px;
  border-left: 1px solid #c2c2c2;
  border-right: 1px solid #c2c2c2;
  color: #fff;
  font-size: 16px;
}

.hdr__info li:last-child {
  padding: 15px;
  font-size: 16px;
  color: #fff;
}

/* .hdr__info li a:hover {
  color: #1500c6;
} */

/* .hdr__info li:first-child a {
  border-right: none;
} */

.header__social_icon li a {
  padding: 15px;
  border-left: 1px solid #c2c2c2;
  border-right: 1px solid #c2c2c2;
}

.header__social_icon li:not(:last-child) a {
  border-right: none;
}

.header__social_icon li i {
  font-size: 18px;
  color: #fff;
}

/* .header__social_icon li a:hover i {
  color: #1500c6;
} */

.main_nav_menu ul {
  gap: 20px;
}

.main_nav_menu ul li {
  position: relative;
}

.main_nav_menu ul li :is(a, span) {
  padding: 30px 20px;
  font-size: 17px;
  font-weight: 500;
}

.main_nav_menu ul li a:hover {
  color: #1500c6;
}

.drop_downs {
  position: relative;
}

.drop_downs::after {
  content: "\f107";
  position: absolute;
  top: 30px;
  right: 0px;
  font-family: "FontAwesome";
  font-size: 18px;
  font-weight: 500;
  color: #1500c6;
}

.con__btn {
  gap: 10px;
  background-color: #1500c6;
  padding: 8px 15px;
  border-radius: 5px;
}
.con__btn .fa-comment-alt {
  font-size: 16px;
  color: #fff;
}
.con__btn span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.main_nav_menu .nav_sub_menu {
  background: #fff;
  position: absolute;
  left: 50%;
  top: 0%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  display: block;
  width: 240px;
  border-bottom: 3px solid #1500c6;
  z-index: -1;
}

.main_nav_menu li:hover .nav_sub_menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
  transition: ease 0.2s;
}

.main_nav_menu .nav_sub_menu li a {
  padding: 10px 15px;
  border-bottom: 1px solid #e4e4e4;
  font-weight: 400;
  font-size: 17px;
}

.main_nav_menu .nav_sub_menu li:last-child a {
  border-bottom: 0;
}

.main_nav_menu .nav_sub_menu li a:hover {
  background-color: #1500c6;
  color: #fff;
}

.toggle_btn {
  display: none;
}

.banner__form {
  padding: 55px 0 75px;
}
.banner__form form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service_banner .inpu_fields,
.service_banner .form_btn {
  width: 30%;
}

.inpu_fields,
.form_btn {
  width: 22%;
}

.inpu_fields label {
  display: none;
}

.d-inline {
  display: inline;
  color: #1500c6;
}

.inpu_fields :is(input, select) {
  background-color: #fff;
  outline: none;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #1500c6;
}

.form_btn input {
  width: 100%;
  border: none;
  outline: 0;
  padding: 10px;
  background: #1500c6;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.banner_book {
  text-align: center;
  position: relative;
}

.banner_book::before {
  content: "OR";
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translate(-50%);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #ffc513;
  border-radius: 50px;
  padding: 10px;
}

.banner_book p {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.banner_book a {
  font-size: 42px;
  font-weight: 800;
  color: #ffc513;
  display: inline;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  transition: ease 0.5s;
}

.banner_book a:hover {
  transform: scale(1.2);
}

.img__container {
  text-align: center;
}

/* .img__container img {
  width: 100%;
  max-width: 100%;
} */

.service__btn {
  display: inline-block;
  padding: 5px 20px;
  border: 2px solid #1500c6;
  color: #1500c6;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  position: relative;
  transition: ease 0.4s;
  background-color: #1500c6;
}

.service__btn span {
  color: #fff;
  position: relative;
  z-index: 1;
  transition: ease 0.4s;
}

.service__btn::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: ease 0.4s;
  z-index: 0;
}

.service__btn:hover::before {
  width: 100%;
  right: 0;
}

.service__btn:hover span {
  color: #1500c6;
}

.service__btn.white {
  border: 2px solid #fff;
  color: #1500c6;
  background-color: #fff;
}

.service__btn.white span {
  color: #1500c6;
}

.service__btn.white::before {
  background-color: #1500c6;
}

.service__btn.white:hover span {
  color: #fff;
}

/* Brand Section */

.brand__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.brand__list li {
  text-align: center;
  padding: 10px;
  position: relative;
}

.brand__list li img {
  width: 150px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.brand__list li::after {
  content: attr(data-brand);
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: #fff;
  color: #222;
  transition: ease 0.3s;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
}

.brand__list li:hover::after {
  top: -35px;
  opacity: 1;
  visibility: visible;
}

.brand__list li h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 10px;
  display: none;
}

.service__brands {
  background-image: url(../assets/images/service-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 0;
}

.service__brands .overlay {
  background-color: #364352cc;
  padding: 75px 0 200px;
}

.service__brands h2 {
  color: #fff;
}

.service__brands p {
  color: #fff;
}

/* Testimonials */

.testimonial_section {
  margin-top: -130px;
}

.testimonial_section .container {
  background-color: #fff;
}
.testimonial {
  background-image: url(../assets/images/washing-machine.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 40px;
}

.testimonial p {
  color: #fff;
}

.testimonial:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1500c6d7;
}

.avathar {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #ffffff50;
}

.avathar span {
  /* background: #fff; */
  border: 0.5px solid #ffffff50;
  position: relative;
  padding: 25px;
  border-radius: 70px;
}

.avathar span:after {
  content: "";
  position: absolute;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 2px solid #fff;
  top: 15px;
  left: 15px;
  border-radius: 70px;
}

.avathar span:before {
  content: "";
  position: absolute;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border: 2px solid #ffffff50;
  top: 7.5px;
  left: 7.5px;
  border-radius: 70px;
}

.avathar .info h5 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.avathar .info p {
  font-size: 17px;
  color: #fff;
}

.testi__carousel img.star {
  width: 100px !important;
  margin-bottom: 20px;
}

.testi_contact {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.testi_contact span {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  padding: 5px 0;
  /* display: flex;
  align-items: center;
  gap: 15px; */
}

.testi_contact a {
  color: #fff;
  font-size: 44px;
  margin-top: 15px;
}

.owl-theme .owl-dots .owl-dot span {
  background-color: #ffffff50;
  position: relative;
}
/* 
.owl-theme .owl-dots .owl-dot span:after {
  content: "";
  position: absolute;
  top: -2.5px;
  left: -2.5px;
  border: 1px solid #fff;
  width: 16px;
  height: 16px;
  border-radius: 50px;
} */
.owl-theme .owl-dots .owl-dot.active span {
  background-color: #fff;
}

.contact__form {
  background-color: #fff;
  padding: 40px;
}

.contact__form form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.contact__form h4 {
  font-size: 26px;
  font-weight: 500;
}
.contact__form p {
  margin: 20px 0 30px;
}
.contact__form__field {
  display: flex;
  align-items: center;
  border: 1px solid #1500c6;
  padding: 13px 10px;
  width: 100%;
}

.contact__form__field .fa-phone {
  animation: none;
}

.contact__form__field.select_opt {
  width: 100%;
}

.contact__form__field :is(input, select) {
  border: none;
  outline: none;
  width: 100%;
  padding-left: 10px;
  font-size: 16px;
  color: #364352;
  background-color: transparent;
}

.contact__form__text {
  width: 100%;
  border: 1px solid #e8e8e8;
}

.contact__form__text textarea {
  border: none;
  outline: none;
  font-size: 16px;
  color: #364352;
  padding: 10px;
  width: 100%;
}

.submit_btn {
  background-color: #1500c6;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 7px 30px;
  border-radius: 3px;
  animation: ripple 1s ease infinite forwards;
}

/* Service location */

.service_center {
  background-image: url(../assets/images/map-bg.png);
  background-size: contain;
  background-position: center;
}
.location_title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.location_title i {
  font-size: 24px;
  color: #1500c6;
}

.location_title p {
  font-size: 24px;
  font-weight: 500;
}
.service-location p {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.service-location p a {
  /* color: #364352; */
  color: #0c0c0c;
  font-weight: 500;
}

.service-location p i,
.service-location p a:hover {
  color: #1500c6;
}

/* footer */
footer {
  padding: 50px 0;
  background-image: url(../assets/images/footer-bg.jpg);
  background-size: contain;
  background-position: center;
}

footer p {
  font-size: 17px;
  color: #fff;
  margin: 20px 0;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__social li {
  position: relative;
}

.footer__social li:after {
  content: attr(data-social);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  padding: 8px 20px;
  background-color: #1500c6;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: ease 0.3s;
}

.footer__social li:hover:after {
  top: -40px;
  visibility: visible;
  opacity: 1;
}

.footer__social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1500c6;
  border: 1px solid #1500c6;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  transition: ease 0.3s;
}

.footer__social li:hover a {
  background-color: transparent;
  color: #1500c6;
}

footer h4 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 24px;
}

.footer_list li a {
  color: #fff;
  font-size: 17px;
  list-style: none;
  padding: 8px 10px 8px 15px;
  position: relative;
  display: inline-block;
}

.footer_list li a::after {
  content: "\f105";
  position: absolute;
  font-family: "FontAwesome";
  top: 5px;
  left: 0;
  color: #1500c6;
  font-size: 16px;
}

.footer_input form {
  display: flex;
  align-items: center;
  background-color: #fff;
  margin: 15px 0;
  border-radius: 5px;
}

.footer_input input[type="email"] {
  width: calc(100% - 35px);
  outline: none;
  border: none;
  font-size: 14px;
  color: #364352;
  padding: 7px;
  border-radius: 5px 0 0 5px;
}

.footer_input input[type="submit"] {
  width: 35px;
  padding: 10px;
  height: 100%;
  border: none;
  outline: none;
  background-color: #1500c6;
  color: #fff;
  border-radius: 0 5px 5px 0;
}

.mb_view_offer {
  display: none;
}

.wp_icon {
  position: fixed;
  bottom: 0;
  right: 0;
  opacity: 0;
  z-index: -99;
  transition: ease 0.6s;
}
.wp_icon.show_wp {
  bottom: 115px;
  right: 20px;
  z-index: 100;
  opacity: 1;
}

.make_call {
  position: fixed;
  bottom: -100%;
  right: 0;
  width: 100%;
  background: #fff;
  padding: 10px 15px;
  transition: ease 0.5s;
  z-index: 99;
}
.make_call.show_ph {
  bottom: 0;
  box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.25);
}
.make_call p {
  color: #000;
  font-size: 17px;
  text-align: center;
}
.make_call a {
  display: block;
  width: 100%;
  background: #1500c6;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
}
.make_call a i {
  color: #fff;
}
.bottom_bar {
  width: 70px;
  margin: 10px auto 25px;
  height: 4px;
  border-radius: 5px;
  background: #1500c650;
  position: relative;
}
.bottom_bar.left {
  margin: 10px auto 25px 0px;
}

/* Contact Form */

.map-container {
  padding: 0px;
}

#ttm-contactform.contact__form {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

#ttm-contactform .contact__form__field {
  width: calc(50% - 15px);
}

#ttm-contactform .contact__form__field.select_opt {
  width: 100%;
}

.contact_address {
  border-bottom: 3px solid #1500c6;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.contact_address h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form_list li {
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e4e4e4;
}

.form_list li i {
  color: #1500c6;
  animation: none;
}

.social-icons.circle li {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  background-color: #1500c6;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons.circle li i {
  color: #fff;
}

.map-container h1 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

/* Media Query Starts */

@media (min-width: 576px) {
  .make_call.show_ph {
    display: none;
  }
}

@media (max-width: 1200px) {
  .testi_contact a {
    /* font-size: 20px; */
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  .banner__form {
    padding: 40px 0;
  }
  .banner__form form {
    flex-direction: column;
  }

  .inpu_fields,
  .form_btn {
    width: 60%;
  }

  .service__btn.white {
    margin-bottom: 40px;
  }

  footer .col-lg-3 {
    padding-bottom: 30px;
  }

  header .container {
    position: relative;
  }

  header .hdr_contact {
    display: none;
  }

  .main__nav {
    display: block;
  }

  .main_nav_menu {
    height: 100vh;
    position: fixed;
    width: 100%;
    left: -100%;
    background-color: #fff;
    transition: ease 0.4s;
    z-index: 1;
    display: block;
  }

  .show_nav {
    position: fixed;
  }

  .show_nav .main_nav_menu {
    left: 0;
  }

  .main_nav_menu ul {
    display: block;
    max-width: 720px;
    margin: 0 auto;
  }

  .main_nav_menu ul li :is(a, span) {
    padding: 20px;
  }

  .main_nav_menu .nav_sub_menu {
    position: unset;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
  }

  .main_nav_menu .nav_sub_menu li a {
    display: block;
    padding: 10px 20px;
  }

  .toggle_btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    gap: 7px;
    width: 35px;
  }

  .toggle_btn span {
    width: 35px;
    height: 4px;
    background-color: #364352;
    margin: 7px 0;
    transition: ease 0.3s;
    animation: grow ease 0.5s infinite alternate forwards;
  }

  .toggle_btn span.bar_2 {
    animation-delay: 0.2s;
  }

  .toggle_btn span.bar_3 {
    animation-delay: 0.3s;
  }

  .show_nav .toggle_btn span.bar_1 {
    transform: translateY(8px) rotate(45deg);
    animation: none;
  }

  .show_nav .toggle_btn span.bar_3 {
    transform: translateY(-2px) rotate(-45deg);
    animation: none;
  }

  .show_nav .toggle_btn span.bar_2 {
    display: none;
    animation: none;
  }

  .main_nav_menu ul li a {
    font-size: 18px !important;
  }

  .nav__contact {
    display: none;
  }

  .nav_sub_menu {
    overflow: hidden;
    max-height: 0;
    border: none !important;
  }
  .show_dropdown + .nav_sub_menu {
    border-bottom: 3px solid #1500c6 !important;
  }

  .contact__form {
    padding: 50px 20px;
  }

  .banner__form {
    padding: 40px 0 75px;
  }
  .drop_downs::after {
    top: 20px;
    right: 20px;
    transition: ease 0.4s;
  }
  .show_dropdown:after {
    transform: rotate(180deg);
  }
  section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  .sub__title {
    font-size: 28px;
  }
  .inner_sub_title {
    font-size: 22px;
  }
  .main_nav_menu ul {
    max-width: 540px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 32px;
    line-height: 48px;
  }
  .sub__title {
    font-size: 24px;
  }

  .banner__form form {
    gap: 25px;
  }

  .inpu_fields,
  .form_btn {
    width: 90%;
  }

  .service__brands :is(span, h2, p) {
    text-align: center;
  }

  .testi_contact span {
    flex-direction: column;
    align-items: flex-start;
  }

  .testi_contact a {
    font-size: 36px;
    white-space: nowrap;
  }

  .testimonial {
    padding: 20px;
  }

  .contact__form__field {
    width: 100%;
  }

  .brand__list li img {
    width: 110px;
  }
  /* .contact__form {
    padding: 20px;
  } */

  .mb_view_offer {
    display: block;
    background-color: #1500c6;
    padding: 10px 15px;
  }

  .mb_view_offer ul {
    display: flex;
    align-items: center;
  }

  .mb_view_offer ul li {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    padding: 0 10px;
    position: relative;
    text-align: center;
  }

  .mb_view_offer ul li:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    height: 15px;
    width: 2px;
    border-radius: 50px;
    background-color: #fff;
  }

  .mb_view_offer ul li:last-child:after {
    display: none;
  }

  .banner_book a {
    font-size: 38px;
    white-space: nowrap;
    gap: 12px;
    margin-top: 15px;
  }

  #ttm-contactform.contact__form {
    flex-direction: column;
    padding: 30px 0;
  }

  #ttm-contactform .contact__form__field {
    width: 100%;
  }
  .service-location p a {
    overflow-wrap: anywhere;
  }

  header.sticky {
    position: static !important;
  }
}

@media (max-width: 340px) {
  .testi_contact a {
    font-size: 30px;
  }
  .banner_book a {
    font-size: 36px;
  }
}
.fa-phone {
  animation: phone 0.5s ease infinite alternate forwards;
}
@keyframes phone {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes grow {
  from {
    width: 0;
  }
  top {
    width: 35px;
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0px 0px 0px 0px #1500c6;
  }
  100% {
    box-shadow: 0px 0px 0px 15px #1500c600;
  }
}

i.fa.fa-map-marker {

color:#1500c6;
margin-right: 8px;

}

p .highlight, p a {
    display: inline;
}