/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Michroma&display=swap");

:root {
  --clr-white: #fff;
  --clr-black: #000;
  --clr-black-400: #525252;
  --clr-heading: #1e1e1e;
  --clr-bg: #f4f4f4;
  --clr-border: #e7e7e7;
  --ff-primary: "Michroma", sans-serif;
  --ff-body: "Manrope", sans-serif;
  --transition: 0.4s all ease-in-out;
}

/*=====Reset CSS======*/
article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
label {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="button"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  text-decoration: none;
  font-style: normal;
}

a:focus,
button:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a,
label {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
}

figure {
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

figure,
img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield;
}

.svg_container {
  display: none;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-heading);
}

::-moz-selection {
  background-color: var(--clr-heading);
  color: var(--clr-white);
}

::selection {
  background-color: var(--clr-heading);
  color: var(--clr-white);
}

/* Reset-css--------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  font-weight: 400;
  color: var(--clr-heading);
  text-transform: uppercase;
}

h3 {
  font-size: 28px;
  line-height: 40px;
  text-transform: uppercase;
}

/* Global Headings */

.custom__bg {
  background-color: var(--clr-bg);
}

.custom__pad {
  padding: 75px 0;
}

a {
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
}

section {
  position: relative;
}

.lease__btn {
  display: inline-flex;
  background-color: var(--clr-heading);
  padding: 0 26px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 100%;
  font-family: var(--ff-primary);
  border-radius: 36px;
  color: var(--clr-white);
  border: 1px solid var(--clr-heading);
  transition: var(--transition);
  text-transform: capitalize;
}

.lease__btn:hover {
  background-color: transparent;
  color: var(--clr-heading);
  transition: var(--transition);
}

.lease__btn.lease__btn-white {
  background-color: var(--clr-white);
  color: var(--clr-heading);
  border-color: var(--clr-white);
  transition: var(--transition);
}

.lease__btn.lease__btn-white:hover {
  transition: var(--transition);
  border: 1px solid var(--clr-heading);
  background-color: var(--clr-heading);
  color: var(--clr-white);
}

.lease__btn.lease__btn-outline {
  background-color: transparent;
  color: var(--clr-heading);
}

.lease__btn.lease__btn-outline:hover {
  background-color: var(--clr-heading);
  color: var(--clr-white);
  transition: var(--transition);
}

.lease__btn.lease__btn-outline:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(12%) saturate(7500%) hue-rotate(295deg) brightness(128%) contrast(111%);
}

.overlay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(357.11deg,
      rgba(0, 0, 0, 0.45) 30.18%,
      rgba(0, 0, 0, 0.81) 97.6%);
  z-index: 1;
  top: 0;
  left: 0;
}

.lease__radius {
  border-radius: 16px;
  overflow: hidden;
}

.lease__img {
  width: 100%;
  height: 100%;
  position: relative;
}

.lease__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-white p,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
  color: var(--clr-white);
}

p {
  color: var(--clr-heading);
}

h6 {
  line-height: 1.6;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

h5 {
  font-size: 24px;
  line-height: 1.6;
}

.lease__heading h1 {
  font-size: 55px;
  line-height: 60px;
}

.lease__heading h2,
h2 {
  font-weight: 400;
  font-size: 45px;
  line-height: 1.5;
  text-transform: uppercase;
}

.text-white .lease__heading h2 {
  color: var(--clr-white);
}

.lease__headwrap {
  margin-bottom: 26px;
}

.container {
  max-width: 1660px;
}

/* lease__header ================================================= */
.lease__header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.header_menu_img img {
  margin: 0 auto;
  width: 100%;
}
.lease__header .navbar-brand {
  padding: 0;
  margin: 0;
}
.lease__header-mob .lease__header-logo {
  display: none;
}
.lease__header-menulink {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.lease-logo {
  width: 62px;
  height: 62px;
}

.lease-logo img {
  object-fit: contain;
}

.lease-logo .navbar-brand {
  padding: 0;
  margin: 0;

}

.lease__header .nav-link {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--clr-white);
  padding: 0 !important;
  margin: 0;
  position: relative;
  transition: var(--transition);
}

.lease__header .nav-link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--clr-white);
  transition: var(--transition);
}

.lease__header .nav-link:hover::before {
  width: 100%;
  transition: var(--transition);
}

.lease__menu-nav {
  justify-content: space-between;
  gap: 20px 75px;
}

/* banner======================================================= */
.lease__banner-video {
  width: 100%;
  height: 100%;
  position: relative;
}

.lease__banner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lease__banner-contentwrap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 2;
}

.lease__banner-btnwrap .lease__banner-btn {
  width: 190px;
  height: 190px;
  border: 1px solid var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-direction: column;
  row-gap: 20px;
  margin: 70px auto;
  color: var(--clr-white);
  font-size: 18px;
}

.lease__banner-btnwrap .lease__banner-btn img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: inline-block;
}

.lease__banner-content h1 {
  text-transform: uppercase;
}

.lease__banner-content .lease__content {
  width: 60%;
  margin: 0 auto;
}

/* banner======================================================= */

/* lease__rent-tabsec =================================== */

.lease__rent-tabsec {
  background: rgba(0, 0, 0, 0.08);
}

.lease__rent-main {
  display: flex;
  gap: 26px;
  align-items: center;
}

.lease__rent-navtab {
  width: fit-content;
  flex: 0 0 auto;
}

