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

body,
html {
  overflow-x: hidden !important;
}

body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  overflow-x: hidden !important;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

/* .container {
  max-width: 1220px !important;
} */
section,
footer,
header {
  max-width: 1920px;
  margin-inline: auto;
}

/* Top Header  Start */
.top_header {
  width: 100%;
  background-color: #0569ca;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_header ul.nav li a {
  color: #fff;
  font-size: 1rem;
  text-transform: capitalize;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  padding: 20px 17.5px;
  position: relative;
  transition: all 0.5s ease;
}

.top_header ul.nav li a:hover {
  background-color: #ffffff;
  color: #0569ca;
}

.top_header ul.nav li a::before {
  content: "";
  width: 0;
  height: 2rem;
  border: 1px solid #2795ff;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top_header ul.nav li:first-child a::before {
  content: unset;
}

/* Top Header  End */

/* Banner Section Start */

.banner_sec {
  /* background: url("../../assets/images/banner.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat; */
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 10rem;
  overflow: hidden;
}

.lcp_banner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.thank_you {
  background: url("../../assets/images/banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  position: relative;
  margin-bottom: 5rem;
}

.thank_you .first_form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner_sec:not(.simple_header)::after {
  content: "";
  background: url("../../assets/images/bannerarrow.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 212px;
  position: absolute;
  bottom: 0;
  transform: translateY(50px);
  animation: animation1 3s ease infinite;
}

.banner_sec:not(.simple_header)::before {
  content: "";
  background: url("../../assets/images/bannerarrow.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 212px;
  position: absolute;
  bottom: 0;
  transform: translateY(50px);
  animation: animation2 3s ease infinite;
}

.simple_header {
  height: 100vh;
  background: url('../../assets/images/privacyPolicyBg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 2rem;
}

.simple_header h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes animation1 {
  0% {
    opacity: 1;
    transform: translatey(50px);
  }

  50% {
    opacity: 1;
    transform: translatey(75px);
  }

  100% {
    opacity: 1;
    transform: translatey(50px);
  }
}

@keyframes animation2 {
  0% {
    opacity: 0.3;
    transform: translatey(50px);
  }

  50% {
    opacity: 0.3;
    transform: translatey(55px);
  }

  100% {
    opacity: 0.3;
    transform: translatey(50px);
  }
}

/* .banner_sec .navbar-brand {
  margin-block: 1rem;
}  */
.banner_sec .navbar-brand img,
.thank_you .navbar-brand img {
  /*width: 100%;*/
  /*max-width: 140px;*/
  height: 80px;
}

.banner_sec .navbar-nav li,
.thank_you .navbar-nav li {
  /* margin-right: 38px; */
  padding: 8px 30px 8px 24px !important;
  display: flex;
  align-items: center;
}

.banner_sec .navbar-nav li a,
.thank_you .navbar-nav li a {
  font-size: 1rem;
  color: #ababab !important;
  border-radius: 22px !important;

  text-transform: capitalize;
  transition: all 0.5s ease;
  position: relative;
}

.banner_sec .navbar-nav li a:hover,
.banner_sec .navbar-nav li a.active,
.thank_you .navbar-nav li a:hover,
.thank_you .navbar-nav li a.active {
  color: #ffffff !important;
  font-weight: 600;
}

.banner_sec .navbar-nav li a::after,
.banner_sec .navbar-nav li a.active::after,
.thank_you .navbar-nav li a::after,
.thank_you .navbar-nav li a.active::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  width: 75%;
  height: 0;
  border: 1px solid #3f92e4;
  transform-origin: center;
  transform: translateX(-50%) scale(0);
  transition: all 0.5s ease;
  text-align: center;
}

.banner_sec .navbar-nav li a:hover:after,
.banner_sec .navbar-nav li a.active:hover:after,
.thank_you .navbar-nav li a:hover:after,
.thank_you .navbar-nav li a.active:hover:after {
  transform-origin: center;
  transform: translateX(-50%) scale(1);
}

.banner_sec .call_now img,
.thank_you .call_now img {
  width: auto;
  height: auto;
  margin-right: 17.7px;
}

.banner_sec .call_now span:nth-child(1),
.thank_you .call_now span:nth-child(1) {
  font-size: 18px;
  font-weight: 400;
  color: #c9c9c9;
  margin-bottom: 5px;
}

.banner_sec .call_now span:nth-child(2),
.thank_you .call_now span:nth-child(2) {
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
}

.banner_title {
  font-size: 27px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  margin-inline: 1.2rem;
}

.banner_title span {
  font-weight: bold;
  color: #3f92e4;
}

.search_box_parent {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 117px;
  z-index: 1;
}

.search_box_parent::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #67adf5;
  z-index: 0;
}

.banner_sec .bg_shadow,
.thank_you .bg_shadow {
  width: 100%;
  height: 100%;
  position: relative;
}

/* .banner_sec .bg_shadow::after,
.thank_you .bg_shadow::after {
  content: "";
  background: url("../../assets/images/shadow.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
} */

.lcp_shadow_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
}

.banner_sec .first_form .search_box_parent::after {
  content: "OR";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #007efc;
  border: 1px solid #70b7ff;
  color: #ffffff;
  font-size: 1rem;
  display: grid;
  place-items: center;
  z-index: 2;
}

.search_box_parent .search_box {
  border: 2px solid #0569ca;
  background-color: #ffffff16;
  box-shadow: -12px 14px 12px #00000033;
  backdrop-filter: blur(5px);
  padding: 11px 14px 21px 11px;
  width: 100%;
  max-width: 400px;
  height: 500px;
}

.first_form .search_box_parent .search_box {
  height: 600px;
}

.first_form #SignupForm {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.search_box h3 {
  font-size: 25px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  text-align: center;
  color: #ffffff;
  text-transform: capitalize;
}

