@import url("./author.css");
@import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("../fonts/Author-Variable.ttf");

.theme {
  --primaryColor: #e64b31;
  --primaryDarkColor: #d43f25;
  --primaryGradientColor: linear-gradient(256.43deg,
      rgb(230, 75, 49) 0.04%,
      rgb(233, 83, 36) 74.75%);
  --blackColor: #434343;
  --greyColor: #8e8e8e;
  --whiteColor: #ffffff;
  --AuthorSemibold: "Author-Semibold";
  --AuthorMedium: "Author-Medium";
  --AuthorMediumItalic: "Author-MediumItalic";
  --AuthorRegular: "Author-Regular";
  --AuthorVariable: "Author-Variable";
  --RoundoVariable: "Roundo-Variable";
}

html,
body {
  margin: 0;
  width: 100%;
}

body {
  overflow-y: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blackColor);
  text-align: left;
  background-color: var(--whiteColor);
  font-family: var(--AuthorMedium);
}

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

.theme .btn {
  font-size: 16px;
  line-height: normal;
  font-family: var(--AuthorMedium);
  text-transform: uppercase;
  border: solid 1px #fff;
  border-radius: 0px;
  position: relative;
  padding: 10px 20px;
  clip-path: polygon(0 0, 100% 0, 100% 30px, 94% 100%, 0 100%, 0% 100%);
}

.theme .btn span {
  font-family: "roundosemibold";
  line-height: 0;
}

.theme .btn::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: -3px;
  width: 20px;
  height: 1px;
  background-color: #fff;
  transform: rotate(-36deg);
}

.theme .btn-white {
  background-color: var(--whiteColor);
  border-color: var(--whiteColor);
  color: #312827;
}

.theme .btn-primary {
  color: #fff;
  /* background-color: var(--primaryColor); */
  border-color: var(--whiteColor);
  background: linear-gradient(90deg, #e64b31 0%, #802a1b 113.56%);
  background-size: 400% 400%;
  animation: gradient2 15s ease infinite;
  position: relative;
  overflow: hidden;
}

.theme .btn-primary::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 60px;
  top: -10px;
  left: -2px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 0;
  animation-name: roll2;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  animation-delay: 0s;
  z-index: -1;
}

@keyframes gradient2 {
  0% {
    background-position: 0% 100%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 100%;
  }
}

@keyframes roll2 {

  /* Basic move left and right*/
  0% {
    transform: translateX(-20px) rotate(160deg);
  }

  100% {
    transform: translateX(220px) rotate(160deg);
  }
}

.theme .btn-primary::after {
  background-color: #fff;
}

.theme .btn-primary:hover,
.theme .btn-primary:focus {
  background-color: var(--primaryDarkColor);
}

.theme .btn-primary:focus {
  box-shadow: none;
}

@media (min-width: 1200px) {
  .container-xl {
    max-width: 1180px;
  }
}

@media (min-width: 1300px) {
  .container-xl {
    max-width: 1300px;
  }
}

@media (min-width: 1100px) {
  .container-lg {
    max-width: 1080px;
  }

  .container-lg-md {
    max-width: 1080px;
  }
}

.padder-15 {
  padding: 100px 0px;
}

.padder-30 {
  padding: 200px 0px;
}

.mainTitle {
  margin-bottom: 40px;
}

.mainTitle .themeTitle {
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -0.02em;
  text-align: left;
  font-family: var(--AuthorMedium);
  color: #312827;
  margin-bottom: 10px;
}