.lease__rent-navtab {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lease__rent-navtab .nav-link span {
  display: inline-flex;
  width: 36px;
  height: 36px;
}

.lease__rent-navtab .nav-link span img {
  object-fit: contain;
}

.lease__rent-navtab .nav-link {
  background-color: var(--clr-white);
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 185px;
  border-radius: 50px;
  padding: 16px 22px;
  font-size: 18px;
  color: var(--clr-heading);
  transition: var(--transition);
  border: none;
}

.lease__rent-navtab .nav-link.active,
.lease__rent-navtab .nav-link:hover {
  background-color: var(--clr-heading);
  color: var(--clr-white);
  transition: var(--transition);
  border: none;
}

.lease__rent-navtab .nav-link.active span img,
.lease__rent-navtab .nav-link:hover span img {
  transition: var(--transition);
  filter: brightness(0) saturate(100%) invert(100%) sepia(12%) saturate(7500%) hue-rotate(295deg) brightness(128%) contrast(111%);
}

.lease__rent-tabcontwrap .laese__btnwrap {
  text-align: center;
}

.lease__rent-contright> :not(:last-child) {
  padding-bottom: 16px;
}

.lease__rent-tabcontwrap {
  padding-left: 60px;
}

/* lease__rent-tabsec =================================== */

/* solution section-============================== */
.lease__solution-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
 .lease__solution-cont p {
    padding-top: 6px;
  }

.lease__solution-wrapper>* {
  width: 32%;
  height: 100%;
  position: relative;
}

.lease__solution-wrapper .lease__solution-single:nth-child(4),
.lease__solution-wrapper .lease__solution-single:nth-child(5) {
  width: 49%;
}

.lease__solution-single .overlay::before {
  background: linear-gradient(120.57deg, rgba(0, 0, 0, 0.6) 4.5%, rgba(0, 0, 0, 0.23) 68.57%);
}

.lease__solution-single .lease__img {
  position: absolute;
  top: 0;
  left: 0;
}

.lease__solution-contwrap {
  position: relative;
  height: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  z-index: 2;
}

.lease__solution-cont {
  width: 65%;
}

/* solution section-============================== */
/* cta section---------------------------------------------------- */

.lease__cta-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.lease__cta-content> :not(:last-child) {
  margin-bottom: 20px;
}

.lease__cta-fleet .lease__cta-content {
  width: 50%;
}

.lease__cta-industry .overlay::before {
  background: linear-gradient(249.36deg,
      rgba(0, 0, 0, 0.45) 7.57%,
      rgba(0, 0, 0, 0.28) 63.68%);
}

.lease__cta-industry .lease__cta-content {
  width: 90%;
}

/* cta section---------------------------------------------------- */
/* industry solution section-============================== */

.lease__industry-single {
  width: 100%;
  background-color: var(--clr-bg);
  height: 100%;
  position: relative;
}

.lease__industry-single a {
  display: block;
}

.lease__industry-cont {
  position: absolute;
  top: 0;
  padding: 20px;
  z-index: 1;
  left: 0;
  width: 100%;
}

.lease__industry-cont p {
  text-transform: uppercase;
}

/* industry solution section-============================== */
/* counter section=========================================== */
.lease__counter-single {
  background-color: var(--clr-bg);
  padding: 20px;
  height: 100%;
  border: 1px solid var(--clr-border);
}

.lease__counter-head h6 {
  font-size: 32px;
  text-transform: uppercase;
}

.lease__counter-head .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
}

.lease__counter-head .icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.lease__counter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.lease__counter-single .lease__content {
  width: 75%;
}

/* counter section=========================================== */
/* lease__progress section=========================================== */
.lease__progress-main {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 2;
}

.lease__progress-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.lease__progress-single {
  border-left: 1px dashed var(--clr-white);
  padding-left: 16px;
  margin-left: 16px;
}

.lease__progress-wrap .lease__progress-single:first-child {
  border: none;
  padding: 0;
  margin: 0;
}

.lease__progress-wrap>* {
  width: 24%;
}

.lease__progress-single .icon img {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

.lease__progress-single h6 {
  text-transform: uppercase;
  width: 80%;
  margin: 26px auto 0;
}

.lease__progress-bg.overlay::before {
  background: rgba(0, 0, 0, 0.32);
}

/* lease__progress section=========================================== */

/* lease__choose section=========================================== */

.lease__choose-bg.overlay::before {
  background: rgba(0, 0, 0, 0.2);
}

.lease__choose-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.lease__accordion .lease__accordion-button {
  color: var(--clr-heading);
  font-size: 24px;
  text-transform: uppercase;
  backdrop-filter: blur(49.20000076293945px);
  background: rgba(255, 255, 255, 0.42);
  padding: 30px;
  box-shadow: none;
  transition: var(--transition);
  padding-right: 150px;
  line-height: 1.4;
}

.lease__accordion .lease__accordion-item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.lease__accordion .accordion-header {
  transition: var(--transition);
}

.lease__accordion .lease__accordion-item {
  overflow: hidden;
  color: var(--clr-white);
  border-radius: 16px;
}

.lease__accordion .lease__accordion-body {
  background: rgba(0, 0, 0, 0.42);
  padding: 0 160px 25px 35px;
  font-size: 18px;
}

.lease__accordion .lease__accordion-body p {
  color: var(--clr-white);
}

.lease__accordion .lease__accordion-item:has(.accordion-collapse.show) .lease__accordion-button {
  backdrop-filter: unset;
  border: none;
  background: rgba(0, 0, 0, 0.42);
}

.lease__accordion .lease__accordion-button:not(.collapsed) {
  color: var(--clr-white);
  background-color: unset;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.42);
}