.search_box .register {
  margin-inline: 35px;
}

.search_box .register div {
  width: 100%;
  background-color: #1d2c93;
  display: flex;
  padding: 7px 8px 6px 0;
  margin-bottom: 5px;
}

.search_box .register div input {
  background-color: #ffdd00;
  color: #a79103;
  font-size: 25px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  text-align: center;
  border: none;
  outline: none;
  width: 100%;
  text-transform: uppercase;
}

.search_box .register span {
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  display: block;
}

.global_btn {
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  box-shadow: 0 13px 8px #00000016;
  background: linear-gradient(180deg, #61b1ff, #0f68be, #288bea);
  padding: 17px 71px 18px;
  margin-inline: auto;
  transition: all 0.5s ease;
  border: none;
}

.global_btn:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.search_box_parent .search_box:nth-child(1) {
  margin-right: 8px;
}

.search_box_parent .search_box:nth-child(2) {
  margin-left: 8px;
  padding: 11px 22px 21px;
}

.search_box_parent .search_box:nth-child(2) form select,
.banner_sec .container:nth-child(3) .search_box_parent .search_box:nth-child(1) form select {
  background-color: #ffffff29;
  color: #ffffff90;
  font-size: 1rem;
  width: 100%;
  /* margin-bottom: 11px; */
  padding: 10px 17px;
  border: none;
  outline: none;
}

.search_box_parent .search_box:nth-child(2) form select option,
.banner_sec .container:nth-child(3) .search_box_parent .search_box:nth-child(1) form select option {
  color: #000000;
}

.search_box_parent .search_box:nth-child(2) form input,
.banner_sec .container:nth-child(3) .search_box_parent .search_box:nth-child(1) form input {
  background-color: #ffffff29;
  color: #ffffff90;
  font-size: 1rem;
  width: 100%;
  /* margin-bottom: 11px; */
  padding: 10px 17px;
  border: none;
  outline: none;
}

.search_box_parent .search_box:nth-child(2) form input,
.banner_sec .container:nth-child(3) .search_box_parent .search_box:nth-child(1) form input {
  background-color: #ffffff29;
  color: #ffffff90;
  font-size: 1rem;
  width: 100%;
  /* margin-bottom: 11px; */
  padding: 10px 17px;
  border: none;
  outline: none;
}

#SignupForm div:not(#SignupForm div div) {
  margin-bottom: 10px;
}

.search_box_parent .search_box:nth-child(2) form input::placeholder,
.banner_sec .container:nth-child(3) .search_box_parent .search_box:nth-child(1) form input::placeholder {
  color: #ffffff90;
}

.search_box_parent .search_box:nth-child(2) form .input_parent div:nth-child(1) {
  margin-right: 5px;
}

.search_box_parent .search_box:nth-child(2) form .input_parent div:nth-child(2) {
  margin-left: 5px;
}

.banner_sec .container:nth-child(3) .search_box_parent .search_box:nth-child(2) ul li {
  text-align: left;
  color: #fff;
  font-size: 18px;
  line-height: 40px;
  position: relative;
}

.banner_sec .container:nth-child(3) .search_box_parent .search_box:nth-child(2) ul li::before {
  content: "";
  background: url("../../assets/images/sprite.png") no-repeat -47px -2px;
  width: 28px;
  height: 20px;
  position: absolute;
  left: -35px;
  top: 6px;
}

/* Banner Section End */

/* Briefly Demo Start */
.briefly_demo {
  margin-bottom: 124px;
}

.briefly_demo div.child {
  background-color: #eff4f7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-block: 45px;
}

.briefly_demo div.child img {
  margin-bottom: 30px;
}

/* Briefly Demo End */

/* One Step Solution Start */
.One_step_solution {
  margin-bottom: 74px;
}

.One_step_solution .row:nth-child(1) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.One_step_solution p {
  font-size: 20px;
  color: #000000;
}

.global_head {
  font-size: 45px;
  color: #000000;
  font-weight: 500;
  position: relative;
}

.One_step_solution .global_head {
  margin-right: 8rem;
}

.One_step_solution .global_head::after {
  content: "";
  background: #0468c9;
  width: 100%;
  max-width: 329px;
  height: 8px;
  position: absolute;
  bottom: 25px;
  right: -16rem;
}

.One_step_solution .row:nth-child(1) {
  margin-bottom: 30px;
}

.One_step_solution .row:nth-child(2) .col-md-4:nth-child(3) div img {
  margin-right: 10px;
}

.One_step_solution .row:nth-child(2) .col-md-4:nth-child(3) div span {
  font-size: 25px;
  color: #000000;
  font-weight: 500;
}

.hover_effect {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: opacity 0.5s ease-in-out;
}

.hover_effect img {
  z-index: 0;
  width: 100%;
  height: 100%;
}

.Overlay_div {
  width: 100%;
  height: 100%;
  background-color: #0468c962;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
}