.mainTitle .infoText {
  font-size: 24px;
  line-height: normal;
  text-align: left;
  color: #626262;
  font-family: var(--AuthorRegular);
  margin-bottom: 0px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .padder-15 {
    padding: 50px 0px;
  }

  .mainTitle {
    margin-bottom: 30px;
  }

  .mainTitle .themeTitle {
    font-size: 48px;
    line-height: 48px;
  }

  .mainTitle .infoText {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .padder-15 {
    padding: 40px 0px;
  }

  .mainTitle {
    margin-bottom: 20px;
  }

  .mainTitle .themeTitle {
    font-size: 36px;
    line-height: 36px;
  }

  .mainTitle .infoText {
    font-size: 18px;
    line-height: 22px;
  }

  .mainTitle .infoText br {
    display: none;
  }
}

.theme .form-floating {
  margin-top: 20px;
}

.theme .form-floating>.form-control {
  border-width: 0px 0px 1px 0px;
  border-radius: 0px;
  border-color: #e4e4e4;
  padding: 8px 0px;
  height: auto;
  font-size: 18px;
  font-family: var(--AuthorSemibold);
  line-height: 18px;
}

.theme .form-floating>label {
  padding: 10px 0px;
  padding: 10px 0px;
  font-size: 16px;
  line-height: 16px;
}

.theme .form-control:focus {
  box-shadow: none;
  border-color: var(--primaryColor);
}

.theme .form-floating>label .text-fill {
  color: red;
}

.theme .form-floating>.form-control:focus~label,
.theme .form-floating>.form-control:not(:placeholder-shown)~label,
.theme .form-floating>.form-select~label {
  opacity: 1;
  transform: scale(1) translateY(-1.5rem) translateX(-1px);
  color: #4c4c4c;
  font-size: 14px;
}

.theme .form-control.is-invalid:focus,
.theme .was-validated .form-control:invalid:focus {
  box-shadow: none;
  border-color: #dc3545;
}

.theme .was-validated .invalid-feedback {
  display: inline-block;
  font-size: 14px;
  font-family: var(--AuthorMedium);
  line-height: 10px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.theme .form-control.is-valid:focus,
.theme .was-validated .form-control:valid:focus {
  box-shadow: none;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Header Css Start */
.themeHeader {
  background-color: transparent;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 2;
  padding: 25px 0px;
  transition: 0.5s;
}

.themeHeader.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.5s;
  background: radial-gradient(70.17% 57.09% at 71.25% 54.88%,
      #1c1c1c 20.9%,
      #0f0f0f 97.64%);
  padding: 12px 0px;
}

.themeHeader .navbar-brand {
  padding: 0px;
  margin: 0px;
}

.themeHeader .navbar-brand img {
  height: 40px;
}

.themeHeader .navbar-nav .nav-link {
  font-size: 16px;
  font-family: var(--AuthorMedium);
  color: rgb(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.5s;
  padding: 5px 35px;
}

.themeHeader .navbar-nav .comingSoonli {
  padding-right: 25px;
  display: flex;
  align-items: center;
}

.themeHeader .navbar-nav .comingSoonli .nav-link {
  padding-right: 0px;
}

.comingSoon {
  font-family: "Author-Bold";
  font-size: 11px;
  font-weight: 700;
  line-height: 8px;
  text-align: center;
  color: #fff;
  padding: 6px 5px;
  border-radius: 3px;
  margin-left: 5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #e64b31 0%, #802a1b 113.56%);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.comingSoon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 38px;
  top: -5px;
  left: -2px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
  animation-name: roll;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  animation-delay: 2s;
}

@keyframes roll {

  /* Basic move left and right*/
  0% {
    transform: translateX(-10px) rotate(160deg);
  }

  100% {
    transform: translateX(100px) rotate(160deg);
  }
}

.themeHeader .navbar-nav .nav-link:focus,
.themeHeader .navbar-nav .nav-link:hover {
  font-family: "Author-Semibold";
  color: #fff;
  transition: 0.5s;
}

.themeHeader.navbar-light .navbar-nav .nav-link.active,
.themeHeader.navbar-light .navbar-nav .show>.nav-link {
  color: #fff;
}

.themeHeader .headerBtn .btn:not(:last-child) {
  margin-right: 15px;
}

.burger {
  position: relative;
  width: 20px;
  height: 14px;
  cursor: pointer;
  display: none;
  background: transparent;
  border: 0;
  padding: 0px;
  box-shadow: none;
}

.burger:focus {
  outline: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transition: all 0.2s, background 0s;
  background: var(--whiteColor);
}

.burger span:nth-child(2) {
  top: 6px;
}

.burger span:last-child {
  top: 12px;
}

.burger.show-x span:first-child {
  transform: rotate(45deg);
}

.burger.show-x span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.show-x span:last-child {
  transform: rotate(-45deg);
}

.burger.show-x span:first-child,
.burger.show-x span:last-child {
  top: 8px;
}

@media screen and (min-width: 1025px) and (max-width: 1380px) {
  .themeHeader .navbar-brand img {
    height: 38px;
  }

  .themeHeader .navbar-nav .nav-link {
    font-size: 14px;
    padding: 5px 25px;
  }

  .theme .btn {
    font-size: 14px;
    padding: 10px 18px;
  }

  .themeHeader .navbar-nav .comingSoonli {
    padding-right: 20px;
  }

  .themeHeader .navbar-nav .comingSoon {
    font-size: 10px;
    margin-left: 5px;
    padding: 6px 5px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .themeHeader {
    padding: 20px 0px;
  }

  .themeHeader .navbar-brand img {
    height: 35px;
  }

  .themeHeader .headerBtn .btn {
    padding: 10px 15px;
  }

  .themeHeader .headerBtn .btn:not(:last-child) {
    margin-right: 10px;
  }
}

@media screen and (max-width: 1025px) {
  .themeHeader .navbar-brand img {
    height: 30px;
  }

  .themeHeader {
    padding: 20px 0px;
  }

  .themeHeader.navbar-light .navbar-toggler {
    color: #fff;
    border: 0px;
  }

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

  .main-body {
    overflow: hidden;
  }

  .themeHeader .burger {
    display: block;
    top: 0px;
    right: 5px;
  }

  .themeHeader .burger.show-x {
    z-index: 11;
  }

  .themeHeader .burger:hover,
  .themeHeader .burger:focus {
    outline: 0;
    box-shadow: none;
  }

  .themeHeader .rightMenu {
    position: fixed;
    right: -500px;
    background: radial-gradient(70.17% 57.09% at 71.25% 54.88%,
        #1c1c1c 20.9%,
        #0f0f0f 97.64%);
    top: 0px;
    z-index: 5;
    width: 300px;
    height: 100% !important;
    transition: transform 0.2s ease-in;
    transition: 0.5s;
    padding: 50px 20px 20px;
    flex-flow: column;
  }

  .themeHeader .rightMenu.show {
    height: 100%;
    right: 0px;
  }

  .themeHeader.navbar-expand-lg .navbar-nav {
    flex-direction: inherit;
    margin: 0 !important;
    width: 100%;
  }

  .themeHeader .navbar-nav .nav-item {
    margin-bottom: 10px;
  }

  .themeHeader .navbar-nav .nav-link {
    padding: 8px 0px;
  }

  .themeHeader .navbar-nav .comingSoonli {
    padding-right: 0px;
  }

  .themeHeader .headerBtn .btn:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 15px;
  }
}

/* Header Css End */

/* banner Css Start */
.themeBanner {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("../img/comptech-banner.png");
  background-size: cover;
  background-position: center 80%;
  position: relative;
}

.themeBanner::before {
  content: "";
  position: absolute;
  top: 0px;
  width: 100%;
  height: 150px;
  background: linear-gradient(0deg,
      rgba(49, 49, 49, 0) 6.65%,
      rgba(48, 48, 48, 0.8) 100%);
}

.themeBanner::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 200px;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0) 100%);
}

.themeBanner .bannerInner {
  display: flex;
  justify-content: space-between;
  padding: 120px 0px 30px 0px;
  flex-flow: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

.themeBanner .bannerInner .heading {
  font-size: 64px;
  font-weight: 494;
  line-height: 54px;
  text-align: center;
  font-family: var(--AuthorMedium);
  color: var(--whiteColor);
  margin-bottom: 30px;
}

.themeBanner .bannerInner .btn {
  padding: 10px 30px;
}

.themeBanner .bannerInfo {
  display: inline-block;
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.bannerInfo .innerInfo {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 60px;
  position: relative;
}

.bannerInfo .innerInfo:first-child::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 0px;
  height: 100px;
  width: 2px;
  background: url("../img/line.svg");
}

.bannerInfo .innerInfo .Textimg {
  margin-bottom: 5px;
}

.bannerInfo .innerInfo .smallTitle {
  font-size: 24px;
  font-style: italic;
  font-family: "Author-Italic";
  line-height: normal;
  letter-spacing: 0.01em;
  text-align: left;
  color: var(--whiteColor);
}

.bannerInfo .innerInfo .startingFrom {
  font-family: var(--AuthorRegular);
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.01em;
  color: var(--whiteColor);
}

.bannerInfo .innerInfo .factory {
  font-family: var(--AuthorMedium);
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.01em;
  color: var(--whiteColor);
}

.bannerInfo .innerInfo .price {
  font-family: "roundosemibold";
  font-size: 40px;
  font-weight: 500;
  line-height: 38px;
  color: var(--whiteColor);
  margin: 10px 0px 0px 0px;
  display: flex;
  align-items: center;
}

.bannerInfo .innerInfo .Secprice {
  font-size: 30px;
  line-height: 30px;
  font-weight: 500;
  font-family: "roundomedium";
  position: relative;
  display: inline-flex;
  margin-right: 10px;
}

.bannerInfo .innerInfo .Secprice::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0px;
  width: 95%;
  height: 3px;
  background-color: #e64b31;
  transform: rotate(10deg);
  right: 0;
  margin: auto;
  bottom: 0;
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .themeBanner {
    height: 700px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .themeBanner .bannerInner {
    padding: 100px 0px 20px 0px;
  }

  .themeBanner {
    height: 700px;
  }

  .bannerInfo .innerInfo {
    padding: 10px 30px;
  }

  .bannerInfo .innerInfo .price {
    font-size: 34px;
  }

  .bannerInfo .innerInfo .Secprice {
    font-size: 26px;
    line-height: 28px;
  }

  .bannerInfo .innerInfo .smallTitle {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .range15image {
    margin: -20px 0px 10px 0px;
    padding-top: 40px;
  }

  .themeBanner .bannerInner {
    padding: 115px 0px 0px 0px;
  }

  .themeBanner .bannerInner .heading {
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 15px;
    font-family: var(--AuthorSemibold);
  }

  .themeBanner {
    height: 772px;
  }

  .bannerInfo .innerInfo {
    padding: 20px 0px 40px 0px;
    align-items: center;
  }

  .bannerInfo .innerInfo:first-child {
    display: none;
  }

  .bannerInfo .innerInfo .Textimg {
    height: 28px;
  }

  .bannerInfo .innerInfo .smallTitle {
    font-size: 18px;
  }

  .themeBanner .bannerInfo {
    display: inline-block;
    margin: 0px -15px;
    width: auto;
    border-radius: 0px;
  }

  .bannerInfo .innerInfo .price {
    font-size: 32px;
    line-height: 28px;
    margin: 10px 0px 0px 0px;
  }

  .bannerInfo .innerInfo .Secprice {
    font-size: 24px;
  }
}

@media screen and (max-width: 340px) {
  .themeBanner .bannerInner .heading {
    font-size: 36px;
    line-height: 34px;
  }

  .bannerInfo .innerInfo .Textimg {
    height: 27px;
  }

  .bannerInfo .innerInfo .smallTitle {
    font-size: 16px;
  }

  .bannerInfo .innerInfo .price {
    font-size: 28px;
    line-height: 28px;
  }

  .bannerInfo .innerInfo .Secprice {
    font-size: 20px;
  }
}

/* banner Css End */

/* Unveiling Excellence in Sustainability Css Start */
.themeUnveiling .themeRage {
  display: inline-block;
  width: 100%;
  height: 465px;
  background-image: url("../img/range-banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 50px;
}

.themeRage::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 50%;
  height: 100%;
  background: linear-gradient(269.96deg,
      rgba(0, 0, 0, 0) 2.22%,
      rgba(0, 0, 0, 0.5) 85.55%);
  z-index: -1;
}

.themeRage .smallTitle {
  font-size: 32px;
  line-height: 30px;
  text-align: left;
  color: #ff6d55;
  font-family: var(--AuthorMedium);
  margin-bottom: 20px;
}

.themeRage .kmText {
  font-size: 66px;
  line-height: 64px;
  color: var(--whiteColor);
  font-family: "roundosemibold";
  font-weight: 500;
  margin-bottom: 20px;
}

.themeRage .smallText {
  font-size: 28px;
  line-height: 26px;
  text-align: left;
  color: var(--whiteColor);
  font-family: var(--AuthorMedium);
}

.rangeMainCard .rangeCard {
  display: inline-block;
  width: 100%;
  height: calc(100% - 20px);
  background-color: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  margin: 10px 0px;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
}

.rangeMainCard .rangeCard:hover,
.rangeMainCard .rangeCard:focus {
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1);
}

.rangeFirstCard .cardBody {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}

.rangeFirstCard img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.rangeMainCard .infoText {
  font-family: var(--AuthorMedium);
  font-size: 24px;
  line-height: 24px;
  text-align: left;
  color: #e64b31;
  margin-bottom: 15px;
}

.rangeFirstCard .rageKm {
  font-size: 44px;
  line-height: 42px;
  font-family: "roundosemibold";
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: left;
  color: var(--blackColor);
}

.rangeFirstCard .rageKm .smallText {
  color: #8e8e8e;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-align: left;
  font-family: "roundomedium";
}

.rangeFirstCard .rageSecond .number {
  font-family: "roundosemibold";
  font-weight: 600;
  font-size: 32px;
  line-height: 30px;
}

.rangeFirstCard .rageSecond {
  font-size: 34px;
  line-height: 30px;
  font-family: "roundosemibold";
  text-align: left;
  color: var(--blackColor);
  margin-top: 5px;
}

.rangeCard.rangeFirstCard .rageSecond .smallText {
  color: #8e8e8e;
  font-family: "roundomedium";
  font-size: 34px;
  letter-spacing: -0.03em;
  text-align: left;
}

.rangeFirstCard .ragemodel {
  font-size: 16px;
  font-family: "roundoregular";
  color: #8e8e8e;
  margin-top: 10px;
}

.rangeMainCard .rangeCard.rangeFullCard {
  display: flex;
  padding: 40px;
  overflow: inherit;
  display: flex;
  align-items: center;
}

.rangeFullCard .leftImg {
  padding: 20px 61px 0px 50px;
}

.rangeFullCard .innerInfo {
  flex: auto;
}

.rangeFullCard .infoCharge {
  font-family: "roundosemibold";
  font-size: 32px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.03em;
  text-align: left;
  display: flex;
  align-items: center;
}

.rangeFullCard .infoCharge .hours {
  display: inline-flex;
  margin: 0px 5px;
}

.rangeFullCard .infoCharge .hours img {
  max-width: 45px;
  max-height: 45px;
}

.rangeMainCard .rangeFullCard .infoText {
  margin-bottom: 5px;
}

.rangeFullCard .infoCharge .hours span {
  font-family: "roundobold";
  font-size: 46px;
  line-height: 46px;
  text-align: left;
  background: linear-gradient(270deg, #434343 0%, #e64b31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 920px) and (max-width: 1100px) {
  .rangeFirstCard .rageKm {
    font-size: 40px;
    line-height: 40px;
  }

  .rangeFirstCard .rageSecond,
  .rangeCard.rangeFirstCard .rageSecond .smallText {
    font-size: 28px;
    line-height: 28px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .themeUnveiling .themeRage {
    padding: 40px;
    margin-bottom: 30px;
  }

  .themeRage .kmText {
    font-size: 54px;
    line-height: 54px;
    margin-bottom: 10px;
  }

  .themeRage .smallTitle {
    font-size: 24px;
    line-height: 24px;
  }

  .themeRage .smallText {
    font-size: 22px;
    line-height: 22px;
  }

  .rangeFullCard .leftImg {
    margin-top: -100px;
    width: 150px;
  }

  .rangeMainCard .rangeCard.rangeFullCard {
    padding: 25px;
  }

  .rangeFullCard .infoCharge {
    font-size: 28px;
    line-height: 28px;
  }

  .hours img {
    height: 34px;
  }

  .rangeFullCard .infoCharge .hours span {
    font-size: 38px;
    line-height: 38px;
  }
}

@media screen and (max-width: 767px) {
  .themeUnveiling .themeRage {
    height: 350px;
    border-radius: 15px;
    padding: 25px;
    background-position: 50%;
    margin-bottom: 30px;
  }

  .themeRage .smallTitle {
    font-size: 24px;
    line-height: 24px;
  }

  .themeRage .kmText {
    font-size: 54px;
    line-height: 54px;
    margin-bottom: 10px;
  }

  .themeRage .smallText {
    font-size: 22px;
    line-height: 22px;
  }

  .rangeFirstCard .cardBody {
    top: 20px;
    left: 20px;
    width: auto !important;
  }

  .rangeMainCard .infoText {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  .rangeFirstCard .rageKm {
    font-size: 34px;
    line-height: 34px;
  }

  .rangeFirstCard .rageSecond,
  .rangeCard.rangeFirstCard .rageSecond .smallText {
    font-size: 28px;
    line-height: 28px;
  }
}

@media screen and (max-width: 649px) {
  .rangeMainCard .rangeCard.rangeFullCard {
    padding: 25px 20px;
  }

  .rangeFullCard .infoCharge {
    flex-flow: column;
  }

  .rangeFullCard .infoCharge {
    font-size: 22px;
    line-height: 24px;
    align-items: flex-start;
  }

  .hours img {
    height: 34px;
  }

  .rangeFullCard .infoCharge .hours {
    margin: 5px 0px;
  }

  .rangeFullCard .infoCharge .hours span {
    font-size: 28px;
    line-height: 28px;
  }
}

@media screen and (min-width: 650px) and (max-width: 850px) {
  .rangeFirstCard .rageKm {
    font-size: 28px;
    line-height: 28px;
  }

  .rangeFirstCard .rageSecond,
  .rangeCard.rangeFirstCard .rageSecond .smallText {
    font-size: 24px;
    line-height: 24px;
  }

  .rangeMainCard .infoText {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 8px;
  }

  .rangeMainCard .rangeCard.rangeFullCard {
    padding: 25px 20px;
  }

  .rangeFullCard .leftImg {
    margin-top: -100px;
    width: 120px;
  }

  .rangeFullCard .infoCharge {
    font-size: 24px;
    line-height: 28px;
    align-items: inherit;
  }

  .hours img {
    height: 34px;
  }

  .rangeFullCard .infoCharge .hours span {
    font-size: 32px;
    line-height: 32px;
  }
}

/* Unveiling Excellence in Sustainability Css End */
/* Video Css Start */
.themeVideo {
  display: inline-block;
  width: 100%;
}

.themeVideo video {
  width: 100%;
}

/* Video Css End */
/* Safety is at the Core of Comptech Css Start */
.themeRangeSlider {
  margin-left: auto;
  margin-right: 0;
  width: calc(100% - 415px);
  padding: 0px 15px;
}

.themeRangeSlider .sliderCard .sliderImg {
  display: inline-block;
  width: 100%;
  background-color: #f6f6f6;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.sliderCard .sliderImg img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  min-width: 100%;
}

.sliderCard .sliderImg .cgText {
  position: absolute;
  top: 60px;
  left: 40px;
}

.cgText .svgDark {
  fill: #312827;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.themeRangeSlider .sliderCard .sliderImg:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 180%;
  width: 180%;
  z-index: -1;
  background: var(--primaryColor);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  -webkit-transform: translateX(78%) translateY(85%) rotate(45deg);
  transform: translateX(78%) translateY(85%) rotate(45deg);
}

.themeRangeSlider .sliderCard .sliderImg:hover:after {
  background-color: #282828;
  -webkit-transform: translateX(25%) translateY(25%) rotate(45deg);
  transform: translateX(25%) translateY(25%) rotate(45deg);
}

.themeRangeSlider .sliderCard .sliderImg:hover .cgText .svgDark {
  fill: #fff;
}

.sliderCard .infoBody {
  padding-top: 15px;
}

.sliderCard .infoBody .title {
  font-size: 28px;
  line-height: 30.8px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #312827;
  font-family: var(--AuthorMedium);
  margin-bottom: 5px;
}

.sliderCard .infoBody .infoText {
  font-size: 16px;
  line-height: 21px;
  text-align: left;
  color: #817776;
  font-family: var(--AuthorRegular);
}

@media screen and (min-width: 1921px) and (max-width: 2800px) {
  .themeRangeSlider {
    width: calc(100% - 25%);
  }
}

@media screen and (min-width: 1550px) and (max-width: 1850px) {
  .themeRangeSlider {
    width: calc(100% - 255px);
  }
}

@media screen and (min-width: 1270px) and (max-width: 1549px) {
  .themeRangeSlider {
    width: calc(100% - 125px);
  }
}

@media screen and (max-width: 1200px) {
  .themeRangeSlider {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .sliderCard .infoBody .title {
    font-size: 24px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .themeRangeSlider .sliderCard .sliderImg {
    border-radius: 5px;
  }
}

/* Safety is at the Core of Comptech Css End */
/* Ready for a ride into the Future Css Start */
.readyFuture {
  background-color: #f8f8f8;
}

.readyFuture .ride-future {
  display: inline-block;
  width: 100%;
  background-color: var(--blackColor);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.ride-future .mainImg {
  max-width: 100%;
  max-height: 100%;
}

@media screen and (max-width: 767px) {
  .readyFuture .ride-future {
    border-radius: 15px;
  }

  .FeaturesHeading {
    margin-bottom: 20px;
    padding: 70px 0px 50px 0px;
  }
}

/* Ready for a ride into the Future Css End */
/* Features That Lead, Technology That Lasts Css Start */
.themeTechnology {
  padding-top: 70px;
}

.themeTechnology .mainTitle.b-b {
  padding-bottom: 40px;
  border-bottom: solid 1px #d3d3d3;
}

.FeaturesHeading {
  margin-bottom: 20px;
  padding: 50px 0px 50px 0px;
}

.FeaturesHeading .titleDesign {
  display: flex;
  align-items: center;
}

.titleDesign .innerTitle {
  font-size: 50px;
  line-height: 50px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
  font-family: var(--AuthorMedium);
  text-transform: uppercase;
  padding: 15px 35px 15px 70px;
  margin-left: -90px;
  background: linear-gradient(269.35deg, #e64b31 77.69%, #802a1b 114.89%);
  clip-path: polygon(0 0, 100% 0, 100% 77%, 95% 100%, 0 100%, 0% 100%);
}

.titleDesign .shapIcon {
  z-index: 1;
}

.FeaturesHeading .powerInfo {
  padding-left: 50px;
}

.FeaturesHeading .powerInfo .title {
  font-family: var(--AuthorMedium);
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #111111;
  margin-bottom: 5px;
}

.FeaturesHeading .powerInfo .infoText {
  font-family: var(--AuthorRegular);
  font-size: 22px;
  line-height: 28px;
  text-align: left;
  color: #817776;
  margin-bottom: 0px;
}

.themeTechnology .rangeCard {
  display: inline-block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  margin: 10px 0px;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
}

.rangeCard img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.rangeCard .cardBody {
  position: absolute;
  z-index: 1;
  width: 100%;
}

.rangeCard .cardBody .title {
  font-family: var(--AuthorMedium);
  font-size: 32px;
  line-height: 34px;
  color: #303030;
}

.rangeCard .line {
  width: 35px;
  height: 2px;
  margin: 10px 0px;
  background-color: #e64b31;
}

.rangeCard .cardBody .smallText {
  font-family: var(--AuthorVariable);
  font-size: 18px;
  line-height: 19.58px;
  color: #303030;
}

.firstCard .cardBody {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.firstCard .cardBody .line {
  margin: 10px auto;
}

.firstCard .cardBody .smallText {
  width: 50%;
  margin: 0 auto;
}

.secondCard .cardBody {
  top: 30px;
  left: 30px;
  width: auto;
}

.secondCard .cardBody .smallText {
  font-family: "roundosemibold";
  font-size: 80px;
  font-weight: 600;
  line-height: 104px;
  letter-spacing: -0.04em;
  text-align: left;
  color: #a4a4a4;
}

.secondCard img {
  z-index: 1;
  position: relative;
}

.thirdCard .cardBody {
  top: 25px;
  right: 25px;
  width: auto;
}

.thirdCard .cardBody .title {
  line-height: 32px;
  font-family: "roundosemibold";
}

.forthCard .cardBody {
  bottom: 0;
  left: 15px;
  width: auto;
}

.forthCard .cardBody .title {
  font-size: 18px;
  line-height: 20px;
  font-family: var(--AuthorSemibold);
}

.forthCard .cardBody .smallText {
  font-size: 16px;
  line-height: 18px;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .themeTechnology {
    padding-top: 50px;
  }

  .titleDesign .shapIcon {
    height: 90px;
  }

  .titleDesign .innerTitle {
    font-size: 32px;
    line-height: 32px;
    padding: 12px 25px 12px 50px;
    margin-left: -60px;
  }

  .FeaturesHeading .powerInfo {
    padding-left: 0px;
    padding-top: 10px;
  }

  .FeaturesHeading .powerInfo .title {
    font-size: 28px;
    line-height: 28px;
  }

  .FeaturesHeading .powerInfo .infoText {
    font-size: 18px;
    line-height: 24px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .rangeCard .cardBody .title {
    font-size: 24px;
    line-height: 24px;
  }

  .firstCard .cardBody .line {
    margin: 5px auto;
  }

  .firstCard .cardBody {
    top: 20px;
  }

  .secondCard .cardBody {
    top: 20px;
    left: 20px;
    width: auto;
  }

  .secondCard .cardBody .smallText {
    font-family: "roundosemibold";
    font-size: 60px;
    line-height: 70px;
  }

  .themeTechnology .rangeCard.thirdCard {
    display: flex;
    align-items: flex-end;
  }

  .thirdCard,
  .forthCard {
    height: 220px;
  }

  .thirdCard .cardBody {
    top: 15px;
    right: 15px;
    width: auto;
  }

  .forthCard .cardBody .smallText {
    font-size: 12px;
    line-height: 15px;
  }

  .forthCard .cardBody {
    left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .themeTechnology {
    padding-top: 40px;
  }

  .themeTechnology .mainTitle.b-b {
    padding-bottom: 20px;
  }

  .titleDesign .shapIcon {
    height: 90px;
  }

  .titleDesign .innerTitle {
    font-size: 32px;
    line-height: 32px;
    padding: 12px 25px 12px 50px;
    margin-left: -60px;
  }

  .FeaturesHeading .powerInfo {
    padding-left: 0px;
    padding-top: 10px;
  }

  .FeaturesHeading .powerInfo .title {
    font-size: 28px;
    line-height: 28px;
  }

  .FeaturesHeading .powerInfo .infoText {
    font-size: 18px;
    line-height: 24px;
  }

  .firstCard {
    text-align: center;
    height: 270px;
  }

  .firstCard .cardBody {
    top: 20px;
  }

  .rangeCard .cardBody .title {
    font-size: 24px;
    line-height: 24px;
  }

  .firstCard .cardBody .line {
    margin: 5px auto;
  }

  .secondCard .cardBody {
    top: 20px;
    left: 20px;
    width: auto;
  }

  .secondCard .cardBody .smallText {
    font-family: "roundosemibold";
    font-size: 40px;
    line-height: 40px;
  }

  .themeTechnology .rangeCard.thirdCard {
    display: flex;
    align-items: flex-end;
  }

  .thirdCard,
  .forthCard {
    height: 240px;
  }

  .thirdCard .cardBody {
    top: 15px;
    right: 15px;
    width: auto;
  }

  .forthCard .cardBody .smallText {
    font-size: 12px;
    line-height: 15px;
  }

  .forthCard .cardBody {
    left: 10px;
  }
}

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

  .thirdCard,
  .forthCard {
    height: 200px;
  }
}

@media screen and (max-width: 320px) {
  .titleDesign .shapIcon {
    height: 70px;
  }

  .titleDesign .innerTitle {
    font-size: 28px;
    line-height: 28px;
    padding: 10px 25px 10px 30px;
    margin-left: -40px;
  }

  .FeaturesHeading .powerInfo {
    padding-left: 0px;
    padding-top: 10px;
  }

  .FeaturesHeading .powerInfo .title {
    font-size: 28px;
    line-height: 28px;
  }

  .FeaturesHeading .powerInfo .infoText {
    font-size: 18px;
    line-height: 24px;
  }
}

/* Features That Lead, Technology That Lasts Css End */
/* Boot space Section Start */

.bootSpace {
  display: inline-block;
  width: 100%;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 50px;
  margin: 25px 0px;
}

.bootSpace::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 50%;
  height: 100%;
  background: linear-gradient(269.96deg,
      rgba(0, 0, 0, 0) 2.22%,
      rgba(0, 0, 0, 0.5) 85.55%);
}

.bootSpace video {
  width: 100%;
}

.bootSpace .boostspaceInner {
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: 1;
}

.bootSpace .literText {
  font-size: 56px;
  line-height: 50px;
  color: var(--whiteColor);
  font-family: "roundosemibold";
  font-weight: 600;
}

.bootSpace .bootSpaceText {
  font-size: 56px;
  line-height: 50px;
  text-align: left;
  color: var(--whiteColor);
  font-family: var(--AuthorMedium);
}

.bootSpace .line {
  width: 35px;
  height: 2px;
  margin: 15px 0px;
  background-color: #e64b31;
}

.bootSpace .smallText {
  font-family: var(--AuthorMedium);
  font-size: 28px;
  font-weight: 494;
  line-height: 33.88px;
  text-align: left;
  color: #fff;
  width: 55%;
}

.themeTechnology .reverseMode .rangeCard {
  height: calc(100% - 30px);
}

.fifthCard .cardBody {
  top: 20px;
  left: 25px;
  width: auto;
}

.eightCard .cardBody {
  top: 30px;
  left: 25px;
  width: auto;
}

.sixCard .cardBody {
  bottom: 20px;
  left: 20px;
  width: auto;
}

.sixCard .cardBody .title {
  font-size: 26px;
  line-height: 24px;
}

.eightCard .cardBody .title {
  font-family: var(--AuthorMedium);
  font-size: 40px;
  line-height: 35px;
  color: #312827;
  font-family: "roundosemibold";
}

.eightCard .cardBody .smallText {
  font-size: 22px;
}

@media (min-width: 768px) {
  .reverseMode .col-md-4 {
    width: 28%;
  }

  .reverseMode .col-md-5 {
    width: 44%;
  }
}

.themeTechnologySection {
  padding-top: 100px;
}

.themeTechnologySection .themeTechnologyCard {
  margin-top: 100px;
}

.commanCard .cardBody {
  top: 30px;
  left: 25px;
  width: auto;
}

.commanCard .cardBody .title {
  font-size: 26px;
  line-height: 26px;
  padding: 10px 0px;
}

.commanCard .cardBody .rangeCardTitle {
  color: var(--whiteColor);
}

.commanCard .cardBody .smallText {
  color: #6f6f6f;
}

.nineCard .cardBody {
  top: 0px;
  bottom: 0px;
  right: 20px;
  width: 45%;
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  justify-content: center;
}

.nineCard-2 .cardBody {
  top: 0px;
  left: 30px;
  bottom: 0px;
  right: 20px;
  width: 45%;
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  justify-content: center;
}

.nineCard-2 img {
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  justify-content: start;
}

.nineCard .cardBody .title {
  font-size: 26px;
  line-height: 26px;
}

.nineCard .mmSize {
  font-size: 46px;
  line-height: 46px;
  letter-spacing: -0.03em;
  background: linear-gradient(270deg, #434343 0%, #e64b31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "roundobold";
  margin-top: 10px;
}

.nineCard .mmSize span {
  font-size: 33px;
  font-weight: 500;
  line-height: 33px;
  letter-spacing: -0.03em;
  font-family: "roundosemibold";
}

.themeTechnology .tenCard {
  overflow: inherit;
}

.tenCard img {
  display: flex;
  margin: -70px 0 0 auto;
}

.tenCard .cardBody {
  bottom: 25px;
  left: 25px;
  width: auto;
  line-height: 130%;
}

.tenCard .cardBody .title {
  font-family: "roundosemibold";
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
  text-align: left;
  line-height: 130%;
  margin-top: 5px;
}

.tenCard .cardBody .title span {
  color: #cfcfcf;
  font-family: "roundoregular";
}

.tenCard .cardBody .smallText {
  font-family: var(--AuthorMedium);
  font-size: 24px;
  line-height: 24px;
  color: #303030;
}

.tenCard .cardBody .modelTitle {
  font-family: "roundomedium";
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
  color: #8e8e8e;
}

.themeTechnology .elevenCard {
  display: flex;
  align-items: center;
  padding: 20px 20px 50px 20px;
}

.elevenCard .cardBody {
  position: inherit;
  width: auto;
  flex: auto;
  padding-left: 20px;
}

.elevenCard .cardBody .title {
  font-size: 28px;
  list-style: 33px;
  color: #303030;
  margin-bottom: 5px;
}

.themeTechnology .twelveCard {
  display: flex;
  align-items: center;
  padding: 20px 20px 0px 20px;
}

.twelveCard .cardBody {
  position: inherit;
  width: 40%;
  background: #f8f8f8;
  padding: 20px 5px 20px 15px;
}

.twelveCard .cardBody:first-child {
  border-radius: 15px 0px 0px 15px;
}

.twelveCard .cardBody:last-child {
  border-radius: 0px 15px 15px 0px;
}

.twelveCard .cardBody .smallText {
  font-family: "roundomedium";
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
  color: #312827;
}

.twelveCard .cardBody .chargeText {
  font-family: "roundomedium";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #312827;
}

.twelveCard .cardBody .title {
  font-family: "roundomedium";
  font-size: 32px;
  font-weight: 600;
  line-height: 41.6px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #303030;
}

@media screen and (max-width: 1024px) {
  .bootSpace {
    margin: 25px 0px;
  }

  .bootSpace .line {
    margin: 10px 0px;
  }

  .bootSpace .videoText {
    font-size: 22px;
    line-height: 30px;
    right: 50px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {

  .fifthCard .cardBody,
  .eightCard .cardBody {
    top: 20px;
    left: 15px;
  }

  .sixCard .cardBody {
    bottom: 20px;
    left: 15px;
    width: auto;
  }

  .eightCard .cardBody .title {
    font-size: 30px;
    line-height: 30px;
  }

  .eightCard .cardBody .smallText {
    font-size: 18px;
  }

  .commanCard .cardBody .title {
    font-size: 22px;
    line-height: 22px;
  }

  .commanCard .cardBody {
    top: 20px;
    left: 15px;
  }

  .tenCard .cardBody {
    bottom: 20px;
    left: 15px;
    width: auto;
  }

  .tenCard .cardBody .title {
    font-size: 30px;
    line-height: 30px;
  }

  .tenCard .cardBody .smallText {
    font-size: 20px;
    line-height: 20px;
  }

  .nineCard .mmSize {
    font-size: 38px;
    line-height: 38px;
  }

  .elevenCard .cardBody .title {
    font-size: 24px;
    line-height: 24px;
  }

  .twelveCard .cardBody .smallText {
    font-size: 16px;
    line-height: 16px;
  }

  .themeTechnology .twelveCard {
    padding: 15px 15px 0px 15px;
  }

  .twelveCard .cardBody .title {
    font-size: 20px;
    line-height: 26px;
  }

  .nineCard .cardBody .title {
    font-size: 22px;
    line-height: 22px;
  }

  .themeTechnologySection {
    padding-top: 50px;
  }
}

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

  .fifthCard .cardBody,
  .eightCard .cardBody {
    top: 20px;
    left: 15px;
  }

  .eightCard .cardBody .title {
    font-size: 30px;
    line-height: 30px;
  }

  .themeTechnology .reverseMode .rangeCard.fifthCard,
  .themeTechnology .reverseMode .rangeCard.eightCard {
    padding-top: 25px;
  }

  .themeTechnology .reverseMode .rangeCard.sixCard {
    height: 180px;
  }

  .themeTechnology .reverseMode .rangeCard.sixCard {
    display: flex;
    justify-content: flex-end;
  }

  .eightCard .cardBody .smallText {
    font-size: 18px;
  }

  .themeTechnologySection {
    padding-top: 30px;
  }

  .themeTechnologySection .themeTechnologyCard {
    margin-top: 0;
  }

  .commanCard .cardBody .title {
    font-size: 22px;
    line-height: 22px;
  }

  .commanCard .cardBody {
    top: 20px;
    left: 15px;
    width: auto;
  }

  .nineCard .cardBody .title {
    font-size: 22px;
    line-height: 22px;
  }

  .tenCard .cardBody {
    bottom: 20px;
    left: 15px;
    width: auto;
  }

  .tenCard .cardBody .title {
    font-size: 30px;
    line-height: 30px;
  }

  .tenCard .cardBody .smallText {
    font-size: 20px;
    line-height: 20px;
  }

  .nineCard .mmSize {
    font-size: 38px;
    line-height: 38px;
  }

  .tenCard img {
    display: flex;
    margin: -90px 0 0 auto;
  }

  .themeTechnology .elevenCard {
    display: flex;
    align-items: center;
    padding: 20px 15px;
  }

  .elevenCard .cardBody .title {
    font-size: 24px;
    line-height: 24px;
  }

  .twelveCard .cardBody .smallText {
    font-size: 16px;
    line-height: 16px;
  }

  .themeTechnology .twelveCard {
    padding: 15px 15px 0px 15px;
  }

  .twelveCard .cardBody .title {
    font-size: 22px;
    line-height: 26px;
  }

  .bootSpace {
    border-radius: 10px;
    margin: 25px 0px;
  }

  .bootSpace .boostspaceInner {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1;
  }

  .bootSpace .literText {
    font-size: 38px;
    line-height: 38px;
  }

  .bootSpace .bootSpaceText {
    font-size: 34px;
    line-height: 34px;
  }

  .bootSpace .smallText {
    font-size: 18px;
    line-height: 20px;
    width: 80%;
  }
}

/* Boot space Section End */
/* Experience the Drive of Tomorrow, Today Css Start */
.themeeExperience {
  background: radial-gradient(70.17% 57.09% at 71.25% 54.88%,
      #1c1c1c 20.9%,
      #0f0f0f 97.64%);
}

.themeeExperience .title {
  font-size: 63px;
  line-height: 63px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
  font-family: var(--AuthorMedium);
  margin-bottom: 15px;
}

.themeeExperience .infoText {
  font-size: 24px;
  line-height: 36.25px;
  text-align: left;
  color: #beb5b4;
  font-family: var(--AuthorRegular);
  margin-bottom: 25px;
}

.themeeExperience .btn {
  padding: 12px 25px;
  font-size: 16px;
  clip-path: polygon(0 0, 100% 0, 100% 30px, 93% 100%, 0 100%, 0% 100%);
}

.themeeExperience .map {
  display: inline-block;
  width: 100%;
  position: relative;
}

.themeeExperience .map img {
  width: 100%;
}

.themeeExperience .map .stateBox {
  position: absolute;
  top: 80px;
  right: 110px;
  padding: 8px 20px;
  background: rgba(238, 238, 238, 0.102);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-family: var(--AuthorMedium);
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  color: #fff;
  max-width: 150px;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .themeeExperience .title {
    font-size: 54px;
    line-height: 54px;
  }

  .themeeExperience .infoText {
    font-size: 20px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .themeeExperience .title {
    font-size: 42px;
    line-height: 44px;
  }

  .themeeExperience .infoText {
    font-size: 16px;
    line-height: 20px;
  }
}

/* Experience the Drive of Tomorrow, Today Css End */
/* Savings calculator Css Start */
.savingsLeft .smallText {
  font-family: var(--AuthorSemibold);
  font-size: 20px;
  line-height: 23.6px;
  letter-spacing: 0.01em;
  text-align: left;
  color: var(--primaryColor);
  margin-bottom: 15px;
}

.savingsLeft .title {
  font-family: var(--AuthorMedium);
  font-size: 43px;
  font-weight: 494;
  line-height: 43px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #312827;
  max-width: 75%;
  margin-bottom: 0px;
}

.savingsLeft .calculatorList {
  display: flex;
  list-style: none;
  margin: 50px 0px;
  padding: 0px;
}

.savingsLeft .calculatorList li {
  padding: 0px 30px;
  border-left: solid 1px #8b8b8b;
}

.savingsLeft .calculatorList li:first-child {
  border-left: 0px;
  padding-left: 0px;
}

.savingsLeft .calculatorList .price {
  font-family: "roundosemibold";
  font-size: 32px;
  font-weight: 600;
  line-height: 37.76px;
  letter-spacing: -0.02em;
  color: #312827;
}

.savingsLeft .calculatorList .smallAnnual {
  font-family: var(--AuthorMedium);
  font-size: 18px;
  line-height: 21.24px;
  letter-spacing: -0.02em;
  color: #808080;
}

.savingsLeft .listing {
  display: inline-block;
  width: 100%;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.savingsLeft .listing li {
  display: flex;
  margin-bottom: 15px;
}

.savingsLeft .listing li .smallBox {
  display: inline-flex;
  width: 11px;
  height: 11px;
  background-color: var(--primaryColor);
  margin-top: 5px;
  clip-path: polygon(0 0, 100% 0, 100% 8px, 70% 100%, 0 100%, 0% 100%);
}

.savingsLeft .listing li .small-Text {
  flex: 1;
  padding-left: 15px;
  font-family: var(--AuthorMedium);
  font-size: 16px;
  line-height: 18.88px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #525252;
}

.savingsRight .kmText {
  font-family: var(--AuthorMedium);
  font-size: 20px;
  line-height: 23.25px;
  text-align: left;
  color: #312827;
  margin-bottom: 60px;
}

.range-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.sliderRange {
  -webkit-appearance: none;
  width: 100%;
}

.sliderRange:focus {
  outline: none;
}

.sliderRange::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  background: linear-gradient(90deg,
      #e64b31 var(--range-progress),
      #ececec var(--range-progress));
  border-radius: 1rem;
}

.sliderRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  border-radius: 50%;
  background: #e64b31;
  cursor: pointer;
  height: 18px;
  width: 18px;
  transform: translateY(calc(-50% + 5px));
}

.sliderRange::before {
  left: 0;
  content: "10km";
}

.sliderRange::after {
  right: 0;
  content: "110km";
}

.sliderRange::before,
.sliderRange::after {
  position: absolute;
  top: 25px;
  color: #6c6c6c;
  font-size: 14px;
  line-height: 1;
  font-family: "roundomedium";
}

.tooltipRange {
  position: absolute;
  top: -40px;
}

.tooltipRange span {
  position: absolute;
  display: block;
  padding: 6px 9px;
  color: #fff;
  border-radius: 2px;
  background: #4d4d4d;
  left: 50%;
  transform: translate(-50%, 0);
  font-family: "roundosemibold";
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}

.chart {
  margin-top: 50px;
  border: solid 1px #f2f2f2;
  padding: 40px 30px;
  max-height: 400px;
}

.chart canvas {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .savingsLeft .title {
    font-size: 34px;
    line-height: 34px;
    max-width: 100%;
  }

  .chart {
    padding: 30px 15px;
  }
}

@media screen and (max-width: 767px) {
  .savingsLeft .title {
    font-size: 34px;
    line-height: 34px;
    max-width: 100%;
  }

  .savingsLeft .calculatorList {
    margin: 20px 0px;
  }

  .savingsLeft .calculatorList .price {
    font-size: 28px;
    line-height: 30px;
  }

  .savingsLeft .calculatorList li {
    width: 50%;
  }

  .chart {
    padding: 30px 15px;
  }
}

/* Savings calculator Css End */
/* Multiple Colors to match your Style Css Start */
.colorHeading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.colorHeading .mainTitle {
  margin-bottom: 0px;
}

.colorHeading .mainTitle .themeTitle {
  font-size: 43px;
  line-height: 43px;
  margin-bottom: 10px;
}

.colorHeading .mainTitle .infoText {
  color: #817776;
}

.colorHeading .colorPlate .nav .nav-item {
  padding: 0px 8px;
}

.colorHeading .colorPlate .nav .nav-item:last-child {
  padding-right: 0px;
}

.colorHeading .colorPlate .nav .nav-item .navlink {
  border: 2px solid #e3e3e3;
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 50%;
  padding: 0px;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.colorHeading .colorPlate .nav .nav-item .navlink:hover,
.colorHeading .colorPlate .nav .nav-item .navlink:focus,
.colorHeading .colorPlate .nav .nav-item .navlink.active {
  border-color: var(--primaryColor);
}

.colorHeading .colorPlate .nav .nav-item .navlink .Round {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: 0.5s;
}

.colorHeading .colorPlate .nav .nav-item .navlink.active .Round {
  box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.5);
}

.colorHeading .colorPlate .nav .nav-item .navlink .colorBlack {
  background: linear-gradient(128.16deg,
      #131313 -5.6%,
      #4c4a4a 47.66%,
      #171717 90.44%);
}

.colorHeading .colorPlate .nav .nav-item .navlink .colorWhite {
  border: 1px solid #e3e3e3;
  background: linear-gradient(141.43deg,
      #f6f6f6 10.55%,
      #ffffff 51.81%,
      #eeeeee 98.1%);
}

.colorHeading .colorPlate .nav .nav-item .navlink .colorRed {
  background: linear-gradient(310.4deg,
      #951718 6.15%,
      #bf1e1f 50.23%,
      #611212 104.08%);
}

.colorHeading .colorPlate .nav .nav-item .navlink .colorGrey {
  background: linear-gradient(130deg,
      #6c6c6c -10.14%,
      #d2d2d2 49.41%,
      #8f8f8f 96.69%);
}

.colorHeading .colorPlate .nav .nav-item .navlink .colorBlue {
  background: linear-gradient(145.34deg,
      #24273e -4.09%,
      #294ece 52.03%,
      #172a6b 97.03%);
}

.multipleColors .comptechSection {
  position: relative;
  width: 100%;
  height: 680px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
  background-position: center;
  overflow-y: hidden;
}

.multipleColors .comptechSection .infoBody {
  width: 100%;
  left: 0;
  text-align: center;
}

.comptechSection .infoBody .btn {
  padding: 12px 20px;
}

.comptechSection .infoBody .btn::after {
  transform: rotate(-46deg);
}

.multipleColors .tab-pane {
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.multipleColors .tab-pane.active,
.multipleColors .tab-pane.show {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@media screen and (min-width: 1101px) and (max-width: 1380px) {
  .multipleColors .comptechSection {
    height: 650px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .colorHeading .mainTitle .themeTitle {
    font-size: 34px;
    line-height: 34px;
  }

  .colorHeading .mainTitle .infoText {
    font-size: 18px;
  }

  .multipleColors .comptechSection {
    height: 500px;
    padding-bottom: 30px;
    background-position: 47%;
  }

  .multipleColors .comptechSection .infoBody .mainText {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .colorHeading .colorPlate .nav .nav-item:first-child {
    padding-left: 0px;
  }

  .colorHeading .colorPlate .nav .nav-item {
    padding: 0px 5px;
  }
}

@media screen and (max-width: 767px) {
  .colorHeading {
    flex-flow: column;
    align-items: flex-center;
  }

  .colorHeading .mainTitle .themeTitle {
    font-size: 34px;
    line-height: 34px;
  }

  .colorPlate {
    margin-top: 10px;
  }

  .multipleColors .comptechSection {
    height: 500px;
    padding-bottom: 30px;
    background-position: 47%;
  }

  .multipleColors .comptechSection .infoBody .mainText {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .colorHeading .colorPlate .nav .nav-item:first-child {
    padding-left: 0px;
  }

  .colorHeading .colorPlate .nav .nav-item {
    padding: 0px 5px;
  }
}

/* Multiple Colors to match your Style Css End */
/* Still in Doubt What to choose? Css Start */
.chooseStill {
  padding: 80px 0px;
  background-color: #101010;
}

.chooseStill .chooseStillBanner {
  background: linear-gradient(256.43deg, #e64b31 0.04%, #e95324 74.75%);
  clip-path: polygon(0 0, 100% 0, 100% 87%, 96% 100%, 0 100%, 0% 100%);
}

.chooseStillBanner .chooseStillLeft {
  display: inline-block;
  width: 100%;
  padding-top: 50px;
}

.chooseStillBanner .chooseStillLeft img {
  max-width: 90%;
}

.chooseStillBanner .chooseStillRight {
  padding-left: 50px;
  max-width: 60%;
}

.chooseStillBanner .chooseStillRight .title {
  font-family: var(--AuthorSemibold);
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
}

.chooseStillBanner .chooseStillRight .smallText {
  font-family: var(--AuthorRegular);
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
  margin-bottom: 30px;
}

.chooseStillBanner .chooseStillRight .btn {
  padding: 10px 30px;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .chooseStill {
    padding: 40px 0px;
  }

  .chooseStillBanner .chooseStillRight .title {
    font-size: 30px;
    line-height: 28px;
  }

  .chooseStillBanner .chooseStillRight {
    padding: 25px 20px;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .chooseStill .chooseStillBanner {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 93% 100%, 0 100%, 0% 100%);
  }

  .chooseStill {
    padding: 45px 0px;
  }

  .chooseStillBanner .chooseStillRight {
    padding: 25px 20px;
    max-width: 100%;
  }

  .chooseStillBanner .chooseStillLeft {
    display: inline-block;
    padding-top: 0px;
  }

  .chooseStillBanner .chooseStillRight .title {
    font-size: 30px;
    line-height: 28px;
  }
}

/* Still in Doubt What to choose? Css End */
/* Footer Section Css Start */
.themeFooter {
  background-color: #101010;
  border-top: 1px solid #545454;
}

.themeFooter .topFooter {
  padding: 50px 0px;
}

.themeFooter ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.themeFooter .topFooter .footerList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.themeFooter .topFooter .footerList li {
  padding: 0px 25px;
}

.themeFooter .topFooter .footerList li:last-child {
  padding-right: 0px;
}

.themeFooter .topFooter .footerList li a {
  font-family: var(--AuthorMedium);
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #fff;
  text-decoration: inherit;
  text-transform: uppercase;
}

.themeFooter .topFooter .footerList li.comingSoonli {
  display: flex;
  align-items: center;
}

.themeFooter .secFooter {
  padding: 20px 0px;
  border-top: 1px solid #545454;
  border-bottom: 1px solid #545454;
}

.secFooter .companyContact {
  display: inline-block;
  width: 100%;
}

.secFooter .companyContact li {
  display: inline-block;
  width: auto;
  margin: 0px 15px 10px 0px;
}

.secFooter .companyContact a {
  display: flex;
  text-decoration: inherit;
  align-items: flex-start;
}

.secFooter .companyContact a img {
  margin-right: 5px;
}

.secFooter .companyContact a span {
  display: inline-flex;
  font-family: var(--AuthorRegular);
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  color: #ffffff;
  flex: 1;
}

.secFooter .socialList {
  padding: 20px 35px;
  border-style: solid;
  border-width: 0px 1px 0px 1px;
  border-color: #545454;
  height: 100%;
  align-items: flex-start;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.socialList .label {
  font-family: var(--AuthorMedium);
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0.24em;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.socialList ul {
  display: inline-block;
  width: 100%;
}

.socialList ul li {
  display: inline-block;
  width: auto;
  padding: 0px 10px;
}

.socialList ul li:first-child {
  padding-left: 0px;
}

.contactBtn {
  display: flex;
  align-items: center;
  height: 100%;
}

.contactBtn .btn {
  border: 0px;
  width: 50%;
  padding: 13px 5px;
  margin-right: 15px;
  clip-path: polygon(0 0, 100% 0, 100% 32px, 94% 100%, 0 100%, 0% 100%);
}

.contactBtn .btn:last-child {
  margin-right: 0px;
}

.contactBtn .btn::after {
  display: none;
}

.comptechFooter {
  padding: 50px 0px;
}

.comptechFooter img {
  max-width: 100%;
}

@media (min-width: 768px) {
  .themeFooter .col-lg-3 {
    width: 30%;
  }

  .themeFooter .col-lg-4 {
    flex: 0 0 auto;
    width: 35%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .themeFooter .topFooter {
    padding: 20px 0px;
  }

  .themeFooter .topFooter .footerList {
    margin-top: 20px;
  }

  .themeFooter .topFooter .footerList li {
    padding: 0px 10px;
  }

  .secFooter .socialList {
    padding: 20px 15px;
  }

  .secFooter .companyContact a span {
    font-size: 16px;
    line-height: 18px;
  }

  .secFooter .companyContact a img {
    height: 20px;
  }

  .socialList ul li {
    padding: 0px 5px;
  }

  .socialList ul li img {
    height: 24px;
  }

  .comptechFooter {
    padding: 20px 0px;
  }

  .contactBtn .btn {
    padding: 10px 10px;
    width: auto;
    font-size: 14px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .themeFooter .topFooter {
    padding: 40px 0px;
  }

  .themeFooter .topFooter .footerList {
    margin-top: 20px;
    display: flex;
    justify-content: space-between !important;
  }

  .themeFooter .topFooter .footerList li {
    padding: 0px 5px;
  }

  .themeFooter .topFooter .footerList {
    justify-content: flex-start;
  }

  .secFooter> :first-child {
    padding: 10px 12px;
  }

  .secFooter .socialList {
    padding: 30px 0px;
    border-width: 1px 0px 1px 0px;
    margin: 15px 0px;
    height: auto;
  }

  .secFooter .companyContact a span {
    font-size: 16px;
    line-height: 18px;
  }

  .secFooter .companyContact a img {
    height: 20px;
  }

  .footerContactBtnSection {
    padding: 15px 12px;
  }

  .contactBtn .btn {
    width: auto;
    padding: 12px 25px;
  }

  .comptechFooter {
    padding: 50px 0px;
  }

  .comptechFooter img {
    max-width: 96%;
  }
}

@media screen and (max-width: 375px) {
  .contactBtn .btn {
    width: auto;
    font-size: 14px;
    padding: 11px 20px;
  }
}

/* Footer Section Css  End */
/* Book a test ride Modal Start */
.theme.modal-open {
  padding-right: 0px !important;
}

.themeModal.modal-static .modal-dialog {
  transform: scale(1);
}

.themeModal .modal-dialog {
  max-width: 95%;
}

.themeModal .modal-content {
  border-radius: 0px;
  border: 0px;
  position: relative;
}

.themeModal .btn-close {
  position: absolute;
  right: 30px;
  top: 30px;
  opacity: 1;
  z-index: 1;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/20px auto no-repeat;
}

.themeModal .cardBody {
  padding: 55px 50px;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: relative;
}

.themeModal .cardBody::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  background-color: var(--primaryColor);
  clip-path: polygon(0 0, 100% 0, 100% 0px, 0% 100%, 0 100%, 0% 100%);
}

.themeModal .cardBody .titleText {
  font-family: var(--AuthorMedium);
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #111111;
}

.themeModal .cardBody .smallText {
  font-family: var(--AuthorRegular);
  font-size: 16px;
  line-height: 22.03px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #4c4c4c;
  margin-bottom: 0px;
}

.themeModal .labelCustom {
  font-size: 16px;
  line-height: 16px;
  color: #6f6f6f;
  margin-bottom: 5px;
}

.themeModal .labelCustom .text-fill {
  color: red;
}

.themeModal .colorPlate {
  display: inline-block;
  width: 100%;
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.themeModal .colorPlate li {
  display: inline-block;
  width: auto;
  padding: 0px 5px;
  min-height: inherit;
  margin: 0;
}

.themeModal .colorPlate li .form-check-input {
  margin: 0px;
  float: inherit;
  border: 2px solid #e3e3e3;
  width: 48px;
  height: 48px;
  background: #fff !important;
  border-radius: 50%;
  padding: 0px;
  transition: 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.themeModal .colorPlate li .form-check-input:focus {
  box-shadow: none;
}

.themeModal .colorPlate li .form-check-input::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: 0.5s;
}

.themeModal .colorPlate li .form-check-input#colorBlack::after {
  background: linear-gradient(128.16deg,
      #131313 -5.6%,
      #4c4a4a 47.66%,
      #171717 90.44%);
}

.themeModal .colorPlate li .form-check-input#colorWhite::after {
  border: 1px solid #e3e3e3;
  background: linear-gradient(141.43deg,
      #f6f6f6 10.55%,
      #ffffff 51.81%,
      #eeeeee 98.1%);
}

.themeModal .colorPlate li .form-check-input#colorRed::after {
  background: linear-gradient(310.4deg,
      #951718 6.15%,
      #bf1e1f 50.23%,
      #611212 104.08%);
}

.themeModal .colorPlate li .form-check-input#colorGrey::after {
  background: linear-gradient(130deg,
      #6c6c6c -10.14%,
      #d2d2d2 49.41%,
      #8f8f8f 96.69%);
}

.themeModal .colorPlate li .form-check-input#colorBlue::after {
  background: linear-gradient(145.34deg,
      #24273e -4.09%,
      #294ece 52.03%,
      #172a6b 97.03%);
}

.themeModal .colorPlate li .form-check-input:checked::after {
  box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.5);
}

.themeModal .colorPlate li .form-check-input:checked {
  border-color: var(--primaryColor);
}

.themeModal .colorPlate li:first-child {
  padding-left: 0px;
}

.themeModal .submitBtn {
  margin-top: 20px;
}

.themeModal .submitBtn .btn {
  padding: 15px 20px;
  clip-path: polygon(0 0, 100% 0, 100% 39px, 94% 100%, 0 100%, 0% 100%);
  min-width: 200px;
}

.themeModal .submitBtn .btn::after {
  display: none;
}

.theme .themeModal .form-floating {
  margin-top: 30px;
}

.themeModal .bottomInfo {
  border-top: solid 1px #4c4c4c;
  padding-top: 20px;
}

.themeModal .bottomInfo .titleText {
  font-size: 20px;
  line-height: 19.96px;
  font-family: var(--AuthorMedium);
  text-align: left;
  color: #111111;
  margin-bottom: 5px;
}

.themeModal .bottomInfo .smallText {
  font-family: var(--AuthorMedium);
  font-size: 15px;
  line-height: 14.97px;
  text-align: left;
  color: #4c4c4c;
}

.themeModal .companyContact {
  display: inline-block;
  width: 100%;
  margin: 5px 0px;
}

.themeModal .companyContact a {
  display: flex;
  text-decoration: inherit;
  align-items: flex-start;
}

.themeModal .companyContact a img {
  margin-right: 5px;
}

.themeModal .companyContact a span {
  display: inline-flex;
  font-family: var(--AuthorMedium);
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  color: #4c4c4c;
  flex: 1;
}

.themeModal .rightSide {
  display: inline-block;
  width: 100%;
  position: relative;
  height: 100%;
}

.themeModal .rightSide img {
  max-width: 100%;
  max-height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.themeModal .infomation {
  position: absolute;
  top: 60px;
}

.themeModal .rightSide .slogo {
  padding-left: 50px;
}

.themeModal .rightSide .smallInfo {
  margin-top: 50px;
  font-family: var(--AuthorMedium);
  font-size: 32px;
  line-height: 34px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
  padding-left: 50px;
}

.themeModal .rightSide .priceSection {
  margin-top: 30px;
  padding: 15px 50px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 100%);
}

.rightSide .priceSection .startingFrom {
  font-family: var(--AuthorMedium);
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.01em;
  color: var(--whiteColor);
}

.rightSide .priceSection .price {
  font-family: "roundosemibold";
  font-size: 40px;
  font-weight: 500;
  line-height: 38px;
  color: var(--whiteColor);
  margin: 10px 0px 0px 0px;
}

.rightSide .priceSection .factory {
  font-family: var(--AuthorMedium);
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.01em;
  color: var(--whiteColor);
}

@media (min-width: 1280px) {
  .themeModal .modal-dialog {
    max-width: 1280px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .themeModal .btn-close {
    background-size: 17px;
    right: 15px;
    top: 15px;
  }

  .themeModal .infomation {
    position: absolute;
    top: 30px;
  }

  .themeModal .rightSide .smallInfo {
    margin-top: 20px;
    font-size: 22px;
    line-height: 26px;
    padding-left: 20px;
  }

  .themeModal .rightSide .slogo {
    padding-left: 20px;
  }

  .themeModal .cardBody {
    padding: 40px;
  }

  .themeModal .cardBody .titleText {
    font-size: 28px;
    line-height: 28px;
  }

  .themeModal .bottomInfo .titleText {
    font-size: 20px;
  }

  .themeModal .rightSide .priceSection {
    margin-top: 15px;
    padding: 15px 20px;
  }

  .rightSide .priceSection .price {
    font-size: 34px;
    line-height: 34px;
  }
}

@media screen and (max-width: 767px) {
  .themeModal .btn-close {
    background-size: 17px;
    right: 15px;
    top: 15px;
  }

  .themeModal .infomation {
    position: absolute;
    top: 30px;
  }

  .themeModal .rightSide .smallInfo {
    margin-top: 20px;
    font-size: 22px;
    line-height: 26px;
    padding-left: 20px;
  }

  .themeModal .rightSide .slogo {
    padding-left: 20px;
  }

  .themeModal .cardBody {
    padding: 40px 20px;
  }

  .themeModal .cardBody .titleText {
    font-size: 28px;
    line-height: 28px;
  }

  .themeModal .rightSide img {
    width: 100%;
  }

  .themeModal .rightSide {
    height: 400px;
  }

  .theme .themeModal .form-floating {
    margin-top: 15px;
  }

  .themeModal .bottomInfo .titleText {
    font-size: 20px;
  }

  .themeModal .rightSide .priceSection {
    margin-top: 15px;
    padding: 15px 20px;
  }

  .rightSide .priceSection .price {
    font-size: 34px;
    line-height: 34px;
  }

  .swiper-slide {
    max-width: 80%;
    max-height: 80%;
  }
}

@media screen and (max-width: 375px) {
  .themeModal .colorPlate li .form-check-input {
    width: 42px;
    height: 42px;
  }

  .themeModal .colorPlate li .form-check-input::after {
    width: 30px;
    height: 30px;
  }
}

/* Book a test ride Modal End */

.swiper-container,
.swiper-wrapper {
  display: flex;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  display: flex;
  align-items: flex-start;
  width: auto;
}

@media screen and (max-width: 600px) {
  .themeeExperience .map .stateBox {
    position: absolute;
    right: 0px;
    top: 20px;
  }
}

/* new changes */
.chart-text {
  transform: rotate(-90deg);
  white-space: nowrap;
  position: absolute;
  left: 80;
  top: 60%;
  transform: translate(-100%, -50%) rotate(-90deg);
  color: #000;
  font-size: 11.492px;
  font-style: normal;
  font-weight: 494;
  line-height: 118%;
}

/* bottom slider css */
#myCarousel {
  margin-top: 5rem;
}

.carousel-item .infoBody {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 113px;
}

.carousel-item .infoBody .mainText span {
  font-family: var(--AuthorMedium);
  font-size: 43px;
  line-height: 43px;
  letter-spacing: -0.02em;
  color: white;
  justify-content: center;
  align-items: center;
}

.carousel-item .infoBody .mainText {
  padding: 64px 64px;
  width: 80%;
  text-align: left;
  margin: 0 auto;
  top: 35%;
  position: absolute;
  border-radius: 20px;
  z-index: -1;
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.15);
}

.carousel-item .infoBody .mainText.red {
  background: linear-gradient(90deg, #b60000 0%, #ececec 100%);
}

.carousel-item .infoBody .mainText.grey {
  background: linear-gradient(90deg, #5d5d5d 0%, #ececec 100%);
}

.carousel-item .infoBody .mainText.black {
  background: linear-gradient(90deg, #151515 0%, #ececec 100%);
}

.carousel-item .infoBody .mainText.blue {
  background: linear-gradient(90deg, #273e9f 0%, #ececec 100%);
}

.carousel-item .infoBody .mainText.white {
  background: linear-gradient(90deg, #fff 0%, #ececec 100%);
}

.carousel-item .infoBody .mainText.white span {
  color: #000;
}

.carousel-item .infoBody .nextBtn {
  width: 87px;
  height: 87px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  background: #fff;
  position: absolute;
  right: 40px;
  top: 50%;
  align-items: center;
  justify-content: center;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: 0.1s;
}

.carousel-item .infoBody .nextBtn:hover {
  background: #e64b31;
  transition: 1s;
}

.carousel-item .infoBody .nextBtn:hover svg path {
  fill: #fff;
  transition: 0s;
}

.carousel-control-next,
.carousel-control-prev {
  width: 10%;
}

/* mobileviews initially hidden */
#bikeSliderMd {
  display: none;
}

.pricing-section-md,
#pricing-mobile {
  display: none;
}

/* mobileview  initially hidden end */

@media (max-width: 768px) {

  #myCarousel,
  #myCarousel .comptechSection,
  #pricing-desktop {
    display: none;
  }

  .pricing-section-md,
  #pricing-mobile {
    display: block !important;
  }

  #bikeSliderMd {
    padding: 16px 0px;
    margin-top: 50px;
    display: block !important;
  }

  #bikeSliderMd .carousel-inner {
    overflow: unset;
    position: unset;
  }

  #bikeSliderMd .carousel-item .bikeCard .mainText {
    font-size: 16px;
    line-height: 16px;
    padding: 16px;
    margin-bottom: 0px;
    flex-shrink: 0;
    color: #fff;
  }

  #bikeSliderMd .carousel-item {
    border-radius: 29px;
    border-radius: 20px;
    flex-shrink: 0;
  }

  .container-lg {
    /* padding: 0px; */
    overflow-x: hidden;
  }

  .container-lg .ractangle {
    padding: 0px;
    height: 170px;
    margin-top: -100px;
    background: url("../img/bike-slider-ractangle.png") lightgray 0px 0px / 100% 100.855% no-repeat;
    overflow-x: hidden;
  }

  #bikeSliderMd .carousel-item .bikeCard {
    border-radius: 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 351px;
  }

  .carousel-item .red {
    background: linear-gradient(180deg, #b60000 0%, #ececec 100%);
  }

  .carousel-item .grey {
    background: linear-gradient(180deg, #5d5d5d 0%, #ececec 100%);
  }

  .carousel-item .black {
    background: linear-gradient(180deg, #151515 0%, #ececec 100%);
  }

  .carousel-item .blue {
    background: linear-gradient(180deg, #273e9f 0%, #ececec 100%);
  }

  .carousel-item .white {
    background: linear-gradient(180deg, #fff 0%, #ececec 100%);
  }

  .carousel-item .white span {
    color: #000;
  }

  #bikeSliderMd img {
    flex-shrink: 0;
    max-height: 90%;
    margin-top: -20px;
  }

  #bikeSliderMd .carousel-item .bikeCard .mainText {
    font-family: var(--AuthorVariable);
    font-size: 36px;
    font-style: normal;
    font-weight: 494;
    line-height: 100%;
    letter-spacing: -0.72px;
    padding: 40px 96px 60px 96px;
    white-space: nowrap;
  }
}

/* bottom slider css */

/* specification cards css */
.specification-section {
  background: #f4f4f4;
  overflow-x: hidden;
}

.specification-section .card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 32px;
}

.specification-section .mainTitle {
  margin: 0px;
}

.specification-section .box-content {
  padding: 72px 0px 72px 0px;
}

.specification-section .card-body>div {
  margin-bottom: 10px;
  /* Adjust as needed */
}

.specification-section .card-title {
  color: var(--Black-Proper, #111);
  font-family: var(--AuthorVariable);
  font-size: 26px;
  font-style: normal;
  font-weight: 494;
  line-height: 100%;
  /* 26px */
  letter-spacing: -0.52px;
}

.specification-section .separator {
  width: 100%;
  padding: 36px 0px 36px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}

.specification-section .warranty-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.specification-section .warranty-details h2 {
  color: #312827;
  font-family: var(--AuthorVariable);
  font-size: 32px;
  font-style: normal;
  font-weight: 494;
  line-height: 100%;
  letter-spacing: -0.64px;
}

.specification-section .warranty-details span {
  color: #817776;
  font-family: var(--AuthorVariable);
  font-size: 17px;
  font-style: normal;
  font-weight: 375;
  line-height: 145%;
}

.specification-section .warranty-details.second {
  gap: 0px;
  margin-top: 10px;
}

.specification-section .warranty-details.second h4,
.specification-section .warranty-details h2 {
  margin-bottom: 0px;
}

.specification-section .icon {
  padding: 10px 0px 10px 0px;
}

.specification-section .bottom-btn {
  align-items: flex-start;
  gap: 13px;
  text-align: center;
}

.specification-section .bottom-btn a {
  color: #312827;
  text-align: center;
  font-family: var(--AuthorVariable);
  font-size: 16px;
  font-style: normal;
  font-weight: 494;
  padding: 9px 26px 9px 26px;
  background-color: white;
  line-height: normal;
  border: 1px solid;
  text-decoration: none;
}

/* mobile view */
@media (max-width: 768px) {
  .specification-section .box-content .row {
    gap: 20px;
  }

  .sub-menu {
    position: sticky;
    z-index: 1;
    top: 50px !important;
  }

  .price-table-header-md {
    position: sticky !important;
    background-color: white !important;
    top: 118px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  }

  .price-table-header-md img {
    padding: 16px 0px 10px 0px;
  }

  .item-style a {
    padding: 0.75rem 1.5rem !important;
  }

  .pricing-section {
    display: none !important;
  }

  .chart {
    height: 400px;
  }
}

/* specification cards css end */

/* pricing section start */
.pricing-section .title h2 {
  color: #312827;
  font-family: var(--AuthorVariable);
  font-size: 70px;
  font-style: normal;
  font-weight: 494;
  line-height: 100%;
  /* 70px */
}

.pricing-section .price-table span {
  color: #000;
  font-family: var(--AuthorVariable);
  font-size: 20px;
  font-style: normal;
  font-weight: 494;
  line-height: 100%;
}

.pricing-section .price-table span.value {
  font-family: "roundoregular";
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 20px */
}

/* pricing table footer */
.pricing-section .price-info {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-section .price-title {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 494;
  line-height: 100%;
}

.view-price {
  color: var(--Saffron, #e64b31);
  font-size: 14px;
  font-style: normal;
  font-weight: 494;
  line-height: 120%;
  letter-spacing: 0.14px;
  text-decoration: none;
  cursor: pointer;
}

.price-amount {
  margin-bottom: 12px;
  color: #000;
  font-family: "roundomedium";
  font-size: 32px;
  font-style: bold;
  font-weight: 800;
  line-height: 100%;
}

/* pricing table footer end */

.col-custom {
  width: 287px;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 60px;
}

.col-custom-header {
  width: 287px;
  /* padding: 89px 0px 30px 0px; */
  display: inline-block;
  vertical-align: bottom;
}

.btn-custom {
  font-size: 16px;
  margin-top: 30px !important;
  line-height: normal;
  font-family: var(--AuthorMedium);
  text-transform: uppercase;
  border: solid 1px #fff;
  background: #e64b31;
  border-radius: 0px;
  position: relative;
  padding: 10px 20px;
  clip-path: polygon(0 0, 100% 0, 100% 30px, 94% 100%, 0 100%, 0% 100%);
}

.btn-custom .order-amount {
  color: var(--White, #fff) !important;
  font-family: "roundomedium";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.price-table {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}

.price-table-header {
  position: sticky;
  top: 125px;
  /* z-index: 10; */
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 15px 0px;
}

.value {
  color: #333;
  font-weight: bold;
}

/* pricing section end */

/* header menu Section start */
.sub-menu {
  position: sticky;
  top: 64px;
  z-index: 10;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--White, #fff);
  border-bottom: 1px solid var(--New-13, #dcddde);
}

.custom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
}

.item-style a {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: -13px;
  position: relative;
  padding: 1.25rem 1.5rem;
}

.item-style a.active {
  color: var(--Saffron, #e64b31);
  border-bottom: 1px solid var(--Saffron, #e64b31);
}

.link {
  color: var(--New-11, #414042);
  text-align: center;
  font-family: var(--AuthorVariable);
  font-size: 16px;
  font-style: normal;
  font-weight: 494;
  line-height: 22.4px;
  text-decoration: none;
}

.icon-border {
  display: none;
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 10px;
  height: 13px;
  fill: var(--Saffron, #e64b31);
}

.link.active .icon-border {
  display: block;
}

/* header menu Section end */
/* pricing section mobile view */

.pricing-section-md {
  padding: 30px 16px;
}

.pricing-section-md .row .col-4:first-child {
  background: #F5F5F5;
  padding: 30px 16px;
  color: #000;
  font-family: --var(--AuthorVariable);
  font-size: 16px;
  font-style: normal;
  font-weight: 494;
  line-height: 100%;
}

.pricing-section-md .price-info {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-section-md .price-title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 494;
  line-height: 100%;
}

.pricing-section-md .view-price {
  color: var(--Saffron, #e64b31);
  font-size: 14px;
  font-style: normal;
  font-weight: 494;
  line-height: 120%;
  letter-spacing: 0.14px;
  text-decoration: none;
  cursor: pointer;
}

.pricing-section-md .price-amount {
  text-decoration: none;
  margin-bottom: 12px;
  color: #000;
  font-family: "roundomedium";
  font-size: 22px;
  font-style: bold;
  font-weight: 800;
  line-height: 100%;
}

.pricing-section-md .btn-custom {
  margin-top: 20px !important;
  padding: 10px 20px !important;
}

.pricing-section-md .row .value {
  color: #000 !important;
  font-family: "roundoregular";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.pricing-section-md .title {
  font-size: 32px;
  color: #312827;

}

.small-img {
  width: 130px;
}


/* slider image */
.carousel-item .slider-image {
  width: 40rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item .slider-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* order status model */
@media screen and (max-width: 768px) {
  #BookNowSuccessModal .cardBody {
    max-width: 100vw;
    padding: 20px 16px;
  }

  #BookNowSuccessModal .cardBody .paymentdetails {
    padding: 30px 0px;
  }
}


/* Our Dealers Section Start */
.ourDealers {
    padding: 70px 0px;
}

.ourDealers .border-bottom {
    border-color: #DFDFDF;
}

.ourDealers .title {
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -0.02em;
    text-align: left;
    font-family: var(--AuthorMedium);
    color: #312827;
}

.ourDealers .selectMain {
    width: auto;
    display: inline-block;
    position: relative;
}

.ourDealers .selectMain label {
    font-family: var(--AuthorMedium);
    font-size: 20px;
    line-height: 20px;
    color: #000;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    padding-left: 10px;
    margin: 0px;
}

.ourDealers .selectMain .select2-selection--single {
    border-color: #D0D0D0;
    text-align: left;
    height: auto;
    border-radius: 8px !important;
}

.ourDealers .selectMain .select2-selection--single .select2-selection__rendered {
    font-family: var(--AuthorMedium);
    font-size: 20px;
    line-height: 24px;
    color: var(--primaryColor);
    padding: 8px 40px 8px 60px;

}

.ourDealers .selectMain .select2-selection--single .select2-selection__arrow {
    height: 100%;
    width: 40px;
    display: flex;
    justify-content: center;
}

.ourDealers .selectMain .select2-container {
    width: auto !important;
}

.ourDealers .selectMain .select2-selection--single .select2-selection__arrow b {
    border: 0px;
    width: 16px;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0;
    left: inherit;
    top: 40%;
    background-image: url('../img/down-icon.svg');
}

.theme .select2-dropdown {
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
    border: 0px;
}

.theme .select2-container--default .select2-results>.select2-results__options {
    max-height: 350px;
    padding: 5px 15px;
}

.theme .select2-results__option {
    font-size: 18px;
    color: #000;
    line-height: 21px;
    border-bottom: solid 2px #ddd;
    transition: 0.5s;
    padding: 8px 0px;
}

.theme .select2-results__option:last-child {
    border-bottom: 0px;
}

.theme .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #fff;
    color: #000;
    border-bottom-color: var(--primaryColor);
}

.theme .select2-container--default .select2-results__option--selected {
    background-color: #fff;
}

.ourDealers .card {
    border-color: #DCDCDC;
    border-radius: 12px;
    height: calc(100% - 24px);
    margin: 12px 0px;
}

.ourDealers .card .card-body {
    padding: 25px;
}

.ourDealers .card .cardHeader {
    display: flex;
    margin-bottom: 10px;
}

.ourDealers .card .leftSide {
    flex: 1;
    padding-right: 15px;
}

.ourDealers .card .smallTitle {
    font-family: var(--AuthorMedium);
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: left;
    text-decoration-skip-ink: none;
    color: var(--primaryColor);
    margin-bottom: 0px;
}

.ourDealers .card .smallInfo {
    display: inline-block;
    font-family: var(--AuthorMedium);
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.02em;
    text-align: left;
    color: #111;
}

.ourDealers .card .rightSide .btn-dark {
    font-size: 18px;
    font-family: var(--AuthorRegular);
    padding: 7px 15px;
    text-decoration: inherit;
    display: inline-flex;
    border-radius: 8px
}

.ourDealers .card .rightSide .icon {
    margin-right: 5px;
    width: 16px;
}

.ourDealers .card .dealerInfo {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.ourDealers .card .dealerInfo li {
    display: flex;
    text-decoration: inherit;
    align-items: flex-start;
    margin-bottom: 12px;
}

.ourDealers .card .dealerInfo .icon {
    margin-right: 10px;
}

.ourDealers .card .dealerInfo .infoText {
    display: inline-flex;
    font-family: var(--AuthorRegular);
    font-size: 18px;
    line-height: 20px;
    text-align: left;
    color: #111;
    flex: 1;
}

.ourDealers .card .smallName {
    font-family: var(--AuthorRegular);
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #111;
}

.ourDealers .card .smallName span {
    color: #4c4c4c;
}

@media screen and (max-width: 1080px) {
    .ourDealers {
        padding: 30px 0px;
    }

    .ourDealers .title {
        font-size: 46px;
        line-height: 50px;
    }

    .ourDealers .card .card-body {
        padding: 20px;
    }

    .ourDealers .card .smallTitle {
        font-size: 26px;
        line-height: 26px;
    }

    .ourDealers .card .smallInfo {
        font-size: 18px;
    }

    .ourDealers .card .rightSide .btn-dark {
        font-size: 16px;
        padding: 7px 12px;
    }

    .ourDealers .card .rightSide .icon {
        width: 14px;
    }

    .ourDealers .card .dealerInfo .infoText {
        font-size: 16px;
        line-height: 18px;
    }

    .ourDealers .card .dealerInfo .icon {
        height: 20px;
    }

    .ourDealers .card .smallName {
        font-size: 16px;
        line-height: 18px;
    }

    .ourDealers .selectMain label {
        font-size: 16px;
        line-height: 16px;
    }

    .ourDealers .selectMain .select2-selection--single .select2-selection__rendered {
        font-size: 16px;
        line-height: 20px;
        padding: 8px 35px 8px 50px;
    }

    .ourDealers .selectMain .select2-selection--single .select2-selection__arrow {
        width: 33px;
    }

    .ourDealers .selectMain .select2-selection--single .select2-selection__arrow b {
        width: 12px;
        height: 10px;
    }

    .ourDealers .card {
        height: calc(100% - 20px);
        margin: 10px 0px;
    }
}

@media screen and (max-width: 767px) {
    .ourDealers .title {
        font-size: 34px;
        line-height: 48px;
    }


    .ourDealers .card .card-body {
        padding: 15px;
    }

    .ourDealers .card .dealerInfo li {
        margin-bottom: 10px;
    }

    .ourDealers .card .dealerInfo .icon {
        margin-right: 5px;
    }
}

.disabled{
  background: #ddd !important;
}
/* Our Dealers Section End */

.price-amount strike{
  font-size: 20px;
  color: #a1a0a0;
}