.lease__accordion-item:last-of-type .lease__accordion-button.collapsed {
  border-radius: 0;
}

.lease__accordion-item:first-of-type .lease__accordion-button {
  border-radius: 0;
}

.lease__accordion .lease__accordion-button::after {
  background: url(../images/accordian_arrow.png) no-repeat right;
  position: absolute;
  right: 40px;
  width: 25px;
  height: 30px;
  transform: rotate(0deg);
  transition: var(--transition);
}

.lease__accordion .lease__accordion-button:not(.collapsed)::after {
  background: url(../images/accordian_arrow.png) no-repeat right;
  filter: brightness(0) saturate(100%) invert(100%) sepia(96%) saturate(0%) hue-rotate(19deg) brightness(103%) contrast(104%);
  transform: var(--bs-accordion-btn-icon-transform);
}

.lease__accordion.lease__choose-accordion {
  padding-left: 150px;
  padding-top: 25px;
}

/* lease__choose section=========================================== */

/* lease-product and tab section=========================== */
.lease__tab-single {
  position: relative;
  background-color: var(--clr-bg);
}

.lease__tab-single .lease__img img,
.lease__insight-single .lease__img img {
  transform: scale(1);
  transition: var(--transition);
}
.lease__tab-single .lease__img:hover img ,
.lease__insight-single .lease__img:hover img{
  transform: scale(1.03);
  transition: var(--transition);
}
.lease__tab-single .lease__img ,
.lease__insight-single .lease__img{
  overflow: hidden;
}
.lease__tab-contwrap {
  padding: 20px;
}

.lease__tab-contwrap> :not(:last-child) {
  margin-bottom: 24px;
}

.lease__tab-btn {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
}

.lease__tab-btn .lease__btn {
  font-family: var(--ff-body);
  font-size: 18px;
  padding: 0 20px;
  min-height: 40px;
}

.lease__tab-price {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid #939393;
  padding-bottom: 24px;
}

.lease__tab-price p span {
  display: block;
  padding-top: 12px;
}

.lease__tab-price ul {
  display: flex;
  align-items: center;
}

.lease__tab-price ul li+li {
  border-left: 1px solid var(--clr-black-400);
  padding-left: 8px;
  margin-left: 8px;
}

.lease__tab-price ul li,
.lease__tab-price p {
  color: var(--clr-black-400);
  line-height: 100%;
}

.lease__list {
  position: relative;
}

.lease__list li {
  position: relative;
  padding-left: 26px;
  line-height: 100%;
  color: var(--clr-black-400);
}

.lease__list li+li {
  margin-top: 26px;
}

.lease__list li::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/check-icon.png");
  background-repeat: no-repeat;
  background-size: 100%, 100%;
}

.lease__tab-single .lease__btn.lease__btn-outline {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 55px;
  border-color: #939393;
}

.lease__tab-single .lease__btn.lease__btn-outline span img {
  width: 25px;
  object-fit: contain;
}

.lease__tab-nav {
  width: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: end;
}

.lease__tab-nav .nav-tabs {
  display: flex;
  gap: 12px;
  border: none;
  justify-content: end;
}

.lease__tab-nav .nav-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-bg);
  padding: 10px 26px;
  color: var(--clr-heading);
  border: none;
  border-radius: 25px;
  transition: var(--transition);
}

.lease__tab-nav .nav-link.active,
.lease__tab-nav .nav-link:hover {
  background-color: var(--clr-black);
  color: var(--clr-white);
  transition: var(--transition);
}

/* lease-product and tab section=========================== */

/* lease__business ========================================= */
.lease__business-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.lease__business-wrapper {
  position: relative;
  z-index: 2;
}

.lease__business-planwrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  border: 2px solid var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  padding: 26px;
  width: 70%;
  margin-left: auto;
}

.lease__business-plan .lease__btn {
  width: 100%;
}

.lease__business-plan {
  width: 48%;
  background-color: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  padding: 22px;
  height: 100%;
}

.lease__business-plan> :not(:last-child) {
  margin-bottom: 20px;
}

.lease__business-plan .lease__list {
  border-top: 1px solid #939393;
  padding-top: 26px;
}

/* lease__business ========================================= */
/* appointment form=========================== */
.lease__appointement-form {
  text-align: center;
  margin: auto;
}

.lease__appointement-form .form_btn {
  margin-top: 20px;
}

.form_fields {
  background: var(--clr-bg);
  border-radius: 16px;
  padding: 40px 40px 30px;
  color: var(--clr-black-400);
  font-size: 18px;
  background-image: url("../images/contact-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100% 100%;
}

.appnt_input {
  max-width: 230px;
  padding: 0 15px;
  border: none;
  border-bottom: 1px solid var(--clr-heading);
  background: transparent;
  margin-bottom: 25px;
  color: var(--clr-heading);
}

.form_fields select {
  color: var(--clr-black-400);
  font-size: 18px;
  border-radius: 8px;

  background: var(--clr-white);
  min-width: 220px;
  padding: 6px 12px;

  cursor: pointer;
}

.appnt_checkbox {
  color: var(--clr-black-400);
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  position: relative;
  cursor: pointer;
  column-gap: 10px;
  flex-direction: row-reverse;
}

.appnt_checkbox input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.appnt_box {
  width: 25px;
  height: 25px;
  box-sizing: border-box;
  border: 1px solid rgba(82, 82, 82, 1);
  border-radius: 4px;
  position: relative;
  z-index: -1;
}

.appnt_checkbox input:checked~.appnt_box {
  background: var(--heading_color);
}

/* appointment form=========================== */

/* multi step form section============================================== */
.lease__form-headwrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--clr-black-400);
  padding-bottom: 20px;
}