/* One Step Solution End */

/* Logo Section Start */
.logo_sec {
  background: url("../../assets/images/logo_bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  padding: 86px 0 60px 0;
  margin-bottom: 106px;
}

.logo_sec .global_head {
  text-align: center;
  margin-bottom: 1rem;
}

.logo_sec p {
  text-align: center;
  font-size: 25px;
  color: #000000;
  position: relative;
}

.logo_sec p::after {
  content: "";
  background: #0468c9;
  width: 100%;
  max-width: 329px;
  height: 8px;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.logo_sec .row:nth-child(1) {
  margin-bottom: 72px;
}

.logo_parent {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.logo_parent:nth-child(2) div {
  justify-content: center;
  margin-right: 1rem;
}

.logo_parent:nth-child(2) {
  justify-content: center;
}

.logo_parent div {
  margin: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 138px;
  height: 138px;
  margin-bottom: 21px;
  background-color: #ffffff;
  transition: all 0.5s ease;
}

.logo_parent div:hover {
  transform: scale(1.1);
}

.logo_parent div img {
  width: auto;
  height: auto;
}

/* Logo Section End */

/* Reconditioning Services Start */
.reconditioning_services {
  margin-bottom: 124px;
}

.reconditioning_services .global_head {
  text-align: center;
  margin-bottom: 118px;
}

.reconditioning_services .global_head::after {
  content: "";
  background: #0468c9;
  width: 100%;
  max-width: 329px;
  height: 8px;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.reconditioning_services div.card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.reconditioning_services ul {
  padding: 25px 26px 37px;
  background-color: #e6ecef !important;
}

.reconditioning_services ul a {
  background-color: #e6ecef !important;
  font-size: 15px;
  color: #000000;
  font-weight: 500;
  border-color: #8a8a8a !important;
  padding: 10px 0 !important;
  transition: all 0.5s ease;
}

.reconditioning_services ul a:hover {
  color: #0468c9;
  opacity: 1;
}

/* Reconditioning Services End */

/* Choose Us Section Start */
.choose_us_sec {
  background-color: #eff4f7;
  padding-block: 100px;
  margin-bottom: 122px;
}

.choose_us_sec .global_head {
  text-align: center;
  margin-bottom: 134px;
}

.choose_us_sec .global_head::after {
  content: "";
  background: #0468c9;
  width: 100%;
  max-width: 329px;
  height: 8px;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.choose_us_sec .service {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s ease-in-out;
}

.choose_us_sec .service::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #0468c9;
  transform-origin: center;
  transform: scale(0);
  transition: 0.6s ease-in-out;
}

.choose_us_sec .service:hover:after {
  transform-origin: center;
  transform: scale(1);
}

.choose_us_sec .service:hover {
  transform: scale(1.1);
}

.choose_us_sec .service .service_child {
  text-align: right;
  padding: 34px 30px;
  background-color: #ffffff;
}

.choose_us_sec .service .service_content {
  margin-right: 29px;
}

.choose_us_sec .row:nth-child(2) .col-xl-4:nth-child(3) .service::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #0468c9;
  transform-origin: center;
  transform: scale(0);
  transition: 0.6s ease-in-out;
}

.choose_us_sec .row:nth-child(2) .col-xl-4:nth-child(3) .service:hover:after {
  transform-origin: center;
  transform: scale(1);
}

.choose_us_sec .row:nth-child(2) .col-xl-4:nth-child(3) .service .service_child {
  text-align: left;
}

.choose_us_sec .row:nth-child(2) .col-xl-4:nth-child(3) .service .service_content {
  margin-left: 29px;
  margin-right: 0;
}

.choose_us_sec .service .service_content p {
  margin-bottom: 0.5rem;
  font-size: 25px;
  color: #000000;
  font-weight: 500;
}

.choose_us_sec .service .service_content span {
  margin-bottom: 0.5rem;
  font-size: 14px;
  color: #000000;
}

img.car_img {
  animation: up-down linear 4s infinite;
}

@keyframes up-down {
  0% {
    transform: translate(1px, -30px);
  }

  24% {
    transform: translate(1px, 0);
  }

  50% {
    transform: translate(1px, 12px);
  }

  74% {
    transform: translate(1px, 22px);
  }

  100% {
    transform: translate(1px, -30px);
  }
}

#reg-error,
#reg-error-go {
  color: #e74c3c;
  font-size: 14px;
}

.registration_form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: left;
}

.registration_form div {
  margin-bottom: 10px;
}

.registration_input {
  background-color: #ffffff29;
  color: #ffffff90;
  font-size: 1rem;
  width: 100%;
  padding: 10px 17px;
  border: none;
  outline: none;
  margin-bottom: 0 !important;
}

.registration_input::placeholder {
  color: #ffffff90;
}

.second_form #modalRegistration {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: left;
}

.second_form #modalRegistration div {
  margin-bottom: 10px;
}

.second_form #modalRegistration input {
  margin-bottom: 0 !important;
}

.error {
  color: #e74c3c;
  font-size: 12px;
}

/* Choose Us Section End */

/* Step Section Start */
.step_sec {
  margin-bottom: 269px;
}

.step_sec .global_head {
  margin-bottom: 65px;
  text-align: center;
}

