/* google fonts */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");

/* google fonts */

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}
span {
  display: inline-block;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

:root {
  --primary-font: "Inter", sans-serif;
  --secondary-font: "Plus Jakarta Sans", sans-serif;
  --Rajdhani-font: "Rajdhani", sans-serif;
  --primary-color: #0c0e0f;
  --secondary-color: #d90429;
  --text-color: #52525b;
  --black-color: #000;
  --white-color: #fff;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--primary-font);
}

main {
  overflow: hidden;
}
/*=============================================
START::Common CSS
==============================================*/
.header-equal-hight {
  margin-top: 80px;
}
.py-150 {
  padding: 150px 0px;
}
.py-60 {
  padding: 60px 0px;
}
.my-150 {
  margin: 150px 0px;
}
.common-span {
  color: var(--secondary-color);
}
.primary-button-header {
  padding: 8px 16px;
  color: #fbe6ea;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  background-color: var(--secondary-color);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  text-align: center;
  padding: 18px;
  border: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  border: 1px solid transparent;
}
.primary-button-header:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  background-color: var(--white-color);
  box-shadow: 0px 25px 20px -20px rgba(217, 4, 41, 0.45);
}
.primary-button-header.large-btn {
  min-width: 416px;
}
.primary-button {
  padding: 12px 32px;
  border: none;
  text-align: center;
  border-radius: 4px;
  background: var(--secondary-color);
  color: var(--white-color);
  text-align: center;
  font-family: var(--Rajdhani-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.primary-button:hover {
  /* color: var(--secondary-color); */
  border-color: var(--secondary-color);
  /* background-color: var(--white-color); */
  box-shadow: 0px 25px 20px -20px rgba(217, 4, 41, 0.45);
}

/*=============================================
START::Header CSS
==============================================*/
header {
  width: 100%;
  position: fixed;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  z-index: 100;
}
header.sticky {
  background-color: var(--white-color);
  z-index: 1;
  top: -1px;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-logo {
  width: 90px;
  height: 80px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 0px 8px;
  border-radius: 0px 0px 5px 5px;
  -webkit-border-radius: 0px 0px 5px 5px;
  -moz-border-radius: 0px 0px 5px 5px;
  -ms-border-radius: 0px 0px 5px 5px;
  -o-border-radius: 0px 0px 5px 5px;
}
.main-logo a {
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 18.48px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  height: 100%;
}

.main-menu {
}
.main-menu ul {
  display: flex;
}
.main-menu ul li {
}
.main-menu ul li a {
  padding: 10px 20px;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 29px;
  color: var(--text-color);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.main-menu ul li a:hover {
  color: var(--secondary-color);
}
.main-menu {
}
.menu-buttons {
}
.menu-buttons .menu-btn {
  width: 200px;
  padding: 12px 16px;
  background-color: var(--white-color);
  color: var(--secondary-color);
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--secondary-color);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.menu-buttons .menu-btn:hover {
  border-color: var(--white-color);
  color: var(--white-color);
  background-color: var(--secondary-color);
}
header.sticky .menu-buttons .menu-btn {
  border-color: var(--secondary-color);
}
/*=============================================
START:: Hero Section
==============================================*/
.hero-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-container {
  padding-top: 138px;
}
.hero-section .hero-left {
  margin-top: 86px;
}
.hero-section .hero-left h1 {
  color: var(--primary-color);
  font-family: var(--secondary-font);
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 105px;
  margin-bottom: 36px;
}
.hero-section .hero-left p {
  color: #404040;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 36px;
}
.hero-right {
  display: flex;
  align-items: end;
  width: 100%;
  height: 100%;
}
.hero-right .hero-img {
}
.hero-right .hero-img img {
  width: 100%;
  max-height: 700px;
}
/*=============================================
START::About section
==============================================*/
.about-image {
  width: 100%;
  height: 500px;
  cursor: pointer;
  overflow: hidden;
  border-bottom: 5px solid var(--secondary-color);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.about-image:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.about-information {
  padding-left: 100px;
}
.about-information.about-us-page {
  padding-left: 0;
  padding-right: 100px;
}
.about-information h5 {
  color: var(--secondary-color);
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  padding-left: 16px;
  border-left: 5px solid #5b0211;
  margin-bottom: 40px;
}
.about-information h2 {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 63px;
  margin-bottom: 24px;
}
.about-information p {
  color: var(--text-color);
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 30px;
}
/*=============================================
START:: Auto Leadership
==============================================*/
.auto-dealership-section {
  position: relative;
}
.auto-dealership-section .world-shadow-img {
  position: absolute;
  left: 50%;
  top: 0;
}
.auto-dealership-section .world-shadow-img img {
  width: 100%;
}
.auto-leadership-image img {
  width: 100%;
}
.auto-leadership-information h2 {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 63px;
  margin-bottom: 60px;
}
.single-dealership {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 40px;
  width: 100%;
}
.single-dealership .single-leadership-left h4 {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
  margin-bottom: 20px;
}
.single-dealership .single-leadership-left p {
  color: var(--text-color);
  font-family: var(--primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.single-dealership .single-leadership-right h3 {
  color: #f00;
  font-family: var(--primary-font);
  font-size: 74px;
  font-style: normal;
  font-weight: 700;
  line-height: 110px;
  text-transform: uppercase;
  opacity: 0.1;
}
/*=============================================
START:: Work section
==============================================*/
.work-section {
  background: #323232;
  padding: 60px 0px;
}
.work-section-title {
}
.work-section-title h2 {
  color: var(--white-color);
  text-align: center;
  font-family: var(--primary-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 63px;
  margin-bottom: 18px;
}
.work-section-title p {
  color: var(--white-color);
  text-align: center;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 40px;
}
.work-item {
  border-radius: 44px;
  -webkit-border-radius: 44px;
  -moz-border-radius: 44px;
  -ms-border-radius: 44px;
  -o-border-radius: 44px;
  background-color: var(--white-color);
  padding: 40px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  cursor: pointer;
  height: 100%;
}
.work-item:hover {
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 1);
}
.work-item .work-icon {
  margin-bottom: 18px;
}
.work-item h3 {
  color: var(--text-color);
  font-family: var(--primary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 14px;
}
.work-item p {
  color: var(--text-color);
  font-family: var(--primary-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}
/*=============================================
START::Customer say section
==============================================*/
.customer-say-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 114px;
}
.customer-say-title-left {
  max-width: 600px;
}
.customer-say-title-left h2 {
  color: #131313;
  font-family: var(--primary-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 63px;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.customer-say-title-left h2 .quote {
  position: absolute;
  width: 35px;
  margin-left: 20px;
}
.customer-say-title-left h2 .quote img {
  width: 100%;
}
.customer-say-title-left p {
  color: var(--text-color);
  font-family: var(--primary-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.customer-say-title-right .star-image {
  width: 220px;
}
.customer-say-title-right .star-image img {
  width: 100%;
}
.single-customer {
  padding: 34px;
  border-radius: 44px;
  border: 1px solid rgba(209, 211, 214, 0.5);
  background: #f3f6fa;
}
.single-customer-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.single-customer-title p {
  color: #575757;
  font-family: var(--primary-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.customer-profile-picture {
  width: 68px;
  height: 68px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  margin-bottom: 15px;
}
.customer-profile-picture img {
  width: 100%;
}
.single-customer-title .customer-quote {
  width: 90px;
}
.single-customer-title .customer-quote img {
  width: 100%;
}
.single-customer-title .customer-profile-left h3 {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 4px;
}
.single-customer-title .customer-profile-left h6 {
  color: var(--text-color);
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
/*=============================================
START:: FAQ
==============================================*/
.faq-title {
  margin-bottom: 100px;
}
.faq-title h2 {
  text-align: center;
  color: #131313;
  font-family: var(--primary-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 63px;
}
.faq-body .accordion-button {
  box-shadow: none;
  background-color: #fbe6ea;
  padding: 30px;
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
}
.faq-body .accordion-button:not(.collapsed) {
  background: #f1f1f1 !important;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.faq-body .accordion-body {
  background: #f1f1f1 !important;
  border-bottom-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  display: flex;
  padding: 30px;
}
.faq-body .accordion-item {
  margin-bottom: 25px;
  border: 1px solid transparent;
}
.faq-body .accordion {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.faq-body .accourdion-number h5 {
  color: #212121;
  font-family: var(--primary-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin-right: 15px;
}
.faq-body .accordion-text p {
  color: var(--text-color);
  font-family: var(--primary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.faq-body .load-faq-wrap {
  margin-top: 75px;
}
.faq-body .load-faq-wrap button {
  min-width: 233px;
}
/*=============================================
START::Footer
==============================================*/
footer {
  background-color: #141414;
  padding-top: 67px;
  padding-bottom: 87px;
}
.footer-menu-site {
  max-width: 350px;
}
.footer-menu {
  margin-bottom: 24px;
}
.footer-menu a {
  color: var(--white-color);
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  width: 90px;
  height: 81px;
  padding: 8px 8px;
}
.footer-menu-site p {
  color: var(--white-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.footer-widget {
}
.footer-widget p {
  color: var(--white-color);
  font-family: var(--primary-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.footer-widget h5 {
  margin-bottom: 28px;
  color: var(--white-color);
  font-family: var(--primary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}
.footer-widget ul {
}
.footer-widget ul li {
  margin-bottom: 16px;
}
.footer-widget ul li a {
  color: var(--white-color);
  font-family: var(--primary-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.copyright-footer p {
  color: var(--bw-white, #fff);
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.copyright-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}
.copyright-footer-right ul {
  display: flex;
}
.copyright-footer-right ul li a {
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-left: 30px;
}
/* ================================
START:: Contact form
==================================*/
.contact-left-information {
  padding-right: 81px;
}
.contact-left-information h2 {
  margin-bottom: 32px;
  color: var(--primary-color);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
}
.contact-left-information p {
  color: var(--text-color);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 65px;
}
.contact-left-information ul li a {
  display: flex;
}
.contact-left-information ul li a {
  color: var(--text-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 32px;
  display: flex;
}
.contact-left-information ul li a img {
  margin-right: 26px;
}
.contact-form {
  border-radius: 20px;
  border-bottom: 5px solid var(--secondary-color);
  background: #f6f6f6;
  padding: 50px 30px;
}
.form-single-item {
  margin-bottom: 24px;
}
.form-single-item label {
  color: #5a5c5f;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 4px;
  display: block;
}
.form-single-item input,
.form-single-item textarea {
  border-radius: 8px;
  background: rgba(209, 211, 214, 0.16);
  padding: 16px;
  border: 1px solid transparent;
  width: 100%;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.form-single-item input:focus,
.form-single-item textarea:focus {
  border-color: var(--secondary-color);
  background-color: var(--white-color);
}
.form-single-item input:focus::placeholder,
.form-single-item textarea:focus::placeholder {
  color: var(--primary-color);
}
.form-single-item input::placeholder,
.form-single-item textarea::placeholder {
  color: #bfbfbf;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
.form-single-item textarea {
  min-height: 150px;
}
/*=============================================
START::Stepform CSS
==============================================*/
.stepform-section {
}
.stepform-top-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d4ded9;
}
.stepform-top-title h5 {
  color: var(--primary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}
.stepform-top-title p {
  color: var(--primary-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.stepform-wrapper {
  background: rgba(209, 211, 214, 0.16);
  padding: 40px 50px;
  margin-top: 70px;
  margin-bottom: 150px;
}

.stepform-wrapper .form-step {
  display: none;
}

.stepform-wrapper .form-step.active {
  display: block;
}

.stepform-wrapper .button-group {
  display: flex;
  justify-content: end;
  margin-top: 15px;
}
.stepform-wrapper .button-group button {
  min-width: 200px;
}

.stepform-wrapper .button-group button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.each-form-title {
  margin-bottom: 40px;
}
.each-form-title h2 {
  color: var(--primary-color);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 63px;
  text-align: center;
}
.input-box {
  margin-bottom: 20px;
}
.input-box .nice-select {
  margin-bottom: 20px;
}
.input-box label {
  color: var(--text-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  width: 100%;
  margin-bottom: 5px;
}
.input-box input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid rgb(226, 225, 225);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  font-size: 17px;
}
.input-box .nice-select {
  line-height: normal;
  font-size: 17px;
  height: auto;
  width: 100%;
  padding: 18px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.input-box .nice-select:focus {
  border-color: var(--secondary-color);
}
.input-box .nice-select:after {
  height: 9px;
  width: 9px;
  right: 22px;
}
.input-box input:focus {
  border: 1px solid var(--secondary-color);
}
.input-box input::placeholder {
}
.add-vehicle-tab {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.add-vehicle-tab-btn {
  display: flex;
  align-items: center;
}
.add-vehicle-tab input {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary-color);
}
.add-vehicle-tab label {
  color: var(--primary-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  margin-left: 7px;
  cursor: pointer;
}
.add-vehicle-inner-wrapper1,
.add-vehicle-inner-wrapper2 {
  display: none;
}
.add-vehicle-inner-wrapper1.active,
.add-vehicle-inner-wrapper2.active {
  display: block;
}
.add-photo-subtitle {
  margin-bottom: 24px;
}
.add-photo-subtitle h4 {
  color: var(--primary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.exterior-photo-item {
}
.exterior-photo-item h5 {
  color: #52525b;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.exterior-photo-item .exterior-photo-image {
  border-radius: 8px;
  border: 1px solid #d4ded9;
  padding: 15px;
  margin-bottom: 10px;
  height: 160px;
}
.exterior-photo-item .exterior-photo-image label {
  display: block;
  width: 100%;
  height: 100%;
}
.exterior-photo-item .exterior-photo-image label {
}
.exterior-photo-item .exterior-photo-image img {
  width: 100%;
}
.exterior-photo-image-preview {
  height: 160px;
  border-radius: 8px;
  border: 1px solid #d4ded9;
  padding: 15px;
  margin-bottom: 10px;
  background-color: var(--white-color);
}
.exterior-photo-image-preview.active {
  border: 1px solid var(--secondary-color);
}
.exterior-photo-image-preview label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.exterior-photo-image-preview label img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.damage-skip {
  position: relative;
  top: 57px;
  width: 60%;
  display: flex;
  justify-content: end;
}
.damage-skip button {
  color: var(--secondary-color);
  border: none;
  font-size: 20px;
  font-family: var(--Rajdhani-font);
  font-weight: 600;
  background-color: transparent;
}
.declaration-sort-title {
  text-align: center;
  width: 500px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.declaration-sort-title h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
}
.declaration-sort-title p {
  color: #5a5c5f;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}
.declaration-item-wrapper {
  margin-bottom: 30px;
}
.declaration-item-wrapper h4 {
  color: var(--primary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 10px;
}
.declaration-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.declaration-item .diclaration-left p {
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.declaration-item .diclaration-right {
  display: flex;
  gap: 20px;
  cursor: pointer;
}
.declaration-item .diclaration-right input {
  width: 16px;
  height: 16px;
  accent-color: var(--secondary-color);
  cursor: pointer;
}
.declaration-item .diclaration-right label {
  cursor: pointer;
  color: var(--text-color);
  font-weight: 500;
}
.diclaration-right-left-button,
.diclaration-right-right-button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.declaration-item-textarea {
}
.declaration-item-textarea p {
  color: #52525b;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 5px;
}
.declaration-item-textarea textarea {
  height: 100px;
  width: 100%;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}
.declaration-item-textarea textarea:focus {
  border: 1px solid var(--secondary-color);
}
.agree-teram-condition {
  display: flex;
  gap: 10px;
  align-items: center;
}
.agree-teram-condition label {
  color: #1c2126;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  cursor: pointer;
}

/*==================================
START:: Payment  
===================================*/
.cancel-payment-btn button {
  color: #1f2026;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  padding: 10px;
  background-color: var(--white-color);
  border-radius: 6px;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.07);
}
.cancel-payment-btn button i {
  color: #ee3a21;
  margin-right: 10px;
  font-size: 16px;
}
.payment-section {
  padding: 100px 0px;
}
.payment-information-wrapper .payment-title {
  color: var(--primary-color);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 24px;
}
.payment-user-information-wrap {
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: var(--white-color);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.07);
  padding: 32px;
  margin-bottom: 24px;
}
.payment-user-information-inner-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #e6e6e6;
  padding-top: 24px;
}
.payment-user-information-wrap h3 {
  color: var(--primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
}
.payment-user-information-wrap p {
  color: var(--text-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  margin-bottom: 4px;
}
.payment-details-wrapper {
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: var(--white-color);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.07);
  padding: 32px;
  margin-bottom: 24px;
}
.payment-details-title {
}
.payment-details-title h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 10px;
}
.payment-details-title p {
  color: var(--text-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.devider {
  margin: 24px 0px;
  border-radius: 12px;
  height: 1px;
  background-color: #e6e6e6;
}
.payment-details-wrapper .card-number {
  margin-bottom: 24px;
}
.payment-details-wrapper .card-number label {
  color: var(--primary-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 4px;
}
.payment-details-wrapper .card-number .inner-card-number {
  position: relative;
}
.payment-details-wrapper .card-number .inner-card-number input {
  padding: 10px 14px;
  color: var(--text-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  border-radius: 6px;
  width: 100%;
  border: 1px solid #fbe6ea;
  background: var(--white-color);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.07);
  padding-right: 70px;
}
.payment-details-wrapper .card-number .inner-card-number img {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.date-and-cvc-wrapper {
  margin-bottom: 24px;
}
.date-and-cvc-wrapper .date-wrapper {
  display: flex;
  justify-content: space-between;
}
.date-and-cvc-wrapper .cvc-wrap {
}
.date-and-cvc-wrapper .cvc-wrap label {
  color: var(--primary-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  width: 100%;
  margin-bottom: 4px;
}
.date-and-cvc-wrapper .cvc-wrap input {
  border-radius: 6px;
  border: 1px solid #e5e6eb;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.07);
  color: var(--Text-Body, #52525b);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  padding: 10px;
  width: 100%;
}
.date-and-cvc-wrapper .date-wrapper label {
  color: var(--primary-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  width: 100%;
  margin-bottom: 4px;
}
.date-inner-select-wrapper {
  display: flex;
}
.expire-date-box .nice-select {
  height: auto;
  line-height: 20px;
  padding: 12px;
}
.nice-select .list {
  z-index: 1050 !important;
  height: 180px;
  overflow-y: auto;
}
.expire-date-box .nice-select.nice-select:after {
  height: 8px;
  width: 8px;
}
.cancelation-policy-wrapper {
  display: flex;
  gap: 16px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: #fff;
  padding: 32px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.07);
}
.cancelation-policy-wrapper .cancelation-img {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.cancelation-policy-wrapper .cancelation-img img {
  width: 100%;
  object-fit: cover;
}
.cancelation-policy-wrapper .cancelation-text {
}
.cancelation-policy-wrapper .cancelation-text h4 {
  color: #1f2026;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 10px;
}
.cancelation-policy-wrapper .cancelation-text p {
  color: var(--text-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.nice-select .list::-webkit-scrollbar {
  width: 4px;
}
.nice-select .list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.nice-select .list::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}
.payment-card-wrapper {
  margin-top: 66px;
  margin-bottom: 24px;
}
.payment-card-wrapper .summery-wrapper {
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: var(--white-color);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.07);
  padding: 32px;
}
.payment-card-wrapper .summery-wrapper label {
  color: var(--primary-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
}
.summery-content-wrap {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.summery-content-wrap p {
  color: #767a85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.summery-content-wrap strong {
  color: var(--primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  color: var(--Text-Heading, #0c0e0f);
}
.paynow-btn-wrapper {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: var(--white-color);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.07);
}
.paynow-checkbox {
  display: flex;
  align-items: start;
  gap: 15px;
  margin-bottom: 24px;
}
.paynow-checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.paynow-checkbox label {
  color: #1e2238;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-top: -4px;
  cursor: pointer;
}
.paynow-checkbox label a {
  color: #17f;
}

.star-image {
  animation: circle 5000ms linear infinite;
  -webkit-animation: circle 5000ms linear infinite;
}
@keyframes circle {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}



.all-radion-select {
  display: flex;
  gap: 10px;
}
.all-radion-select button {
  padding: 0px 17px;
  font-size: 14px;
  line-height: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid rgb(247, 4, 85);
  background-color: rgb(247, 4, 85);
  color: #FFF;
}
.all-radion-select button.active {
  background-color: rgb(247, 4, 85);
  color: #fff;
}