.lease__form-headwrap span {
  display: inline-flex;
  width: 55px;
  height: 55px;
}

.lease__form-plan {
  background-color: var(--clr-heading);
  height: 100%;
  padding: 20px;
}

.lease__form-right> :not(:last-child) {
  margin-bottom: 20px;
}

.lease__form-plan> :not(:last-child) {
  padding-bottom: 20px;
}

.lease__form-plan-price h3 {
  font-size: 26px;
}

.lease__form-plan-price h3 span {
  font-size: 18px;
  display: inline-flex;
}

.lease__form-plan-description {
  background-color: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;
  display: flex;
  gap: 8px;
  align-items: start;
}

.lease__form-plan-description p {
  color: var(--clr-black-400);
}

.lease__form-plan-description span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.lease__form-plan-description span img {
  object-fit: contain;
}

.lease__form {
  background-color: var(--clr-bg);
  padding: 20px;
}

.lease__form .lease__heading {
  padding-bottom: 16px;
}

.lease__form .form-control,
.lease__form .form-select {
  font-size: 18px;
  color: var(--clr-black);
  background-color: var(--clr-white);
  border: none;
  border-radius: 12px;
  padding: 18px 12px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.form-control:focus {
  box-shadow: unset;
}

/* laese__multistep-form=========================================== */

.lease__form-sec .lease__headwrap {
  margin-bottom: 46px;
}

.laese__multistep-form legend {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--clr-heading);
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 20px;
}

.laese__multistep-form legend span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--clr-heading);
  color: var(--clr-white);
  border-radius: 50%;
  font-size: 13px;
  font-family: var(--ff-body);
}

.laese__multistep-form .form-check-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
}

.laese__multistep-form .form-check .wpcf7-list-item {
  margin: 0;
}