.step_sec .global_head::after {
  content: "";
  background: #0468c9;
  width: 100%;
  max-width: 329px;
  height: 8px;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.step_sec .sub_title {
  text-align: center;
  font-size: 20px;
  color: #000000;
  margin-bottom: 65px;
}

.step_sec .step_child {
  width: 200px;
  height: 200px;
  background-color: #0468c9;
}

.step_sec .step_child img {
  width: 100%;
  height: 100%;
}

.step_sec .row:nth-child(2) .col-xl-3:first-child .step_child {
  padding: 42px 38px;
}

.step_sec .row:nth-child(2) .col-xl-6 .step_child {
  padding: 35px;
}

.step_sec .row:nth-child(2) .col-xl-3:last-child .step_child {
  padding: 38px;
}

.step_child_parent {
  position: relative;
  margin-bottom: 37px;
}

.step_sec .row:nth-child(2) .col-xl-6 .step_child_parent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: url("../../assets/images/svgs/arrow_up.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 137px;
  height: 59px;
}

.step_sec .row:nth-child(2) .col-xl-6 .step_child_parent::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background: url("../../assets/images/svgs/arrow-down.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 137px;
  height: 59px;
}

.step_sec .step_content {
  text-align: center;
}

.step_sec .step_content p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
}

.step_sec .step_content span {
  font-size: 0.8rem;
  color: #000000;
}

.p-b-90 {
  padding-bottom: 90px;
}

/* Step Section End */

/* Footer Start */
footer {
  position: relative;
}

