:root {
  --white: #fff;
  --black: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font-size: 16px;
  font-weight: 300;
  position: relative;
  font-family: "Rubik", sans-serif;
}

.rethink_font {
  font-family: "Rethink Sans", sans-serif;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

:focus {
  outline: none;
}

input[type="submit"],
button {
  -webkit-appearance: none;
}

select {
  word-wrap: normal;
}

::-webkit-input-placeholder {
  color: #505050;
}

:-moz-placeholder {
  color: #505050;
}

::-moz-placeholder {
  color: #505050;
}

ul {
  list-style: none;
}

.clr {
  clear: both;
  float: none;
  display: block;
}

.clr:after,
.afclr:after {
  clear: both;
  float: none;
  display: block;
  content: "";
}

.wrapper {
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  margin: 0 auto;
}

.outer_block {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--color_bright_red);
}

.ele_hiw_step_scroll_margin{scroll-margin-top: 140px;}

/* Headings */
.heading_02 h2 {
  font-size: 42px;
  line-height: 1.2em;
  font-weight: 300;
  color: #020304;
  margin-bottom: 16px;
}

.heading_03 h3 {
  font-size: 20px;
  font-weight: 500;
  color: #323232;
  line-height: 1.2em;
  padding-bottom: 12px;
}

.heading_04 h4 {
  font-size: 18px;
  font-weight: 300;
  color: #020304;
  line-height: 1.2em;
  padding-bottom: 0px;
}

.heading_05 h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3em;
  margin-bottom: 8px;
}

.heading_05.size_lg h5 {
  font-size: 24px;
}

/* Paragraphs */
.paragraph_pra p,
.heading_pra p {
  font-size: 16px;
  font-weight: 300;
  color: #505050;
  line-height: 1.6em;
  padding-bottom: 15px;
}

.paragraph_pra p:last-child,
.heading_pra p:last-child {
  padding-bottom: 0;
}
.heading_pra p {
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  color: #0970d5;
}
.site_button {
  padding: 16px 30px;
  font-weight: 300;
  min-width: 191px;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Rubik", sans-serif;
  color: #040508;
  background-color: #40daff;
  border: 1px solid #40daff;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  /* text-transform: capitalize; */
  border-radius: 5px;
}

.site_button:hover {
  background-color: var(--white);
  color: #000000;
  border-color: #000000;
}

/* header  */
.header_sec {
  padding: 10px 0px;
  background-color: #020304;
  z-index: 50;
  width: 100%;
  position: relative;
}

.header_inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header_img_sec {
  width: 25%;
}

.header_img_sec a {
  display: inline-block;
  max-width: 212px;
}

.header_img_sec a img {
  width: 100%;
}

.header_menu_sec {
  width: 58%;
}

.header_btn_sec {
  width: 17%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: end;
}

.header_mobile_menu {
  display: none;
}

/* css sticky header */

.sticky_header {
  position: fixed;
  left: 0;
  right: 0;
  top: -80px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.19);
  background-color: #020304;
}

.sticky_header.header_is_sticky {
  top: 0;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
.sticky_header_inner {
  padding: 10px 0;
}
.sticky_header_inner .header_img_sec a {
  max-width: 155px;
}

/* css end sticky header */

/* menu  */
.site-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}

.nav-menu li {
  position: relative;
  display: inline-block;
}

.nav-menu > li {
  margin: 0 13px;
}

.nav-menu > li > a {
  position: relative;
  font-weight: 300;
  /* text-transform: capitalize; */
  color: var(--white);
  font-size: 16px;
  padding: 8px 7px;
  line-height: 1;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: inline-block;
}

.nav-menu > li:hover > a {
  color: #40daff;
}

.nav-menu .sub-menu ul li,
.nav-menu .sub-menu li {
  background: #ffffff;
}

.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 180px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  z-index: 1000;
  visibility: visible;
  filter: alpha(opacity=0);
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.211764);
  transform: translateY(20px);
}

.nav-menu .sub-menu li {
  background: #ffffff;
  border-bottom: 1px solid #40daff;
  border-left: none;
  padding: 0;
  display: block;
  position: relative;
}

.nav-menu .sub-menu li a {
  text-align: left;
  font-weight: 300;
  color: var(--black);
  font-size: 15px;
  line-height: 1.2;
  display: block;
  padding: 9px 35px 9px 10px;
  transition: all 0.3s ease;
}

.nav-menu .sub-menu li:hover > a {
  background: #e7e7e7;
}

.nav-menu .sub-menu ul {
  position: absolute;
  top: 0px;
  left: 100%;
  border-top: 0;
  padding-left: 0px;
  padding-top: 0;
  filter: alpha(opacity=0);
  width: 180px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(40px, 0);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.211764);
}

.nav-menu .sub-menu li:last-child {
  border-bottom: none;
}

.nav-menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translateY(0);
}

.nav-menu .sub-menu li:hover ul {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate(0px, 0);
}

.nav-menu .sub-menu ul li:first-child {
  border-top: none;
}

.menu_expand {
  display: none;
  color: #000;
  transition: all 0.2s ease;
  text-decoration: none;
}

.menu_expand i {
  height: 2px;
  background: var(--white);
  display: block;
  width: 35px;
  border-radius: 5px;
}

.menu_expand i:nth-child(2) {
  margin: 10px 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  opacity: 0;
}

.overlay.active {
  z-index: 100;
  opacity: 1;
}

.nav-menu .sub-menu > .menu-item-has-children > a::before {
  position: absolute;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  transition: all 0.5s ease-in-out;
  transform: rotate(135deg);
}

.nav-menu > .menu-item-has-children > a {
  padding-right: 20px;
  position: relative;
}

.nav-menu > .menu-item-has-children > a::before {
  position: absolute;
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  right: 6px;
  top: 9px;
  transition: all 0.3s ease;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(225deg);
}

.nav-menu > .menu-item-has-children:hover > a::before {
  border-top: 2px solid #40daff;
  border-left: 2px solid #40daff;
}

.cross_button {
  margin-top: 20px;
  display: block;
  text-align: center;
  position: absolute;
  top: 0px;
  right: 20px;
  display: none;
}