.laese__multistep-form .form-check-input[type="radio"],
.laese__multistep-form .form-check-input[type="checkbox"] {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.laese__multistep-form .form-check {
  position: relative;
  padding: 0;
  display: inline-block;
}

.laese__multistep-form .form-check-input[type="radio"]:checked+.form-check-label,
.laese__multistep-form .form-check-input[type="checkbox"]:checked+.form-check-label {
  font-weight: 500;
  background-color: var(--clr-bg);
  border: 1px solid var(--clr-black);
}

.laese__multistep-form .form-check-wrap label {
  background-color: var(--clr-bg);
  position: relative;
  color: var(--clr-heading);
  padding: 26px 20px;
  border-radius: 16px;
  font-size: 18px;
  line-height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  flex-direction: column;
  gap: 6px;
  height: 100%;
}

.laese__multistep-form .form-check-wrap>* {
  width: 19%;
  flex: 1;
}

.laese__multistep-form .form-check-wrap input {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.laese__multistep-form .form-check-wrap label:has([type="radio"]:checked),
.laese__multistep-form .form-check-wrap label:has([type="checkbox"]:checked) {
  background-color: var(--clr-theme-color);
  color: var(--clr-theme-white);
}

.laese__multistep-form .form-check-wrap .wpcf7-radio,
.laese__multistep-form .form-check-wrap .wpcf7-checkbox {
  display: flex;
  clear: unset;
  flex-wrap: wrap;
  gap: 8px 8px;
}

.laese__multistep-form .form-check-wrap .wpcf7-list-item {
  margin: 0;
}

.laese__multistep-form fieldset+fieldset {
  margin-top: 30px;
}

.vehicle-icon {
  display: inline-flex;
  width: 55px;
  height: 55px;
}

.vehicle-icon img,
.use-icon img {
  object-fit: contain;
}

.use-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.form-use {
  display: flex;
  align-items: center;
  gap: 12px;
}

.laese__multistep-form .form-select,
.laese__multistep-form .form-control {
  font-size: 18px;
  color: var(--clr-black);
  background-color: var(--clr-bg);
  border: none;
  border-radius: 12px;
  padding: 18px 18px;
}

.additonal-info {
  margin-top: 20px;
}

.lease__form-right {
  position: sticky;
  top: 25px;
}

/* multi step form section============================================== */

/* lease__works======================== */
.lease__works-wrapper {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.lease__works-wrapper>* {
  width: 19%;
}

.lease__works-single {
  background-color: var(--clr-bg);
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 300px;
  justify-content: space-between;
  transition: var(--transition);
}

.lease__works-single:hover {
  background-color: #CCCCCC;
  transition: var(--transition);
}

.lease__works-cont> :not(:last-child) {
  padding-bottom: 12px;
}

.lease__works-single .number {
  display: inline-flex;
  width: 60px;
  height: 60px;
  background-color: var(--clr-white);
  justify-content: center;
  align-items: center;
  color: var(--clr-black);
  font-size: 24px;
  border-radius: 50%;
}

/* lease__works======================== */

/* footer---------------------------------------- */

.appointmnet_form .black_glbl_btn {
  display: inline-flex;
  padding: 0;
  margin-top: 25px;
}

.lease__footer {
  background: var(--clr-heading);
  padding: 40px 0 20px;
  position: relative;
}

.ftr_bnr_img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.ftr_bnr_img.overlay::before {
  background: linear-gradient(85.96deg,
      rgba(0, 0, 0, 0.56) 2.26%,
      rgba(0, 0, 0, 0) 49.87%);
}

.ftr_bnr_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.footer_bnr {
  position: relative;
}

.ftr_info {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.ftr_info h6 {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ftr_info a {
  color: var(--clr-white);
  font-family: var(--ff-primary);
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1.2;
}

.ftr_info a:hover {
  opacity: 0.7;
}

.footer_mid {
  text-align: center;
  margin: 45px 0 75px;
}

.lease_footer_logo img {
  height: 200px;
  object-fit: contain;
  margin: auto;
}

.footer_bottom li a {
  color: var(--clr-white);
  font-size: 18px;
  position: relative;
}

.footer_bottom li a:hover::after {
  width: 100%;
  right: unset;
  left: 0;
}

.footer_bottom li a::after {
  content: "";
  position: absolute;
  width: 0;
  left: unset;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--clr-white);
  transition: var(--transition);
}

.footer_bottom ul {
  display: flex;
  align-items: center;
  column-gap: 60px;
  row-gap: 10px;
  flex-wrap: wrap;
}

.footer_bottom ul li:nth-child(4) {
  margin-left: auto;
}

.footer_btm_text {
  font-size: 18px;
  text-align: center;
  border-top: 1px solid #fff;
  margin-top: 20px;
  padding-top: 20px;
}

.footer_btm_text a {
  color: var(--clr-white);
}

.footer_btm_top {
  color: var(--clr-white);
  font-size: 18px;
  text-align: center;
  max-width: 370px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 56px;
}

.footer_bottom {
  position: relative;
}

.lease__footer::after {
  content: "";
  position: absolute;
  background: url(../images/footer_shape.png) no-repeat center;
  background-size: 100% 100%;
  inset: 0;
}

.lease__footer {
  position: relative;
}

.lease__footer .container {
  position: relative;
  z-index: 1;
}

/* breadcrumb==================================== */
.lease__banner-inner .lease__banner-img.overlay::before {
  background: rgba(0, 0, 0, 0.2);
}

.lease__banner-inner .lease__banner-contentwrap {
  top: unset;
  text-align: left;
  transform: unset;
  bottom: 30px;
}

.lease__banner-breadcrumb {
  padding-top: 12px;
}

.breadcrumb-item {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--clr-white);
}

.breadcrumb-item a {
  color: var(--clr-white);
}

.breadcrumb-item.active {
  color: var(--clr-white);
  font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "-";
  color: var(--clr-white);
}


/* breadcrumb==================================== */


/* about page ==================================== */

.lease__headwrap> :not(:last-child) {
  padding-bottom: 16px;
}

.lease__content> :not(:last-child) {
  padding-bottom: 14px;
}


.lease__about-imgwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 26px;
}

.lease__about-imgwrap>* {
  width: 49%;
}

.lease__about-way-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin: 20px 0 35px;
}

.lease__about-waysingle {
  width: 33%;
  height: 100%;
  position: relative;
  transform: scale(0.90);
}

.lease__about-waysingle .lease__img {
  position: absolute;
  top: 0;
  left: 0;
}

.lease__about-waycontwrap {
  position: relative;
  height: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  z-index: 2;
}

.lease__about-way-wrap .lease__about-waysingle:nth-child(2) {
  transform: scale(1);
}

.lease__about-waysingle .overlay::before {
  background: linear-gradient(6.1deg, rgba(0, 0, 0, 0.5) 13.81%, rgba(0, 0, 0, 0) 29.97%);
}

.lease__about-wayheading .icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  background-color: var(--clr-white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

.lease__about-wayheading .icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.lease__about-waycont {
  background-color: var(--clr-white);
  border-radius: 12px;
  padding: 12px;
  overflow: hidden;
}

.lease__about-waycont h6 {
  padding-bottom: 8px;
  font-size: 18px;
}

.lease__cta-about .overlay::before {
  background: linear-gradient(121.21deg, rgba(0, 0, 0, 0.5) 27.45%, rgba(0, 0, 0, 0) 45.34%);
}

.lease__counter-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 150px;
}

.lease__about-advantage-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.lease__about-advantage-wrap>* {
  width: 19%;
  height: 100%;
  position: relative;
}

.lease__about-advantage-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
}

.lease__about-advantage-cont h6 {
  padding-bottom: 10px;
}

.lease__about-advantage-wrap .overlay::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 15.74%, rgba(0, 0, 0, 0) 39.91%);
}

.lease__about-advantage-img {
  position: absolute;
  bottom: 0;
}

.lease__subcta-link {
  display: block;
  width: 100%;
  position: relative;
}

.lease__subcta-box {
  position: relative;
}

.lease__subcta-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
}

.lease__subcta-content>*:not(:last-child) {
  padding-bottom: 16px;
}

.lease__subcta-content h3 {
  font-size: 28px;
  line-height: 40px;
  text-transform: uppercase;
  width: 65%;
}

.lease__subcta-content p {
  width: 75%;
}

/* about page ==================================== */
/* laese__vehicles page ==================================== */
.laese__vehicles-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.laese__vehicles-wrap>* {
  width: 19%;
  position: relative;
  height: 100%;
}

.laese__vehicles-wrap .overlay::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.lease__vehicles-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.lease__category-vehicles .lease__tab-nav {
  justify-content: start;
}

.lease__category-right {
  display: flex;
  justify-content: end;
  gap: 6px;
  flex-wrap: wrap;
}

.lease__category-right>* {
  width: 49%;
}

.lease__search-box {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 50px;
  padding-right: 20px;
  background-color: var(--clr-bg);
}