footer::after {
  content: "";
  background: url("../../assets/images/car2.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  width: 100%;
  max-width: 61.25rem;
  height: 44rem;
  position: absolute;
  right: 2.2rem;
  top: -11%;
}

footer .footer_top {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../../assets/images/footer_top.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  padding-block: 31.5px;
}

.footer_top .register {
  width: 100%;
  max-width: 403px;
}

.footer_top .register div {
  width: 100%;
  background-color: #1d2c93;
  display: flex;
  padding: 7px 8px 6px 0;
  margin-bottom: 5px;
}

.footer_top .register div input {
  background-color: #ffdd00;
  color: #a79103;
  font-size: 25px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  text-align: center;
  border: none;
  outline: none;
  width: 100%;
}

.footer_top .register span {
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  display: inline-block;
  width: 100%;
}

.footer_top .register div button {
  font-size: 1rem;
  color: #ffffff;
  background-color: #1d2c93;
  border: none;
  outline: none;
  font-weight: 600;
  padding: 10px;
}

.footer_top .phone_div {
  margin-bottom: 32px;
}

.footer_top .phone_div span {
  margin-bottom: 0;
  font-size: 19px;
  color: #ffffff;
}

.footer_top .phone_div img {
  margin-right: 32px;
}

.footer_top .email_div {
  margin-bottom: 29px;
}

.footer_top .phone_div p,
.footer_top .email_div span {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.footer_top .email_div img {
  margin-right: 29px;
}

.footer_top .h_line {
  width: 100%;
  border: 1px solid #94caff;
  margin-bottom: 29px;
}

footer .footer_bottom {
  background: url("../../assets/images/footer_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding-top: 154px;
  padding-bottom: 131px;
}

footer .footer_bottom img.logo {
  /*width: 100%;*/
  /*max-width: 140px;*/
  height: 90px;
  margin-bottom: 39px;
}

footer .footer_bottom h3 {
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 18px;
}

a.contact_btn {
  font-size: 18px;
  color: #ffffff;
  background-color: #0468c9;
  padding: 17px 46px 18px;
  box-shadow: 0 13px 8px rgba(0, 0, 0, 0.16);
  display: inline-block;
  transition: all 0.5s ease;
}

a.contact_btn:hover {
  transform: scale(1.1);
}

/* .footer_bottom .nav li.nav-item{
  margin-bottom: 1rem !important;
} */
.footer_bottom .nav a.nav-link {
  padding-inline: 0 !important;
  color: #ffffff !important;
  font-size: 1rem;
  transition: color 0.5s ease;
}

.footer_bottom .nav a.nav-link:hover {
  color: #2485e3 !important;
}

.footer_bottom .nav li.nav-item:nth-child(1) a.nav-link {
  color: #2485e3 !important;
  font-weight: 600;
}

.footer_bottom .address p {
  color: #2485e3;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer_bottom .address span {
  color: #ffffff;
  font-size: 1rem;
}

.footer_bottom .address .social_icons {
  margin-top: 20px;
  margin-bottom: 14px;
}

.footer_bottom .address .social_icons div a {
  background-color: #0468c9;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  display: grid;
  place-items: center;
  transition: all 0.5s ease;
}

.footer_bottom .address .social_icons div a i {
  color: #001427;
  font-size: 1.5rem;
  font-weight: 600;
}

.footer_bottom .address .social_icons div a:hover {
  background-color: #ffffff;
}

/* Footer End */

/* Logo Slider Start */
.logo_slider {
  display: none !important;
}

.logo_slider div a {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px;
  width: 138px;
  height: 138px;
  margin-inline: auto;
}

.slick-dots li button:before {
  font-size: 0.5rem !important;
}

.slick-dots li.slick-active button:before {
  color: #0468c9 !important;
  font-size: 1rem !important;
}

.slick-dots {
  bottom: -50px !important;
}

.slick-dots li {
  width: 1rem !important;
  height: 1rem !important;
}

/* Logo Slider End */

/* Head Slider Start */
/* .head_slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-inline: 3rem;
} */
.head_slider_parent {
  width: 100%;
  background-color: #0569ca;
  display: none;
  justify-content: center;
  align-items: center;
}

.head_slider {
  margin-bottom: 0 !important;
  padding: 1rem 0;
}

.head_slider div {
  text-align: center;
}

.head_slider a {
  color: #fff;
  font-size: 1rem;
  padding: 0;
  text-transform: capitalize;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  text-align: center;
}

/* Head Slider End */

/* About Page Start */
.global_title {
  font-size: 51px;
  font-weight: 700;
  color: #F5F5F5;
  text-transform: uppercase;
}

.global_title span {
  color: #0468C9;
}

.inner_pages_banner {
  padding-bottom: 70px;
}

.inner_pages_banner img {
  width: 100%;
  max-width: 537px;
  height: 100%;
  object-fit: cover;
}

.engine_solution_sec .global_subtitle {
  text-transform: capitalize;
}

.engine_solution_sec,
.reconditioned_engine_sec,
.location_sec {
  margin-bottom: 150px;
}

.engine_solution_sec img {
  width: 100%;
  max-width: 27rem;
  height: 100%;
  object-fit: fill;
  border-radius: 1rem;
}

.global_subtitle {
  font-size: 45px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 49px;
}

.global_content {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 32px;
}

/* About Page End */

/* Cost Page Start */
.reconditioned_engine_sec {
  padding-block: 135px;
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('../images/cost-body.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}

.reconditioned_engine_sec::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #0468c9ed;
  z-index: -1;
}

.reconditioned_engine_sec .global_subtitle,
.reconditioned_engine_sec .global_content {
  color: #ffffff;
  z-index: 2;
}

.global_content_parent {
  padding-inline: 2rem;
  border-left: 1px solid #ffffff;
}

.reconditioned_engine_sec .col-12:nth-child(2) div:first-child {
  margin-bottom: 75px;
}

/* Cost Page End */

/* Contact Us Page Start */
.info_div {
  padding-inline: 1.5rem;
  border-left: 6px solid #000000;
}

.info_div h5 {
  font-size: 29px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
}

.info_div p {
  font-size: 23px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0;
}

.appointment_btn {
  font-size: 20px;
  color: #FFFFFF;
  padding: 21px;
  background-color: #0468C9;
  border: 0;
  outline: 0;
  transition: all .3s ease;
}

.appointment_btn:hover {
  transform: scale(.9);
}

.appointment_btn img {
  margin-left: 12px;
  width: 22px;
  height: 22px;
  object-fit: cover;
}

.location_sec {
  padding-block: 52px;
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('../images/contact-body.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}

.location_sec::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #000000bd;
  z-index: -1;
}

.contact_form {
  position: relative;
  z-index: 9;
  padding: 45px 60px;
  background-color: #ffffff16;
  border: 2px solid #0569CA;
  box-shadow: -12px 14px 12px #00000033;
}

.contact_form::after {
  content: "";
  background: url('../images/shadow.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.contact_form .global_subtitle {
  margin-bottom: 59px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.location_sec .global_btn {
  width: auto;
}

.location_sec input:not(.iti__search-input),
.location_sec textarea {
  background-color: #ffffff29;
  color: #ffffff90;
  font-size: 1rem;
  width: 100%;
  padding: 10px 17px;
  border: none;
  outline: none;
}

.location_sec input::placeholder,
.location_sec textarea::placeholder {
  color: #ffffff90;
}

.iti__arrow {
  border-top-color: #ffffff !important;
}

.iti {
  width: 100%;
}

/*label#phone-error {*/
/*  position: absolute;*/
/*  display: block;*/
/*  top:110%;*/
/*}*/
/* Contact Us Page End */
.privacy_policy {
  margin-bottom: 2rem;
}

.privacy_policy .global_subtitle2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: .5rem;
  line-height: 2rem;
}

.privacy_policy .global_content {
  font-size: 1rem;
  line-height: 1.25rem;
}

.privacy_policy li {
  font-size: 1rem;
  line-height: 1.25rem;
  margin-bottom: .5rem;
  list-style-type: disc;
}

.privacy_policy ul,
.privacy_policy .global_content {
  margin-bottom: 1.5rem;
}

.privacy_policy a,
.privacy_policy span {
  color: #000000;
  font-weight: 600;
}

.privacy_policy strong,
.engine_solution_sec li {
  color: #000000;
}

.engine_solution_sec li {
  list-style-type: disc;
}

.reconditioning_services ul h4 {
  font-size: 1.175rem;
  margin-bottom: 1rem;
  color: #000000;
}

.no_banner {
  background-image: none;
  background-color: #000000;
  margin-bottom: 3rem;
}

.no_banner::before,
.no_banner::after {
  content: unset !important;
}

.rebuilt_engines_sec .global_title {
  color: #000000;
}

/* Faqs Section */
ul.accordion-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  list-style: none;
}

ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 1rem;
  margin: 0 auto .5rem auto;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}

ul.accordion-list li.active h3 {
  color: #0c0c41;
}

ul.accordion-list li h3 {
  font-weight: 700;
  position: relative;
  display: block;
  width: calc(100% - 1rem);
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
}

ul.accordion-list li h3:after {
  content: "\f067";
  /* FA Plus icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  /* Needed for solid icons */
  position: absolute;
  right: -1rem;
  top: 0;
  color: #0c0c41;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
}


ul.accordion-list li.active h3:after {
  transform: rotate(45deg);
}

ul.accordion-list li div.answer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

ul.accordion-list li div.answer p {
  position: relative;
  display: block;
  font-weight: 300;
  padding: 10px 0 0 0;
  cursor: pointer;
  line-height: 150%;
  margin: 0 0 .75rem 0;
  font-size: 14px;
}

.privacy_policy ol li {
  list-style-type: decimal
}

/* Media Queries Start */
@media (max-width: 1600px) {
  footer::after {
    max-width: 40.25rem;
    height: 30rem;
    right: 0;
    top: -3%;
  }

  .first_form .search_box_parent .search_box {
    height: 580px;
  }

  .search_box_parent {
    margin-bottom: 160px;
  }
}

@media (max-width: 1400px) {
  .search_box h3 {
    font-size: 18px;
  }

  footer .footer_top {
    background-size: cover;
  }

  .first_form .search_box_parent .search_box {
    height: 520px;
  }

  #SignupForm div:not(#SignupForm div div) {
    margin-bottom: 5px;
  }
}

@media (max-width: 1199px) {
  .info_div h5 {
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .info_div p {
    font-size: 1rem;
  }

  .appointment_btn {
    font-size: 1rem;
  }

  .appointment_btn img {
    margin-left: 8px;
    width: 18px;
    height: 18px;
  }

  .thank_you {
    height: 80vh;
    margin-bottom: 1rem;
  }

  .banner_sec .navbar-light .navbar-toggler,
  .thank_you .navbar-light .navbar-toggler {
    border: 1px solid #ffffff;
    background: #0569ca;
    outline: none;
  }

  .banner_sec .navbar-collapse.collapse {
    background-color: #ffffff !important;
    border-radius: 10px;
    padding: 10px;
  }

  .thank_you .navbar-collapse.collapse {
    background-color: #ffffff !important;
    border-radius: 10px;
    padding: 10px;
    z-index: 9;
  }

  .banner_sec .navbar-nav li a,
  .banner_sec .navbar-nav li a:hover,
  .banner_sec .navbar-nav li a.active,
  .thank_you .navbar-nav li a,
  .thank_you .navbar-nav li a:hover,
  .thank_you .navbar-nav li a.active {
    color: #000000 !important;
  }

  .search_box_parent .search_box:nth-child(2) form select,
  .search_box_parent .search_box:nth-child(2) form input,
  .banner_sec .container:nth-child(3) .search_box_parent .search_box:nth-child(1) form select,
  .banner_sec .container:nth-child(3) .search_box_parent .search_box:nth-child(1) form input {
    /* margin-bottom: 0.5rem; */
    padding: 0.5rem;
  }

  .global_btn {
    font-size: 1rem;
    padding: 1rem 3rem 1rem;
  }

  .search_box_parent .search_box {
    height: 430px;
  }

  .banner_sec::after,
  .banner_sec::before {
    height: 100%;
    background-position: bottom;
    transform: translateY(30px);
    z-index: -1;
  }

  @keyframes animation1 {
    0% {
      opacity: 1;
      transform: translatey(30px);
    }

    50% {
      opacity: 1;
      transform: translatey(55px);
    }

    100% {
      opacity: 1;
      transform: translatey(30px);
    }
  }

  @keyframes animation2 {
    0% {
      opacity: 0.3;
      transform: translatey(30px);
    }

    50% {
      opacity: 0.3;
      transform: translatey(35px);
    }

    100% {
      opacity: 0.3;
      transform: translatey(30px);
    }
  }

  .search_box_parent {
    margin-bottom: 12rem;
  }

  .One_step_solution .global_head::after {
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .One_step_solution .global_head {
    margin-right: 0;
    text-align: center;
    margin-bottom: 2rem;
  }

  .One_step_solution .row:nth-child(2) .col-md-4:nth-child(3) div span {
    font-size: 20px;
  }

  .step_sec .row:nth-child(2) .col-xl-6 .step_child_parent::before,
  .step_sec .row:nth-child(2) .col-xl-6 .step_child_parent::after {
    content: unset;
  }

  footer::after {
    content: unset;
  }
}

@media (max-width: 1024px) {
  .logo_parent {
    display: none;
  }

  .logo_slider {
    display: block !important;
  }

  .step_sec {
    margin-bottom: 5rem;
  }

  .head_slider_parent {
    display: flex;
  }

  .top_header {
    display: none;
  }

  footer .footer_top {
    padding-inline: 1rem;
  }

  .footer_top .phone_div p,
  .footer_top .email_div span {
    font-size: 20px;
  }

  .footer_top .phone_div span {
    font-size: 16px;
  }

  .footer_top .phone_div img,
  .footer_top .email_div img {
    margin-right: 20px;
  }

  .global_title {
    font-size: 40px;
  }

  .global_content {
    font-size: 1rem;
    line-height: 25px;
  }
}

@media (max-width: 992px) {
  .One_step_solution .global_head::after {
    height: 3px;
  }

  .One_step_solution .row:nth-child(2) .col-md-4:nth-child(3) div span {
    font-size: 1rem;
  }

  .One_step_solution .global_head {
    font-size: 28px;
  }

  .One_step_solution .row:nth-child(1) img {
    object-fit: fill;
  }

  .reconditioning_services ul {
    padding: 10px;
  }

  .choose_us_sec .service .service_child {
    padding: 1rem;
  }

  footer .footer_bottom {
    padding-block: 5rem;
  }

  .reconditioned_engine_sec .col-12:nth-child(2) div:first-child {
    margin-bottom: 0;
  }

  .reconditioned_engine_sec {
    padding-block: 60px;
  }

  .global_subtitle {
    font-size: 30px;
    line-height: 39px;
  }

  .engine_solution_sec,
  .reconditioned_engine_sec,
  .location_sec {
    margin-bottom: 2rem;
  }

}

@media (max-width: 991px) {
  .engine_img {
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .search_box_parent .search_box {
    height: 455px;
  }

  .thank_you {
    height: 50vh;
  }

  .banner_sec .call_now img,
  .thank_you .call_now img {
    width: 3rem;
    height: 3rem;
    margin-right: 0.5rem;
  }

  .banner_sec .call_now span:nth-child(1),
  .thank_you .call_now span:nth-child(1) {
    font-size: 14px;
    margin-bottom: 0;
  }

  .banner_sec .call_now span:nth-child(2),
  .thank_you .call_now span:nth-child(2) {
    font-size: 1rem;
  }

  .banner_sec .navbar-brand img,
  .thank_you .navbar-brand img {
    /*max-width: 100px;*/
    height: 60px;
  }

  .banner_title,
  .search_box h3 {
    font-size: 1.2rem;
  }

  .banner_title {
    margin-block: 2rem;
  }

  .search_box_parent {
    margin-bottom: 6rem;
    flex-direction: column;
  }

  .search_box_parent .search_box:nth-child(1) {
    margin-bottom: 8px;
    margin-right: 0;
  }

  .search_box_parent .search_box:nth-child(2) {
    margin-left: 0;
    margin-top: 8px;
  }

  .search_box_parent::before {
    width: 100%;
    max-width: 400px;
    height: 0;
  }

  .banner_sec .first_form .search_box_parent::after {
    width: 40px;
    height: 40px;
  }

  .banner_sec::after,
  .banner_sec::before {
    content: unset;
  }

  .One_step_solution .row:nth-child(1) img {
    object-fit: cover;
  }

  .One_step_solution p {
    margin-top: 1rem;
  }

  .logo_sec .row:nth-child(1) {
    margin-bottom: 3rem;
  }

  .global_head {
    font-size: 1.5rem;
  }

  .logo_sec .global_head {
    margin-bottom: 10px;
  }

  .logo_sec p {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .logo_sec p::after {
    height: 3px;
    bottom: -0.5rem;
  }

  .logo_slider div a {
    width: 120px;
    height: 120px;
    padding: 10px;
  }

  .logo_slider div a img {
    width: 100%;
    height: 100%;
  }

  .logo_sec,
  .One_step_solution,
  .banner_sec,
  .briefly_demo,
  .reconditioning_services {
    margin-bottom: 3rem;
  }

  .banner_sec {
    background-size: cover;
  }

  .reconditioning_services .global_head,
  .choose_us_sec .global_head,
  .choose_us_sec,
  .step_sec {
    margin-bottom: 3rem;
  }

  .reconditioning_services .global_head::after,
  .choose_us_sec .global_head::after,
  .step_sec .global_head::after {
    height: 3px;
    bottom: -0.5rem;
  }

  .choose_us_sec {
    padding-block: 3rem;
  }

  .choose_us_sec .service::after {
    left: 0;
  }

  .choose_us_sec .service:hover {
    transform: scale(1);
  }

  .choose_us_sec .service .service_child {
    padding: 2rem;
    text-align: left;
  }

  .choose_us_sec .service .service_content {
    margin-right: 0;
    margin-left: 29px;
  }

  .step_sec .global_head {
    margin-bottom: 2rem;
  }

  .step_sec .sub_title {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .p-b-90 {
    padding-bottom: 0;
  }

  .step_child_parent {
    margin-bottom: 1rem;
  }

  .step_sec .step_content p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .footer_top .phone_div img,
  .footer_top .email_div img {
    margin-right: 1rem;
  }

  .footer_top .phone_div span {
    font-size: 1rem;
  }

  .footer_top .phone_div p,
  .footer_top .email_div span {
    font-size: 1rem;
  }

  .global_title {
    text-align: center;
    margin-top: 2rem;
  }

  .global_content_parent {
    padding-inline: 0;
    border: 0;
  }

  .inner_pages_banner img {
    max-width: 300px;
  }

  .simple_header {
    height: 80vh;
  }
}

@media (max-width: 575px) {
  .reconditioning_services ul a {
    font-size: 14px;
  }

  .contact_form .global_subtitle {
    margin-bottom: 2rem;
  }

  .contact_form {
    padding: 1rem;
  }

  .top_header ul.nav li a {
    padding: 0.7rem;
  }

  .top_header ul.nav li::before {
    width: 75%;
    height: 1px;
    border: 1px solid #2795ff;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 105%;
    transform: translateX(-50%);
  }

  .top_header ul.nav li:first-child:before {
    content: "";
  }

  .banner_sec {
    background-size: cover;
  }

  .search_box_parent {
    margin-bottom: 5rem;
  }

  .search_box .register {
    margin-inline: 0;
  }

  .search_box .register input {
    font-size: 1.1rem !important;
  }

  .search_box .register span {
    font-size: 14px;
  }

  .global_btn {
    width: auto;
  }

  .slick-dots li {
    margin: 0 !important;
  }

  .logo_sec p {
    font-size: 14px;
  }

  .logo_sec p::after,
  .reconditioning_services .global_head::after,
  .choose_us_sec .global_head::after,
  .step_sec .global_head::after {
    max-width: 150px;
  }

  .simple_header {
    height: 70vh;
  }

  .privacy_policy .global_subtitle2 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .privacy_policy ul,
  .privacy_policy .global_content {
    margin-bottom: 1rem;
  }

  .privacy_policy .global_content,
  .privacy_policy li {
    font-size: .75rem;
    line-height: 1rem;
  }
}

@media (max-width: 480px) {
  ul.accordion-list li h3 {
    font-size: .875rem;
  }

  ul.accordion-list li div.answer p {
    padding: 6px 0 0 0;
    line-height: 130%;
    font-size: 13px;
  }

  ul.accordion-list li {
    padding: .5rem;
  }

  .banner_sec .call_now img,
  .thank_you .call_now img {
    margin-right: 0;
  }

  .banner_sec .call_now div,
  .thank_you .call_now div {
    display: none !important;
  }

  .banner_sec .container .container-fluid,
  .thank_you .container .container-fluid {
    padding-inline: 0 !important;
  }

  .briefly_demo div.child {
    padding-block: 1rem;
  }

  .One_step_solution .global_head::after {
    max-width: 150px;
  }

  .One_step_solution p {
    font-size: 1rem;
  }

  .One_step_solution .row:nth-child(2) .col-md-4:nth-child(3) div span {
    font-weight: 400;
  }

  .logo_slider div a {
    width: 100px;
    height: 100px;
  }

  .logo_sec {
    padding-block: 3rem;
  }

  .choose_us_sec .service .service_child {
    padding: 1rem;
  }

  .choose_us_sec .service .service_content p {
    font-size: 18px;
  }

  .footer_top .register div input {
    font-size: 1rem;
  }

  .footer_top .register span {
    font-size: 12px;
  }

  .phone_div img,
  .email_div img {
    width: 35px;
  }

  footer .footer_bottom h3 {
    font-size: 1.5rem;
  }

  a.contact_btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .footer_bottom .nav a.nav-link,
  .footer_bottom .address span {
    font-size: 0.8rem;
  }

  .footer_bottom .address .social_icons {
    margin-bottom: 4rem;
  }

  .banner_sec .container:nth-child(3) .search_box_parent .search_box:nth-child(2) ul li {
    font-size: 15px;
  }

  .banner_sec .container:nth-child(3) .search_box_parent .search_box:nth-child(2) ul li::before {
    top: 10px;
  }

  .inner_pages_banner img {
    max-width: 250px;
  }

  .global_title {
    margin-top: 1rem;
    font-size: 1.5rem;
  }

  .global_subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 0;
  }

  .global_content {
    font-size: 15px;
    line-height: 22px;
  }

}

/* Media Queries End */

.whatsapp {
  width: 50px;
  height: 50px;
  color: #fff;
  display: block;
  text-align: center;
  border-radius: 100%;
  font-size: 30px;
  line-height: 52px;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  padding: 0;
  animation: scrollDownAnimation .5s ease infinite alternate;
  -webkit-animation: scrollDownAnimation .5s ease infinite alternate;
  background: #00e676;
}

@keyframes scrollDownAnimation {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*modal code*/
/*.modal-body h3 {*/
/*    color:black;*/
/*}*/


/* Input Fields inside Modal - Now with BLACK text */
.modal_second_form .search_box_parent .search_box form input,
.modal_second_form .search_box_parent .search_box form select {
  background-color: #ffff;
  /* light gray background */
  color: black;
  /* black text */
  font-size: 1rem;
  width: 100%;
  padding: 10px 17px;
  border: none;
  outline: none;
  margin-bottom: 0.5rem;
}

/* Placeholder color - darker now */
.modal_second_form .search_box_parent .search_box form input::placeholder,
.modal_second_form .search_box_parent .search_box form select::placeholder {
  color: #555;
  /* dark gray placeholder */
}

/* Feature List in Modal - dark text */
.modal_second_form .search_box_parent .search_box ul li {
  text-align: left;
  color: #fff;
  /* dark gray text */
  font-size: 18px;
  line-height: 40px;
  position: relative;
  padding-left: 35px;
}

/* Bullet Icon Before Each List Item */
.modal_second_form .search_box_parent .search_box ul li::before {
  content: "";
  background: url("../../assets/images/sprite.png") no-repeat -47px -2px;
  width: 28px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 6px;
}

/* Apply background image only to the section inside modal (not the modal itself) */
.modal_second_form {
  background: url("../../assets/images/banner.webp") center center / cover no-repeat;
  width: 100%;
  position: relative;
  border-radius: 10px;
  padding: 2rem;
  color: #fff;
  /* Optional: make text white if image is dark */
}

.modal_second_form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay */
  z-index: 0;
  border-radius: 10px;
}

.modal_second_form>* {
  position: relative;
  z-index: 1;
}

#myModal .modal-content {
  background-color: transparent;
  box-shadow: none;
  border: none;
}

#cb-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-radius: 0;
  display: none;
}