.cross_button a {
  font-size: 22px;
  color: #242323;
  cursor: pointer;
  border: 1px solid var(--white);
  border-radius: 3px;
  padding: 4px;
  display: inline-block;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 1.2;
}

.m_close_icon:before,
.m_close_icon:after {
  display: block;
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--white);
  top: 17px;
  left: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m_close_icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.haeder_mobile_menu_bottom,
.haeder_mobile_menu_top {
  display: none;
}

.expand_plus {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 35px;
  padding: 25px 10px 2px;
  cursor: pointer;
  z-index: 100;
  display: none;
}

.expand_plus i {
  display: block;
  position: relative;
  width: 12px;
  height: 10px;
  top: -8px;
}

.expand_plus:after {
  margin-right: -2px;
  transform: translate(-50%, -50%) rotate(-135deg);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -2px;
  box-sizing: border-box;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform-origin: center;
}

.expand_plus.active:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav_menu_overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #0000008f;
  z-index: 20;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  visibility: hidden;
}

.nav_menu_overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.header_mobile_logo {
  max-width: 115px;
  width: 100%;
}

.nav-menu > li.current-menu-item > a {
  color: #40daff;
}

.nav-menu > li.current-menu-item.menu-item-has-children > a::before {
  border-color: #40daff;
}

/* banner  */
.banner_outer_sec {
  overflow: hidden;
  position: relative;
  padding: 100px 0px;
}

.banner_outer_sec::after {
  position: absolute;
  content: "";
  top: 0;
  left: -28px;
  width: 775px;
  height: 396px;
  border-radius: 0 0 382px 270px;
  background-color: #f8f8f8;
}

.banner_section {
  position: relative;
}
.banner_section,
.hero_images {
  min-height: 300px;
  height: 100%;
}
.hero_images {
  position: absolute;
  /* top: 0; */
  left: 20px;
  right: -10px;
  bottom: -30px;
  display: flex;
  justify-content: end;
  pointer-events: none;
}

.hero_img_right {
  width: 59%;
  max-width: 1060px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.hero_img_right img {
  width: 100%;
}

.banner_image_ab > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 
.banner_section::after {
  position: absolute;
  content: "";
  inset: 0;
  display: block;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(9, 4, 1, 0.32) 0%,
    rgba(0, 0, 0, 0.32) 74.35%
  );
} */

.banner_section_inner {
  position: relative;
  height: 100%;
}
.banner_content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  max-width: 480px;
}

.banner_content h1 {
  color: var(--black);
  font-weight: 300;
  font-size: 60px;
  line-height: 1.2em;
  margin-bottom: 17px;
  visibility: hidden;
}

.banner_content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.56em;
  color: #4a4a4a;
}