.lease__search-box .form-control,
.lease__category-ordering .form-select {
  border: none;
  background-color: var(--clr-bg);
  font-size: 16px;
  box-shadow: none;
  color: var(--clr-black-400);
  padding-left: 20px;
  min-height: 46px;
  border-radius: 50px;
}

.search-btn {
  background: transparent;
  border: none;
  color: var(--clr-black);
}

.search-btn span {
  color: var(--clr-black-400);
}

.lease__category-vehicles .lease__tab-wrapper {
  margin-top: 36px;
}

/* laese__vehicles page ==================================== */


/* Arpan Css Start */

/* How it Works Start */

.driveway-steps .lease__headwrap .lease__content {
  max-width: 500px;
  margin-inline: auto;
}

.driveway-steps-single {
  display: flex;
  align-items: center;
  background: var(--clr-bg);
  padding: 25px;
}

.driveway-steps-single .lease__img {
  width: 50%;
  flex: 0 0 auto;
}

.driveway-steps-single .icon {
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-white);
  flex: 0 0 auto;
}

.driveway-steps-single .icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.number {
  font-family: var(--ff-primary);
  font-weight: 400;
  color: var(--clr-heading);
  font-size: 18px;
}

.driveway-steps-single .lease__content h4 {
  font-size: 18px;
  text-transform: uppercase;
}

.driveway-steps-single .lease__content {
  padding: 0 60px 0 30px;
}

.driveway-steps-wrap>*:not(:last-child) {
  margin-bottom: 25px;
}

.driveway-steps-wrap {
  margin-top: 30px;
}

/* How it Works End */


/* Solutions Start */
.solutions-tab-wrap .nav-link {
  display: flex;
  align-items: center;
  column-gap: 15px;
  padding: 14px 30px;
  background: var(--clr-bg);
  color: var(--clr-heading);
  border-radius: 16px;
}

.sol-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
}

.sol-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solutions-tab-wrap .nav-pills {
  column-gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.solutions-tab-wrap .nav-item {
  flex: 0 0 auto;
}

.solutions-tab-wrap .nav-pills .nav-link.active,
.solutions-tab-wrap .nav-pills .show>.nav-link {
  background-color: var(--clr-heading);
}

.solutions-tab-wrap .nav-link.active .sol-icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(101deg) brightness(105%) contrast(102%);
}

.solutions-tab-wrap {
  margin-top: 30px;
}

.solutions-tab-content-wrap h6 {
  margin-bottom: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--clr-heading);
}

.solutions-tab-content-wrap h5 {
  font-size: 20px;
  font-family: var(--ff-body);
  color: var(--clr-black);
}

.solutions-tab-content-wrap .lease__content {
  margin-top: 15px;
}

.flex-list-lease {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin: 20px 0;
}

.flex-list-lease li {
  width: 50%;
  flex: 0 0 auto;
  padding-right: 20px;
}

.flex-list-lease li+li {
  margin-top: 0;
}

.solutions-tab-content-wrap .left-contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.solutions-sectors-single {
  background: var(--clr-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 18px;
  text-align: center;
  row-gap: 15px;
}

.solutions-sectors-lists ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}

.solutions-sectors-lists ul li {
  width: 33.33%;
  flex: 0 0 auto;
  padding: 0 10px;
}

.solutions-sectors-lefts {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
}

.solutions-sectors-lefts .lease__headwrap {
  margin-bottom: 0;
}

.solution-counter-wrap {
  background: var(--clr-black);
}

.solution-counter-single h2,
.solution-counter-single p {
  color: var(--clr-white);
}

.solution-counter-single {
  text-align: center;
  padding: 50px 30px;
}

.solution-counter-single h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

/* Solutions End */

/* Contact Us Start */
.lease__form .form-select {
  cursor: pointer;
  color: #525252;
}

textarea.form-control {
  resize: none;
  height: 120px;
}

.contact-form-wrap .row {
  row-gap: 25px;
}

.contact-form-wrap {
  padding: 30px;
}

.lease__form .form-control:focus,
.lease__form .form-select:focus {
  border-color: var(--clr-heading);
  box-shadow: inherit;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  padding: 18px 20px;
}

.contact-faq-accordian .accordion-button {
  font-weight: 400;
  color: var(--clr-heading);
  text-transform: uppercase;
  font-size: 18px;
  background: transparent;
  line-height: 1.4;
}

.contact-faq-accordian .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 16px;
}

.contact-faq-accordian .accordion-item {
  border: none;
  background: var(--clr-bg);
  padding: 10px;
  border-radius: 16px;
}

.contact-faq-accordian .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.contact-faq-accordian .accordion-body {
  padding-top: 0;
  max-width: 95%;
}

.contact-faq-accordian .accordion-item+.accordion-item {
  margin-top: 20px;
}

.contact-faq-accordian .accordion-button::after {
  content: "\2b";
  font-family: "fontawesome";
  background-image: none;
  width: auto;
  height: auto;
  font-size: 20px;
}

.contact-faq-accordian .accordion-button:not(.collapsed)::after {
  transform: unset;
  content: "\f068";
}

.contact-form-section .lease__form {
  position: sticky;
  top: 90px;
}

/* Contact Page Mouseenter Start */
.drone__location-new .drone__head-wrap {
  margin-bottom: 25px;
}

.drone__location-main {
  position: relative;
  width: 100%;
  z-index: 9;
}

.drone__location-new .drone__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.drone__location-new .drone__head-wrap h2 {
  color: #fff;
}

.drone__location-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 100%;
}

.drone__location-wrap>* {
  width: 12%;
  height: 100%;
}

.drone__location-single .drone__img {
  width: 100%;
  height: unset;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.drone__location-single .drone__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.drone__location-details {
  position: absolute;
  top: 50%;
  left: 10px;
  opacity: 0;
  width: 90%;
  z-index: 99;
  transform: translateY(-50%);
  right: 10px;
  padding: 0 10px;
  transition: all 0.4s ease;
}

.drone__location-single .drone__heading h6 {
  text-align: center;
}

.drone__location-single h6 {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
  text-transform: unset;
  text-transform: uppercase;
}

.drone__location-single .drone__img::before {
  content: '';
  position: absolute;
  background: rgb(0, 0, 0, 0.35);
  inset: 0;
}

.drone__location-single .drone__heading {
  margin-top: 15px;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 20px;
}

.address-part {
  padding-left: 0;
  list-style: none;
}

.address-part li {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--ff-body);
  position: relative;
}

.address-part li+li {
  margin-top: 5px;
}

.drone__location-single .address-part li {
  padding-left: 20px;
}

.drone__location-single .address-part li span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.drone__location-single .address-part li a {
  color: #fff;
}

.drone__location-single {
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  position: relative;
}

.drone__location-single.active {
  width: 40%;
}

.drone__location-single.active .drone__img {
  border-radius: 26px;
  position: relative;
  z-index: 1;
}

.drone__location-single.active .drone__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000005b;
  z-index: 0;
}

.drone__location-single.active .drone__location-details {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.drone__location-details h6 {
  padding-bottom: 5px;
  color: #fff;
}

.accordion-item .vorn-location__office-box {
  background-color: transparent;
  width: 100%;
}

.drone__location-accordion-main .accordion-item .drone__img {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: -1;
  height: 100%;
  border-radius: 0;
}

.drone__location-accordion-main .accordion-item .drone__img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  object-position: center;
  border-radius: 16px;
}

.accordion-item .vorn-location__office-box .drone__title {
  flex-direction: revert;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1e1e1e;
  padding: 10px 25px;
  color: var(--clr-button);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  top: -20px;
  min-width: 200px;
  border-radius: 25px;
  z-index: 5;
}

.accordion-item .vorn-location__office-box .drone__title::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 20px solid #1e1e1e;
  border-bottom: 10px solid transparent;
  top: 25%;
  left: -5px;
  transform: translateX(-50%);
}

.accordion-item .vorn-location__office-box .drone__title::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 20px solid #1e1e1e;
  border-bottom: 10px solid transparent;
  top: 25%;
  right: -25px;
  transform: translateX(-50%);
}

.drone__location-accodion-details .address-part {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vorn-location__office-box {
  flex: 0 0 auto;
  padding: 55px 25px;
  box-shadow: 1px 1px 20px #00000014;
  background-color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  color: #fff !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.drone__location-accordion-main .accordion-button {
  padding: 0;
  background-color: inherit;
}

.drone__location-accordion-main .accordion-button:focus {
  box-shadow: inherit;
}

.drone__location-accordion-main .accordion-item {
  margin-bottom: 35px;
  border-radius: 16px;
  border: 2px solid #1e1e1e;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.drone__location-accordion-main .accordion-body {
  background-color: #f4f4f4;
  border-radius: 0 0 12px 12px;
}

.drone__location-accordion-main .drone__location-accodion-details h6 {
  padding-bottom: 10px;
  text-transform: capitalize;
}

.drone__location-accordion-main .address-part li {
  font-size: 14px;
  color: var(--clr-button);
  font-weight: 400;
  line-height: 24px;
  font-family: var(--ff-body);
}

.drone__location-accordion-main .address-part li a {
  color: var(--clr-button);
}

.drone__location-accordion-main .accordion-item .drone__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000045;
  z-index: 0;
  border-radius: 16px;
}

.drone__location-accordion-main .accordion {
  background: transparent !important;
  --bs-accordion-bg: transparent;
}

.drone__location-accordion-main .accordion-button::after {
  background: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078";
  position: absolute !important;
  right: 0px !important;
  z-index: 9 !important;
  top: unset !important;
  color: var(--clr-button);
  font-size: 15px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  bottom: 0;
  margin: 5px;
}

.drone__location-new {
  overflow: hidden;
}

.drone__location .drone__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.drone__location-wrapper {
  position: relative;
  width: 100%;
}

.drone__location-box-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.drone__location-box-right {
  width: 20%;
  margin-left: auto;
}

.drone__location-box.drone__location-box-5 {
  margin-left: auto;
}

.drone__location-box.drone__location-box-7 {
  margin-left: auto;
}

.drone__location-box-left {
  width: 20%;
  margin-right: auto;
}

.drone__location-box.drone__location-box-1 {
  margin-left: auto;
}

.drone__location-box.drone__location-box-3 {
  margin-left: auto;
}

.drone__location-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  width: 150px;
  height: 160px;
}

.drone__location-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 0;
  top: 0;
  left: 0;
}

.drone__location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drone__location-box {
  position: relative;
  margin-bottom: 5px;
  width: 150px;
  height: 160px;
  overflow: hidden;
  opacity: 0;
  scale: 0.5;
  transition: all 2.5s ease-in-out;
  border-radius: 16px;
}


/* Contact Page Mouseenter End */

.lease__subcta-box .overlay::before {
  background: linear-gradient(129.48deg, rgba(0, 0, 0, 0.4) 35.08%, rgba(0, 0, 0, 0) 54.72%);
}

/* Contact Us End */

/* Arpan Css End */