.banner_btn_ac {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.list_wph_ctc ul {
  margin: 0;
  padding: 0;
  padding-left: 20px;
  list-style: disc;
}

.list_wph_ctc ul li {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 5px;
}

.list_wph_ctc ul li:last-child {
  margin-bottom: 0px;
}

.list_wph ul li:last-child {
  margin-bottom: 0;
}
.site_button.ab_cta_outline {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.site_button.ab_cta_outline:hover {
  color: #040508;
  background-color: #40daff;
  border-color: #40daff;
}
/* .list_wph_ctc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  background-image: url(../images/list-tick-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
} */

.how_it_works_section {
  padding: 20px 0 40px;
  overflow: hidden;
}

.h_works_title {
  max-width: 695px;
  margin: 0 auto;
  text-align: center;
}

.h_steps_container {
  position: relative;
  padding: 60px 0;
  overflow: visible;
}
.h_steps_container::after {
  position: absolute;
  content: "";
  top: 196.234px;
  left: auto;
  right: 106%;
  width: 3000px;
  height: 1px;
  background-color: #e8e8e8;
}
.h_steps_container::before {
  position: absolute;
  content: "";
  top: 214.234px;
  left: 100%;
  transform-origin: left;
  transform: rotate(6deg);
  right: auto;
  width: 3000px;
  height: 1px;
  background-color: #e8e8e8;
}
.connecting_line {
  position: absolute;
  top: 151.854px;
  left: -10%;
  width: 112%;
  height: 225px;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.steps_item_h {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.step_col_inner {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 150px;
  animation: floatSmooth 4s ease-in-out infinite;
}
.step_col_inner .h_step_text p{transition: all 0.3s ease;}
.step_col_inner:hover .h_step_text p{color: #0970d5;text-decoration-color: #b8d6f3;}

@keyframes floatSmooth {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.step_col_inner:nth-child(1) {
  animation-delay: 0s;
}
.step_col_inner:nth-child(2) {
  animation-delay: 0.5s;
}
.step_col_inner:nth-child(3) {
  animation-delay: 1s;
}
.step_col_inner:nth-child(4) {
  animation-delay: 1.5s;
}
.step_col_inner:nth-child(5) {
  animation-delay: 2s;
}
.step_col_inner:nth-child(odd) {
  margin-top: 100px;
  animation-direction: alternate;
}

.icon_sts_wr {
  position: relative;
  margin-bottom: 20px;
}

.icon_circle_stp {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step_col_inner:hover .icon_circle_stp{
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.icon_circle_stp img {
  max-width: 42px;
  height: 40px;
  transition: all 0.3s ease;
}
.step_col_inner:hover .icon_circle_stp img{filter: invert(29%) sepia(97%) saturate(1863%) hue-rotate(201deg) brightness(91%) contrast(101%);}

.h_step_text p {
  text-align: center;
  line-height: 1.3;
  color: #020304;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.5px;
  text-decoration-color: #c6c6c6;
  /* position: relative; */
}

/* .h_step_text p::before{
  content: '';
  position: absolute;
  border: 1px solid #ccc;
  inset: 0;

} */

/* About Section */
.about_section {
  padding: 20px 0 100px;
}

.about_container {
  display: flex;
  max-width: 85%;
  flex-wrap: wrap;
  margin: 0 auto;
}

.about_content {
  width: calc(46% + 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 45px;
  min-height: 250px;
  padding: 32px 35px 41px;
  margin: 35px 0;
  margin-left: -48px;
  background-color: var(--white);
  box-shadow: -3px 4px 57px 3px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

.about_text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about_image {
  width: 54%;
  position: relative;
}

.about_image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about_list {
  margin-top: 28px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about_list li {
  position: relative;
  font-family: "Belleza", serif;
  font-size: 22px;
  color: #663130;
  line-height: 1.2em;
  padding-left: 26px;
  margin-bottom: 13px;
}
.about_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url(../images/list-tick-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.about_list li:last-child {
  margin-bottom: 0px;
}

.contact_box {
  background-color: #f6e8dc;
  border-radius: 10px;
  padding: 41px 31px 42px 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.contact_info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone_icon > span {
  width: 73px;
  padding: 5px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  background-color: #663130;
  height: 73px;
}

.phone_icon img {
  max-width: 26px;
}

.contact_details {
  display: flex;
  flex-direction: column;
}

.contact_label {
  font-family: "Belleza", serif;
  font-size: 16px;
  color: rgba(102, 49, 48, 0.44);
  line-height: 1.1em;
  margin-bottom: 8px;
}

.contact_number {
  font-size: 18px;
  color: #663130;
  line-height: 1.1em;
}

/* Testimonials Section */
.testimonials_section {
  padding: 100px 0 80px;
  background-color: #fff;
}
.testimonials_section .wrapper {
  max-width: 1340px;
}
.testimonials_container {
  display: flex;
  flex-direction: column;
}

.testimonials_header {
  max-width: 695px;
  margin: 0 auto;
  text-align: center;
}
.testimonials_slider_wrap {
  overflow: hidden;
  margin-top: 20px;
  padding-bottom: 25px;
}
.testimonials_slider_wrap .swiper {
  overflow: visible;
}
.testimonial_content {
  padding: 35px 22px;
  box-shadow: 0px 2px 22px 2px #9d9d9d40;
  display: flex;
  margin: 30px 22px;
  flex-direction: column;
  gap: 17px;
}
.quote_top_row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.quote_text_t.heading_04 h4 {
  padding-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.quote_text_t.heading_04 span {
  color: #4a4a4a;
}
.quote_icon {
  width: 40px;
}

.quote_icon img {
  width: 100%;
  height: 100%;
}
.testimonial_content .paragraph_pra p {
  color: #4a4a4a;
  line-height: 1.5;
}

.testimonial_rating {
  width: 100%;
}

.testimonial_rating img {
  width: 100%;
  max-width: 105px;
}

.testimonial_author,
.testimonial_date {
  font-size: 18px;
  line-height: 1.5em;
  color: #020304;
}
.author_info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.testimonial_date {
  color: #4a4a4a;
}

.testimonials_swiper {
  width: 100%;
  position: relative;
}

.testimonial_nav {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.testimonial_nav_prev,
.testimonial_nav_next {
  bottom: -13px;
  top: auto;
  width: 51px;
  left: 80px;
  background-color: #40daff;
  height: 51px;
  border: 1px solid #40daff;
  border-radius: 50%;
  margin: 0 auto;
}
.testimonial_nav_prev {
  right: 80px;
  left: 0;
}
.testimonial_nav_next svg,
.testimonial_nav_prev svg {
  max-width: 18px;
}

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

/* Team Section */
.team_section {
  background-color: #eaf9fd;
  padding: 100px 0;
  position: relative;
}

.team_container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 2;
  max-width: 69%;
  margin-left: auto;
}

.team_intro {
  display: flex;
  flex-direction: column;
}
.w_team_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 30px;
}

.w_team_member {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
}

.prls_wph_item_info {
  display: flex;
  flex-wrap: wrap;
}

.prls_icon_item_l {
  width: 50px;
}

.prls_ctc_item_r {
  width: calc(100% - 50px);
  padding-left: 5px;
}
.prls_ctc_item_r.paragraph_pra p {
  color: #323232;
  line-height: 1.4;
}
.pr_view_all_bt {
  margin-top: 50px;
}

.prls_wph_out {
  padding: 50px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sr_icon_info img {
  max-width: 37px;
  margin-top: -5px;
}
.why_car_images {
  position: absolute;
  top: 0;
  left: -140px;
  right: 0px;
  bottom: 0;
  display: flex;
  justify-content: left;
  pointer-events: none;
}

.why_car_left {
  width: 35%;
  display: flex;
  max-width: 650px;
  align-items: center;
  justify-content: left;
}

.why_car_left img {
  width: 100%;
}

/* FAQ Section */
.faq_section {
  padding: 100px 0;
  background-color: #fff;
}

.faq_container {
  max-width: 765px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.faq_header {
  text-align: center;
}

/* FAQ Accordion */
.faq_accordion_sec {
  width: 100%;
}

.faqs_list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.acc__card {
  border-bottom: 1px solid #d7d7d7;
}

.acc__title {
  padding: 23px 43px 22px 0px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.acc__title h4 {
  font-weight: 300;
  font-size: 22px;
  color: #222222;
  line-height: 1.4em;
  padding-right: 10px;
}

.acc__title::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 11C4.44772 11 4 10.5523 4 10C4 9.44772 4.44772 9 5 9H15C15.5523 9 16 9.44772 16 10C16 10.5523 15.5523 11 15 11H5Z' fill='%238C8C8C'/%3E%3Cpath d='M9 5C9 4.44772 9.44772 4 10 4C10.5523 4 11 4.44772 11 5V15C11 15.5523 10.5523 16 10 16C9.44772 16 9 15.5523 9 15V5Z' fill='%238C8C8C'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 23px;
  top: 25px;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.acc__title.active::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 12L18 12' stroke='%238C8C8C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.acc__panel {
  display: none;
  padding: 0px 90px 20px 0px;
}

.faq_view_all {
  text-align: center;
  margin-top: 50px;
}
.faq_view_all .site_button {
  min-width: 122px;
}
.acc__panel p {
  color: #4a4a4a;
  line-height: 1.5;
}

.customers_section {
  position: relative;
  padding: 100px 0;
  min-height: 300px;
}

.customers_img_t {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.customers_img_t > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crts_container {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  max-width: 47%;
  margin-left: auto;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 28px 30px;
  gap: 10px;
}
.crts_container .heading_02 h2 {
  font-family: "Rethink Sans", sans-serif;
  font-weight: 700;
  font-size: 46px;
}
.customers_grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.customers_info .sr_icon_info {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c4c4c4;
}

.customers_info .prls_wph_item_info {
  align-items: center;
}
.customers_info .prls_icon_item_l {
  width: 75px;
}
.customers_info .prls_ctc_item_r {
  width: calc(100% - 75px);
  padding-left: 18px;
}
.customers_info .heading_03 h3 {
  padding-bottom: 0;
  font-size: 22px;
}

/* Blog Section */
.blog_section {
  padding: 0px 0 100px;
}

.blog_container {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.blog_header {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-end;
}

.blog_header .heading_02 h2 {
  margin-bottom: 12px;
}
.blog_grid {
  display: flex;
  gap: 3.2%;
}

.blog_card {
  width: 31.2%;
  display: flex;
  flex-direction: column;
  box-shadow: -3px 4px 57px 3px rgba(0, 0, 0, 0.1);
  gap: 15px;
}

.blog_image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.blog_intro_text {
  text-align: center;
  padding: 0px 12px 20px;
}
.blog_image a {
  display: block;
  width: 100%;
  height: 100%;
}
.blog_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.blog_image a:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.blog_intro_text .paragraph_pra p {
  line-height: 1.4;
  color: #4a4a4a;
}

.blog_title {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3em;
  color: #020304;
  padding-bottom: 12px;
}

.blog_title a {
  color: inherit;
  transition: color 0.3s ease;
}

.blog_title a:hover {
  color: #40daff;
}

.blog_intro_text .site_button {
  margin-top: 30px;
}

.cta_section {
  padding: 65px 0 60px;
  background-color: #3f8fde;
}

.cta_header {
  display: flex;
  justify-content: space-between;
}
.cta_intro {
  display: flex;
  flex-direction: column;
  width: 80%;
}
.cta_intro .heading_02 h2,
.cta_intro .paragraph_pra p {
  color: var(--white);
}
.cta_intro .heading_02 h2 {
  margin-bottom: 10px;
}
.cta_h_btn .ab_cta_outline {
  background-color: var(--white);
  font-weight: 500;
  border-color: var(--white);
  font-family: "Rethink Sans", sans-serif;
}
.cta_h_btn .ab_cta_outline:hover {
  background-color: #40daff;
}

/**Footer **/
.footer__container_outer {
  background: #020304;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 100px 0 55px;
}
.footer__content::after {
  position: absolute;
  content: "";
  right: -6%;
  bottom: -45px;
  max-width: 274px;
  height: 209px;
  width: 100%;
  background-image: url(../images/car-ornament-effect-ft.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.footer__branding {
  width: 310px;
  padding: 0px 35px 0 0;
}
.footer__logo {
  margin-left: -20px;
}
.footer__logo img {
  max-width: 250px;
  width: 100%;
}

.footer_social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.footer_social a {
  display: flex;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #3f8fde;
  background-color: #3f8fde;
  justify-content: center;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.footer_social a:hover {
  border-color: #40daff;
  background-color: #40daff;
}
.footer_social a svg {
  max-width: 26px;
  height: 27px;
}
.footer__links {
  display: flex;
  flex: 1;
  position: relative;
  z-index: 2;
  justify-content: space-between;
  gap: 30px;
  width: calc(100% - 310px);
  flex-wrap: wrap;
  padding-left: 70px;
  padding-top: 24px;
}

.footer__branding .paragraph_pra {
  margin-top: 22px;
}

.footer__branding .paragraph_pra p {
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
}

.ft_our_facility {
  margin-top: 20px;
}

.footer__column {
  width: calc(28% - 20px);
}

.footer__column.footer_ctc_us {
  width: calc(43% - 18px);
}

.footer__heading {
  font-weight: 300;
  line-height: 1.4;
  color: #d0d0d0;
  font-size: 20px;
  margin-bottom: 24px;
}

.footer__column a.tel_ft_size {
  line-height: 1;
  display: inline-flex;
  margin-bottom: 12px;
  width: fit-content;
}

.footer__column a.mailto_ft_size {
  word-break: break-all;
  width: fit-content;
}
.footer__column a.mailto_ft_size,
.footer__column a.tel_ft_size {
  font-size: 22px;
  line-height: 1;
  color: #ffffff;
}
.footer__column ul {
  list-style: none;
  padding: 0;
}

.footer__column a,
.footer__column li {
  color: #e3e3e3;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.4em;
  display: inline-block;
  width: fit-content;
}

.footer__column li {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.footer__column li:last-child {
  margin-bottom: 0px;
}

.footer__column a:hover {
  color: #3f8fde;
}

.footer_ctc_us ul li > span {
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  color: #d0d0d0;
  margin-bottom: 20px;
}
.footer__column.footer_ctc_us li {
  margin-bottom: 20px;
}
.footer__column.footer_ctc_us li:last-child {
  margin-bottom: 0;
}
.footer__bottom p {
  font-family: "Rethink Sans", sans-serif;
  font-size: 16px;
  padding: 25px 0px;
  font-weight: 400;
  color: #716969;
}
.footer__container_bottom {
  border-top: 1px solid #404040;
  position: relative;
  z-index: 2;
}
.footer__bottom p a {
  color: #716969;
  transition: all 0.3s ease;
}

.footer__bottom p a:hover {
  color: #40daff;
}

.no_overflow {
  overflow: hidden;
}

/* error  */
.error_pg_sec {
  padding: 80px 0 80px;
  text-align: center;
  position: relative;
  background-color: var(--white);
}
/* .error_pg_sec::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #0000009e;
} */

.error_pg_img {
  width: 50%;
  margin: 0 auto;
}
.error_sub_inner {
  max-width: 90%;
  margin: 0 auto;
}

.error_pg_title h1 {
  font-size: 45px;
  line-height: 1em;
  color: #020304;
  font-weight: 300;
  margin-bottom: 13px;
}

.error_pg_content {
  max-width: 475px;
  margin: 0 auto;
  margin-bottom: 20px;
}
/* .error_pg_content p {
  font-weight: 500;
  color: var(--black);
} */

.error_pg_img img {
  width: 100%;
  max-width: 470px;
  margin: 0 auto;
  display: block;
}

/* common banner  */
.common_banner_sec {
  position: relative;
  text-align: center;
  padding: 100px 0 100px;
}
.common_banner_img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.common_banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center; */
  /* object-position: top; */
}
.common_banner_overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #0000009e;
}
.common_banner_innner {
  position: relative;
}
.common_banner_title {
  text-align: left;
}
.common_banner_title h1 {
  font-size: 55px;
  font-weight: 300;
  line-height: 1.2em;
  color: var(--white);
}

/* search  */
.search_part_content .page-title {
  font-weight: 300;
  color: #020304;
}
.search_part_content article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
.search_part_content h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--black);
  font-weight: 500;
  line-height: 1.2;
}
.search_part_content h2 a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline-block;
}
.search_part_content img {
  display: none;
}
.search_part_content .pagination svg path {
  fill: var(--dark_blue);
}
.search_part_content .nav-prev-text,
.search_part_content .nav-next-text {
  display: none;
}
.search_part_content .pagination .nav-links {
  display: flex;
  gap: 10px;
}
.search_part_content .pagination {
  padding: 40px 0 0 0;
}
.search_part_content .pagination .page-numbers.current {
  color: var(--dark_blue);
  font-weight: 500;
}
.search_part_content .no-results .search-form label {
  display: none;
}
.search_part_content .no-results .search-form {
  margin: 30px 0;
  display: flex;
  width: 80%;
  gap: 10px;
}
.search_part_content .no-results .search-form .search-field {
  padding: 0 10px;
  width: 100%;
}
.search_part_content .no-results .search-form input {
  outline: 0;
  border: 2px solid #d9a441;
  border-radius: 10px;
}
.search_part_content {
  padding: 50px 0 30px 0;
}
.search_part_content .no-results {
  padding: 30px 0 0 0;
}
.search_part_content .entry-footer a,
.search_part_content .entry-content a {
  color: var(--black);
}
.sub-menu-toggle {
  display: none;
}

.result_container{
  margin-top: 60px;
  margin-bottom: 30px;
}


.testimonials_wrapper{ display: flex;  flex-wrap: wrap;  margin: 0 -20px;}

.testimonials_blocks_info{     width: 50%; padding: 0 20px;   margin-bottom: 35px;}

.testimonials_wrapper .testimonial_content { margin: 0;}

.testimonials_inner{ padding: 25px;}

.testimonials_section.testimonials_section_inner{padding: 80px 0 20px}

.testimonials_section.testimonials_section_inner .wrapper {
    max-width: 1300px;
}

.form_block_inner{ display: flex; flex-wrap: wrap; margin: 0 -15px }

.form_block_details{ width: 50%; padding: 0 15px;  margin-bottom: 30px; }


.fm_input {
    display: block;
    outline: none;
    border: 0;
    border-bottom: 1px solid #b7b7b7;
    width: 100%;
    border-radius: 0;
    background: transparent;
    padding: 6px 1px;
    color: #000;
    font-size: 17px;
    font-weight: 300;
    font-family: "Rubik", sans-serif;
}
textarea.fm_input{resize: none;}
.form_block label{  font-weight: 400;
    color: #020304;
    margin-bottom: 2px;
    font-size: 18px;
    display: block;}

.form_block_full {margin-bottom: 30px; }

.form_block_details.form_block_three{    width: 33.3%;}

.form_block .form_block_upload label{    margin-bottom: 8px;}

 

.form_submit{    padding-top: 20px; text-align: center;}

.faq_section.faq_section_inner { padding: 80px 0;}
.rent_car_pg_sec {padding: 80px 0 0;  }
.page-id-8 .blog_container .site_button{
  width: fit-content;
  margin: auto;
}

.fm_select {
    appearance: none;
    background-image: url('../images/select_arrow.svg');
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: calc(100% - 12px) 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media screen and (max-width: 1550px) {
  .wrapper {
    max-width: 1280px;
  }
  .header_menu_sec {
    width: 57%;
  }
  .header_btn_sec {
    width: 18%;
  }
  .header_img_sec a {
    max-width: 205px;
  }
  .banner_outer_sec::after {
    width: 556px;
    height: 392px;
    border-radius: 0 0 382px 116px;
  }
}

@media screen and (max-width: 1280px) {

.testimonials_section.testimonials_section_inner{padding: 70px 0 10px;}

.faq_section.faq_section_inner { padding: 70px 0;}

  .nav-menu > li {
    margin: 0 11px;
  }

  .nav-menu > li > a {
    padding: 8px 5px;
  }

  .site_button {
    min-width: 158px;
    padding: 14px 20px 14px 20px;
  }

  .header_img_sec a {
    max-width: 168px;
  }

  .header_img_sec {
    width: 20%;
  }

  .header_btn_sec {
    width: 20%;
  }

  .header_menu_sec {
    width: 60%;
  }

  .site-menu {
    padding-right: 10px;
  }

  .banner_outer_sec {
    padding: 75px 0px;
  }
  .banner_outer_sec::after {
    width: 468px;
    height: 353px;
  }
  .banner_content h1 {
    font-size: 53px;
  }
  .hero_img_right {
    width: 51%;
  }

  .banner_btn_ac {
    margin-top: 30px;
  }

  .heading_02 h2 {
    font-size: 40px;
  }
  .how_it_works_section {
    padding: 10px 0 20px;
  }

  .h_steps_container {
    padding: 50px 0;
  }

  .icon_sts_wr {
    margin-bottom: 15px;
  }

  .about_container {
    max-width: 90%;
  }

  .about_text {
    gap: 7px;
  }

  .about_section {
    padding: 20px 0 80px;
  }

  .about_content {
    gap: 38px;
  }

  .site_button.ab_cta_outline {
    min-width: 138px;
  }
  .about_image {
    padding-left: 0px;
  }
  .blog_intro_text .site_button {
    margin-top: 20px;
  }
  .blog_section {
    padding: 0px 0 80px;
  }
  .team_section {
    padding: 80px 0;
  }
  .team_container {
    gap: 34px;
    max-width: 65%;
  }
  .heading_03 h3 {
    padding-bottom: 10px;
  }
  .why_car_left {
    width: 38%;
  }
  .faq_section {
    padding: 80px 0;
  }
  .faq_container {
    gap: 5px;
  }
  .faq_view_all {
    margin-top: 42px;
  }
  .crts_container {
    max-width: 55%;
  }
  .crts_container .heading_02 h2 {
    font-size: 41px;
  }
  .customers_info .prls_ctc_item_r {
    width: calc(100% - 66px);
    padding-left: 13px;
  }
  .customers_info .heading_03 h3 {
    font-size: 20px;
  }
  .customers_info .prls_icon_item_l {
    width: 66px;
  }
  .customers_section {
    padding: 80px 0;
    min-height: 250px;
  }
  .customers_info .sr_icon_info img {
    max-width: 33px;
  }
  .customers_info .sr_icon_info {
    width: 66px;
    height: 66px;
  }
  .testimonials_section {
    padding: 80px 0 70px;
  }
  .testimonials_slider_wrap {
    margin-top: 0px;
    padding-bottom: 20px;
  }
  .testimonial_content {
    padding: 30px 20px;

    margin: 27px 16px;
  }
  .quote_text_t.heading_04 h4 {
    gap: 15px;
  }
  .blog_container {
    gap: 35px;
  }
  .blog_title {
    font-size: 25px;
  }
  .blog_intro_text {
    gap: 12px;
  }
  .footer__content {
    padding: 80px 0 50px;
  }
  .footer__content::after {
    max-width: 281px;
    height: 179px;
  }
  .footer__branding {
    width: 255px;
    padding: 0px 20px 0 0;
  }

  .footer__links {
    width: calc(100% - 280px);
    padding-left: 15px;
  }

  .footer__column {
    width: calc(28.33% - 20px);
  }

  .footer__column.footer_ctc_us {
    width: calc(39% - 18px);
  }

  .footer__logo img {
    max-width: 195px;
  }

  .footer__column a.mailto_ft_size,
  .footer__column a.tel_ft_size {
    font-size: 24px;
  }

  .quote_icon {
    width: 36px;
  }

  .sticky_header_inner {
    padding: 10px 0 10px;
  }
  .sticky_header_inner .header_img_sec a {
    max-width: 134px;
  }

  .common_banner_sec {
    padding: 90px 0 90px;
  }
  .common_banner_title h1 {
    font-size: 50px;
  }
  .error_pg_sec {
    padding: 65px 0 70px;
  }
  .error_pg_img {
    width: 40%;
  }
  .error_pg_title h1 {
    font-size: 40px;
  }
  .blog_image { height: 200px;}
}
@media screen and (max-width: 1100px) {
  .nav-menu > li {
    margin: 0 8px;
  }
}
@media screen and (max-width: 992px) {
  .menu_expand {
    display: inline-block;
  }

  .nav_menu_container {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    z-index: 100;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    text-align: left;
    margin-right: 0px;
    background: #020304;
    width: 100%;
    padding: 20px 20px 45px 0;
    max-width: 600px;
  }

  .nav_menu_container.state-active {
    clear: both;
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .header_sec.active .nav_menu_container {
    padding: 0;
  }

  .header_img_sec {
    width: 50%;
    order: 1;
    text-align: left;
  }

  .header_btn_sec {
    width: 50%;
    order: 2;
  }

  .haeder_mobile_menu_top {
    display: inline-block;
    width: 100%;
    padding-left: 20px;
  }

  .expand_plus,
  .cross_button {
    display: block;
  }

  .nav-menu {
    padding: 40px 0 30px;
    width: 100%;
  }

  .site-menu {
    padding-right: 0;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-menu a {
    width: 100%;
  }

  .nav-menu .sub-menu li:hover > a {
    background: none;
    color: #40daff;
  }

  .nav-menu .sub-menu li {
    border: none;
    background: transparent;
  }

  .nav-menu .sub-menu ul li,
  .nav-menu .sub-menu li {
    background: transparent;
  }

  .nav-menu .sub-menu > .menu-item-has-children > a::before,
  .nav-menu > .menu-item-has-children > a::before,
  .nav-menu > li > a:after {
    display: none;
  }

  .nav-menu .sub-menu li a,
  .nav-menu > li > a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 1.2em;
    color: var(--white);
  }

  .nav-menu .sub-menu li ul,
  .nav-menu .sub-menu {
    padding-left: 20px;
    width: auto;
    position: relative;
    display: none;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    left: 0;
    transform: translate(0, 0);
    top: 0;
    transition: none;
  }

  .header_mobile_menu {
    display: flex;
  }

  .header_btn_sec {
    gap: 25px;
  }

  .header_menu_sec {
    width: auto;
  }

  .header_mobile_logo {
    padding-top: 0px;
  }

  .paragraph_pra p {
    padding-bottom: 12px;
  }

  .heading_02 h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .banner_content h1 {
    font-size: 48px;
    margin-bottom: 13px;
  }

  .banner_outer_sec {
    padding: 70px 0px;
  }
  .banner_btn_ac {
    margin-top: 24px;
  }
  .banner_content {
    max-width: 406px;
  }
  .hero_img_right {
    width: 47%;
  }
  .icon_circle_stp img {
    max-width: 35px;
    height: 35px;
  }
  .icon_circle_stp {
    width: 70px;
    height: 70px;
  }
  .about_section {
    padding: 0px 0 70px;
  }
  .about_container {
    max-width: 85%;
    gap: 30px;
    box-shadow: -3px 4px 57px 3px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }

  .about_image img {
    position: relative;
    height: 440px;
  }

  .about_content {
    gap: 30px;
    width: 100%;
    margin: auto;
    margin-left: auto;
    box-shadow: none;
    margin-right: auto;
    border-radius: 0px;
    min-height: unset;
    padding: 0px 25px 38px;
  }

  .about_image {
    width: 100%;
  }

  .testimonial_nav_prev,
  .testimonial_nav_next {
    width: 46px;
    left: 70px;
    height: 46px;
  }
  .testimonial_nav_prev {
    right: 70px;
    left: 0;
  }
  .testimonial_content {
    gap: 12px;
  }

  .cta_intro {
    width: 68%;
  }
  .team_container {
    gap: 20px;
    max-width: 70%;
  }
  .why_car_left {
    width: 39%;
  }
  .crts_container {
    max-width: 65%;
  }
  .crts_container .heading_02 h2 {
    font-size: 36px;
  }
  .customers_info .heading_03 h3 {
    font-size: 18px;
  }
  .customers_info .sr_icon_info img {
    max-width: 30px;
  }
  .customers_info .sr_icon_info {
    width: 59px;
    height: 59px;
  }
  .customers_section {
    padding: 70px 0;
  }
  .testimonials_section {
    padding: 70px 0 60px;
  }

  .faq_section {
    padding: 70px 0;
  }
  .blog_grid {
    flex-wrap: wrap;
    gap: 40px 4%;
    justify-content: center;
  }

  .blog_container {
    gap: 30px;
  }
  .blog_card {
    width: 48%;
  }
  .acc__title h4 {
    font-size: 20px;
  }
  
  .team_section {
    padding: 70px 0;
  }
  .blog_section {
    padding: 0px 0 70px;
  }
  /* Footer */
  .footer__content {
    flex-direction: column;
    gap: 30px;
    padding: 70px 0 30px;
  }
  .footer__column a.mailto_ft_size,
  .footer__column a.tel_ft_size {
    font-size: 22px;
  }
  .footer__content::after {
    max-width: 221px;
    height: 178px;
  }
  .footer__logo {
    margin-left: 0;
  }
  .footer_social {
    justify-content: center;
    margin-top: 35px;
  }
  .footer__logo img {
    max-width: 188px;
  }

  .footer__branding {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .footer__links {
    width: 100%;
    padding-left: 0;
    padding-top: 0px;
  }

  .sticky_header_inner .header_img_sec a {
    max-width: 115px;
  }
  .common_banner_sec {
    padding: 80px 0 80px;
  }
  .common_banner_title h1 {
    font-size: 45px;
  }
  .error_pg_img {
    width: 45%;
  }
  .error_pg_title h1 {
    font-size: 36px;
  }


  .testimonials_blocks_info {
    
    padding: 0 10px;
    margin-bottom: 25px;
}
	
.testimonials_wrapper {
  
    margin: 0 -10px;
}	
	
	
.testimonials_inner {
    padding: 20px;
}	
   .testimonials_section.testimonials_section_inner {
        padding: 70px 0 25px;
    }	
.rent_car_pg_sec {
            padding: 70px 0 0;
        }

}

@media screen and (max-width: 767px) {
  .header_btn,
  .get_header_btn {
    display: none;
  }

  .haeder_mobile_menu_bottom {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    padding-left: 20px;
  }

  .nav-menu {
    padding: 40px 0 10px;
  }

  .header_img_sec {
    width: 62%;
  }

  .header_btn_sec {
    width: 38%;
  }
  .hero_images {
    position: relative;
    left: auto;
    right: -20px;
    z-index: 3;
    bottom: auto;
    margin-top: 0px;
    padding: 0 20px;
  }
  .hero_img_right {
    width: 100%;
    max-width: 400px;
  }
  .banner_section {
    display: flex;
    flex-direction: column-reverse;
  }
  .banner_section,
  .hero_images {
    min-height: unset;
  }
  .banner_section {
    padding: 0px;
  }
  .banner_content {
    width: 100%;
    padding-top: 0px;
    max-width: 600px;
  }
  .how_it_works_section {
    padding: 0px 0 20px;
  }
  .banner_outer_sec::after {
    width: 351px;
    height: 306px;
    display: none;
  }
  .banner_content h1 {
    font-size: 41px;
  }
  .header_img_sec a img {
    max-width: 147px;
  }
  .blog_grid {
    gap: 25px 4%;
  }
  .team_container {
    max-width: 100%;
    gap: 12px;
  }
  .heading_03 h3 {
    font-size: 18px;
    padding-bottom: 7px;
  }
  .w_team_grid {
    gap: 30px 20px;
  }
  .why_car_images {
    margin-top: 30px;
    position: unset;
    left: auto;
    right: auto;
    justify-content: center;
  }

  .why_car_left {
    width: 60%;
  }
  .about_image img {
    height: 345px;
  }
  .about_container {
    max-width: 100%;
    gap: 20px;
  }
  .about_text {
    gap: 0px;
  }
  .banner_outer_sec {
    padding: 60px 0px 70px;
  }

 

  .site_button {
    min-width: 130px;
  }

  .heading_02 h2 {
    font-size: 32px;
  }
  .heading_02 h2 br {
    display: none;
  }

  .steps_item_h {
    flex-wrap: wrap;
    gap: 35px;
    max-width: 85%;
    margin: 0px auto;
    justify-content: center;
  }
  .step_col_inner {
    width: calc(50% - 17.5px);
    flex: unset;
    max-width: 170px;
  }
  .step_col_inner:nth-child(odd) {
    margin-top: 0px;
  }

  .h_steps_container::before,
  .h_steps_container::after,
  .connecting_line {
    display: none;
  }
  .h_steps_container {
    padding: 40px 0;
  }
  .about_content {
    gap: 25px;
  }

  .sr_icon_info img {
    max-width: 33px;
  }
  .prls_icon_item_l {
    width: 44px;
  }
  .prls_ctc_item_r {
    width: calc(100% - 44px);
  }
  .testimonials_container {
    max-width: 100%;
  }

  .blog_header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .team_grid {
    gap: 30px 4%;
  }

  .acc__title h4 {
    font-size: 18px;
  }
  .blog_title {
    font-size: 20px;
  }
  .crts_container {
    max-width: 100%;
  }
  .crts_container .heading_02 h2 {
    font-size: 32px;
  }
  .customers_info .sr_icon_info {
    width: 54px;
    height: 54px;
  }
  .customers_info .sr_icon_info img {
    max-width: 28px;
  }
  .customers_info .prls_icon_item_l {
    width: 55px;
  }
  .customers_info .prls_ctc_item_r {
    width: calc(100% - 55px);
  }
  .testimonial_content {
    padding: 25px 20px;
    margin: 20px 16px;
  }
  .author_info {
    gap: 5px 18px;
  }
  .cta_header {
    max-width: 85%;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }
  .cta_intro {
    width: 100%;
  }
  .cta_section {
    padding: 60px 0 60px;
  }
  .faq_container {
    gap: 0px;
  }
  /* Footer */
  .footer_ctc_us ul li > span {
    margin-bottom: 12px;
  }
  .footer__column a.mailto_ft_size,
  .footer__column a.tel_ft_size {
    font-size: 20px;
  }
  .footer__links {
    flex-wrap: wrap;
    gap: 20px 30px;
  }

  .footer__column:first-child {
    width: calc(50% - 15px);
  }

  .footer__column:last-child {
    width: calc(50% - 15px);
  }

  .footer__column.footer_ctc_us {
    width: 100%;
    order: 3;
  }

  .footer__heading {
    margin-bottom: 15px;
  }
  .footer__content::after {
    max-width: 164px;
    height: 139px;
  }
  .common_banner_title h1 {
    font-size: 40px;
  }
  .error_pg_img {
    width: 60%;
  }

.testimonial_content {box-shadow: 0px 2px 9px 2px #9d9d9d2e;}


.testimonials_blocks_info { width: 100%;}	
	
.fm_input {
     
    padding: 5px 1px;
    font-size: 16px;
     
}	
	
.form_block_details {
    width: 100%;
    
}	
	
	
.form_block_details.form_block_three {
    width: 100%;
}	
.blog_image { height: 140px;}


}

@media screen and (max-width: 479px) {


  .testimonials_section.testimonials_section_inner {
        padding: 60px 0 15px;
    }	
	
	
	.form_block label {
 
    font-size: 17px;
    
}


  .header_mobile_menu {
    width: 100%;
    justify-content: end;
  }

  .header_mobile_logo {
    max-width: 29%;
  }

  .header_img_sec {
    width: 78%;
  }

  .nav-menu {
    padding: 30px 0 10px;
  }

  .header_btn_sec {
    width: 22%;
    flex-wrap: wrap;
    gap: 15px 12px;
  }
  .banner_content h1 {
    font-size: 37px;
  }
  .banner_outer_sec {
    padding: 30px 0px 60px;
  }
  .heading_02 h2 {
    font-size: 30px;
  }
  .steps_item_h {
    max-width: 100%;
  }
  .team_section {
    padding: 60px 0;
  }
  .w_team_member {
    width: 100%;
  }
  .why_car_images {
    margin-top: 22px;
  }
  .h_steps_container {
    padding: 30px 0;
  }
  .testimonial_content {
    gap: 12px;
  }
  .faq_section {
    padding: 60px 0;
  }

  .banner_btn_ac {
    margin-top: 20px;
  }
  .about_section {
    padding: 10px 0 60px;
  }
  .about_content {
    gap: 20px;
    padding: 0px 18px 25px;
  }
  .blog_container {
    gap: 25px;
  }
  .menu_expand i:nth-child(2) {
    margin: 8px 0;
  }
  .service_card {
    width: 100%;
  }
  .about_image img {
    height: auto;
  }

  .team_member {
    width: 100%;
  }
  .blog_card {
    width: 100%;
  }
  .testimonial_nav_prev,
  .testimonial_nav_next {
    width: 42px;
    height: 42px;
  }
  .appointment_section {
    padding: 60px 0px;
  }
  .testimonial_nav_prev {
    right: 67px;
  }
  .member_image {
    height: 270px;
  }
  .acc__title {
    padding: 18px 40px 18px 0px;
  }
  .acc__panel {
    padding: 0px 60px 20px 0px;
  }
  .acc__title::after {
    right: 11px;
    top: 20px;
  }
  .faq_view_all {
    margin-top: 35px;
  }
  .crts_container {
    padding: 23px 20px;
    gap: 0px;
  }
  .customers_section {
    padding: 60px 0;
  }
  .crts_container .heading_02 h2 {
    font-size: 30px;
  }
  .customers_info .sr_icon_info {
    width: 50px;
    height: 50px;
  }
  .customers_info .prls_ctc_item_r {
    width: calc(100% - 50px);
  }
  .customers_info .prls_icon_item_l {
    width: 50px;
  }
  .testimonials_section {
    padding: 60px 0 50px;
  }
  .blog_section {
    padding: 0px 0 60px;
  }
  .quote_text_t.heading_04 h4 {
    gap: 10px;
  }
  .form_field {
    width: 100%;
  }

  /* Footer */
  .footer__content {
    padding: 60px 0 25px;
    gap: 30px;
  }

  .footer__column {
    width: 100% !important;
  }

  .footer__links {
    gap: 25px;
  }
  .footer__column a.mailto_ft_size,
  .footer__column a.tel_ft_size {
    font-size: 18px;
  }
  .footer__logo img {
    max-width: 167px;
  }
  .footer__bottom p {
    padding: 20px 0px;
  }
  .sticky_header_inner {
    padding: 5px 0 5px;
  }
  .common_banner_sec {
    padding: 65px 0 65px;
  }
  .common_banner_title h1 {
    font-size: 32px;
  }
  .error_pg_sec {
    padding: 60px 0px;
  }
  .error_pg_img {
    width: 80%;
  }
  .error_pg_title h1 {
    font-size: 32px;
  }

  .faq_section.faq_section_inner { padding: 60px 0;}
.rent_car_pg_sec {
            padding: 60px 0 0;
        }
  .blog_image { height: 200px;}
}