/* get estimate page ============================================= */
.lease__get-wrapper {
  background-color: var(--clr-bg);
  border-radius: 16px;
  overflow: hidden;
  padding: 26px;
}

.lease__get-haed .step p {
  text-transform: uppercase;
}

.lease__get-haed> :not(:last-child) {
  margin-bottom: 8px;
}

.lease__get-haed {
  margin-bottom: 30px;
}

.lease__get-sec .laese__multistep-form .form-check-wrap label {
  background-color: var(--clr-white);
}

.lease__get-sec .laese__multistep-form .form-check-input[type="radio"]:checked+.form-check-label,
.lease__get-sec .laese__multistep-form .form-check-input[type="checkbox"]:checked+.form-check-label {
  background-color: var(--clr-white);
}

.lease__get-sec .laese__multistep-form .form-select,
.lease__get-sec .laese__multistep-form .form-control {
  background-color: var(--clr-white);
}

.lease__get-sec .laese__multistep-form .laese__btnwrap {
  text-align: end;
}

.lease__get-sec .laese__multistep-form .lease__btn {
  padding: 0 55px;
  min-height: 52px;
}

.lease__get-listwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  background-color: var(--clr-bg);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 26px;
  padding: 50px 16px;
}

.lease__get-listwrap>* {
  width: 32%;
}

.lease__get-list-single {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lease__get-list-single .icon {
  display: inline-flex;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
}

.lease__get-list-single .icon img {
  object-fit: contain;
}

body:not(:has(.lease__banner)) .lease__header {
  background-color: var(--clr-black);
  position: relative;
}

body:not(:has(.lease__banner)) .breadcrumb-item a,
body:not(:has(.lease__banner)) .breadcrumb-item,
body:not(:has(.lease__banner)) .breadcrumb-item+.breadcrumb-item::before {
  color: var(--clr-black-400);
}

body:not(:has(.lease__banner)) .lease__banner-breadcrumb {
  padding-bottom: 12px;
}

.lease__get-sec.custom__pad {
  padding-top: 35px;
}
.lease__get-list-content p {
  width: 80%;
  padding-top: 8px;
}
/* get estimate page ============================================= */
/* Insights page ======================================================== */
.lease__sidebar-cta .lease__btn {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.lease__insight-single .lease__img a {
  display: block;
}

.lease__insight-single {
  background-color: var(--clr-bg);
  position: relative;

}

.lease__insight-single .lease__insight-content {
  padding: 16px;
}

.lease__insight-content>*:not(:last-child) {
  margin-bottom: 12px;
}

.lease__insight-date {
  position: absolute;
  top: 0;
  left: 0;
  padding: 16px;
}

.lease__insight-date span {
  display: inline-flex;
  background-color: var(--clr-white);
  font-size: 16px;
  padding: 6px 20px;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
}

.lease__insight-content p,
.lease__insight-content h6 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lease__insight-content h6 {
  min-height: 52px;
}

.lease__sidebar {
  position: sticky;
  top: 25px;
  background-color: var(--clr-bg);
  padding: 16px;
}

.lease__sidebar-serach .lease__search-box {
  border: 1px solid #D3D3D3;
  background-color: var(--clr-white);
}

.lease__sidebar-serach .form-control {
  background-color: var(--clr-white);
}

.lease__sidebar-widget {
  background-color: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;
}

.lease__sidebar-widget.lease__sidebar-serach {
  padding: 0;
  background-color: transparent;
}

.lease__sidebar-widget+.lease__sidebar-widget {
  margin-top: 20px;
}

.lease__sidebar-widget .lease__title {
  border-bottom: 1px solid #939393;
  padding-bottom: 16px;
  margin-bottom: 26px;
}

.lease__sidebar-category-list li a {
  color: var(--clr-black-400);
}

.lease__sidebar-widget .form-control {
  border: none;
  background-color: var(--clr-bg);
  padding: 14px 16px;
  border-radius: 25px;
  color: var(--clr-black-400);
}

.lease__sidebar-cta>*:not(:last-child) {
  margin-bottom: 16px;
}

.lease__insights-wrapper {
  padding-right: 30px;
}

.lease__sidebar-widget.lease__sidebar-serach .form-control {
  background-color: var(--clr-white);
}

/* Insights page ======================================================== */

/* Insights details page ======================================================== */

.lease__insights-meta ul {
  display: flex;
  flex-wrap: wrap;
}

.lease__insights-meta ul li {
  line-height: 100%;
}

.lease__insights-meta ul li+li {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid var(--clr-black-400);
}

.lease__generic> :not(:last-child) {
  margin-bottom: 16px;
}

.lease__insights-detailswrap> :not(:last-child) {
  margin-bottom: 20px;
}

.lease__generic ol,
.lease__generic ul {
  padding-left: 20px;
}

.lease__generic ol li {
  list-style: decimal;
}

.lease__generic ul li {
  list-style: disc;
}

.lease__generic ol li+li,
.lease__generic ul li+li {
  margin-top: 6px;
}

.lease__generic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 16px;
}

.lease__insight-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;
  margin-top: 12px;
}

.lease__insight-tags ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-bg);
  color: var(--clr-black-400);
  padding: 8px 16px;
  font-size: 18px;
  border-radius: 8px;
}

.lease__insight-tags {
  border-top: 1px solid #939393;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}


::selection {
  background-color: var(--clr-heading);
  color: var(--clr-white);
}

::selection {
  background-color: var(--clr-heading);
  color: var(--clr-white);
}

element {}

.lease__insights-details.custom__pad {
  padding-top: 35px;
}

/* Insights details page ======================================================== */