body {
  margin: 0 auto;
}
a {
  text-decoration: none;
}

:root {
  --primary-color: #02121e;
  --secondary-color: #57b33e;
  --paragraph-color: #253745;
  --heading-font-family: "Lato", sans-serif;
  --paragraph-font-family: "Heebo", sans-serif;
  --heading-font-size: 36px;
  --paragraph-secondary-color: #737a80;
}

/* Header Start */

header .container {
  max-width: 1150px;
}

header .logo {
  width: 200px;
  cursor: pointer;
}

.logo img {
  width: 100%;
}

.logo h3 {
  font-size: 20px;
  font-family: var(--heading-font-family);
  color: #fff;
}

.logo h3 span {
  color: var(--secondary-color);
}

header li,
header a,
header button {
  font-family: var(--heading-font-family);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: capitalize;
}
header button:hover {
  background: #fff;
  color: var(--secondary-color);
}
header {
  background-color: var(--primary-color);
  background: var(--paragraph-color);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* box-shadow: 2px 2px 10px black; */
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
}
header:hover {
  box-shadow: 2px 2px 25px black;
  transition: 0.5s;
}
.navlinks {
  margin: 0;
  padding: 0;
}
header .navlinks li {
  display: inline-block;
  margin: 20px 25px;
  align-items: center;
}
header .navlinks li a:hover {
  color: var(--secondary-color);
  /* text-shadow: 1px 1px 5px black; */
}

header .navlinks li a.active {
  color: var(--secondary-color);
}

header button {
  width: 100%;
  padding: 15px 32px;
  background-color: var(--secondary-color);
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: all 0.5s, ease 0s;
  border: none;
  z-index: 999;
  transition: all 0.3s;
}
header button:hover {
  box-shadow: 1px 1px 5px black;
}
header .sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 999;
  background-color: var(--paragraph-color);

  display: none;
  justify-content: flex-start;
  list-style: none;
  flex-direction: column;
  transition: transform 0.3s ease;
  transform: translateX(100%);
}
header .sidebar li {
  width: 100%;
  margin: 25px 0;
}
header .sidebar img {
  position: absolute;
  bottom: 20px;
  width: 100%;
  height: 120px;
}
header nav ion-icon {
  font-size: 2em;
  position: absolute;
  top: 35px;
  right: 20px;
}

@media only screen and (min-width: 830px) {
  header .navlinks ion-icon {
    display: none;
  }
}
@media only screen and (max-width: 830px) {
  header .navlinks .items {
    display: none;
  }
  header .navlinks li {
    visibility: hidden;
  }
  header .container {
    width: 100%;
  }
  header button {
    width: max-content;
    padding: 15px 45px;
  }
}

/* Header End */

/* Hero Start */
.Hero {
  padding: 100px 50px 50px;
  background: var(--primary-color);
  background: var(--paragraph-color);
  /* background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 10%,
    rgba(0, 0, 0, 1) 40%
  );
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(2, 18, 30, 1) 60%
  ); */
  height: 100vh;
}
.Hero .container {
  max-width: 1140px;
}

.Hero svg {
  margin-top: 50px;
}

.heading h1 {
  color: #fff;
  font-size: 54px;
  font-family: var(--heading-font-family);
  font-weight: 600;
  line-height: 64.8px;
  z-index: 9;
  position: inherit;
  margin-bottom: 30px;
}
.heading {
  position: relative;
  margin-top: 50px;
}

.heading span {
  width: 370px;
  background: var(--secondary-color);
  height: 30px;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}

.Hero p {
  color: #fff;
  font-size: 16px;
  font-family: var(--paragraph-font-family);
  margin-bottom: 30px;
}

.Hero a {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 16px;
  transition: all 0.3s;
}

.Hero .btn_cta {
  background: var(--secondary-color);
  color: #fff;
  padding: 15px 32px;
  border-radius: 5px;
  display: inline-block;
  /* margin-top: 30px; */
  margin-right: 30px;
}

.Hero a svg {
  margin-left: 10px;
  transition: all 0.3s;
}

.Hero a:hover {
  color: #fff;
}

.Hero a:hover svg path {
  color: #fff;
  fill: #fff;
}
.Hero a:hover svg {
  margin-left: 15px;
}

.hero_img {
  margin-top: 85px;
  width: 100%;
}

.Hero img {
  margin-top: 120px;
  margin-bottom: -50px;
}
a.btn_cta {
  background: var(--secondary-color);
  color: #fff;
  padding: 15px 32px;
  border-radius: 5px;
  margin: 0 auto;
  display: table;
  margin-top: 32px;
}

a.btn_cta:hover {
  background: #fff;
  color: var(--secondary-color);
  transition: all 0.3s;
}

@media only screen and (max-width: 768px) {
  .heading span {
    display: none;
  }

  .Hero {
    height: 100%;
  }

  .heading {
    margin: 0;
  }
  .Hero .btn_cta {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

/* Hero End */

/* About End */

.About_us {
  padding: 180px 0 100px;
  height: 100vh;
}
.About_us .container {
  max-width: 1140px;
}

.Lots {
  background: url(../images/lots.png) no-repeat;
  height: 100vh;
  margin-top: 30px;
  padding: 130px;
}

.Lots h1 {
  font-size: 50px;
  font-family: var(--heading-font-size);
  line-height: 65px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}

.Lots p {
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.slot_input {
  background: #fff;
  border-radius: 10px;
  /* padding: 0 5px; */

  margin-top: 140px;
}

#vehicle {
  padding: 30px;
  border: 0;
  border-radius: 10px;
  width: 90%;
}

.slot_input input[type="text"] {
  padding: 20px 30px;
  text-align: center;
  border: 0;
  width: 90%;
  margin: 10px 0;
}

.slot_input input[type="submit"] {
  margin: 10px 0;
  padding: 20px 30px;
  text-align: center;
  border: 0;
  width: 90%;
  background: var(--secondary-color);
  color: #fff;
}

.slot_input input:focus-visible {
  border: 0;
}

.slot_input input:focus {
  border: 0;
  outline: none;
  box-shadow: none;
}
.head h5 {
  font-size: 14px;
  color: var(--secondary-color);
  font-family: var(--heading-font-family);
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 14px;
  text-transform: uppercase;
}

.head h2 {
  font-size: 36px;
  line-height: 43.2px;
  font-family: var(--heading-font-family);
  color: var(--paragraph-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.head p {
  font-size: 16px;
  font-family: var(--paragraph-font-family);
  line-height: 24px;
  margin-bottom: 30px;
  color: var(--paragraph-secondary-color);
  font-weight: 400;
}

.about_content {
  display: flex;
  gap: 25px;
}

.icon_for_about {
  background: var(--secondary-color);
  padding: 20px;
  border-radius: 5px;
  min-width: 75px;
  height: 75px;
  text-align: center;
}

.about_paragraph h4 {
  font-family: var(--heading-font-family);
  color: var(--paragraph-color);
  font-size: 24px;
  line-height: 28.8px;
  margin-bottom: 10px;
}

.about_paragraph p {
  font-family: var(--paragraph-font-family);
  color: var(--paragraph-secondary-color);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  width: 70%;
}

.About_us img {
  width: 100%;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .About_us {
    padding: 80px 30px;
    height: 100%;
  }
  .Lots {
    margin-top: 30px;
    padding: 60px 0;
    height: 100%;
  }
  .slot_input {
    margin-top: 60px;
  }
  #vehicle {
    margin: 10px 20px;
  }
  .slot_input input[type="text"],
  .slot_input input[type="submit"] {
    margin: 10px 20px;
  }
}

/* About End */

/* Type_of_business Start */

.Type_of_business {
  height: 100vh;
}

.Type_of_business .container {
  max-width: 90%;
  background: #f9f9f9;
  padding: 90px;
}

.Type_of_business .head h2 {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.Type_of_business .head h2 span {
  color: var(--secondary-color);
}

.Type_of_business p {
  text-align: left;
  font-size: 18.7px;
  line-height: 31.5px;
  color: #51555c;
}

.type_business_box {
  margin-top: 40px;
  background: #fff;
  border-radius: 10px;
}

.type_business_box img {
  width: 100%;
}

.type_business_box h4 {
  font-size: 21.1px;
  line-height: 26px;
  font-family: var(--heading-font-family);
  color: #000;
}

.type_business_content {
  padding: 24px;
}

.type_business_box p {
  font-size: 16.9px;
  line-height: 28px;
  font-family: var(--heading-font-family);
  color: #51555c;
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .Type_of_business .container {
    padding: 80px 30px;
  }
  .Type_of_business {
    height: 100%;
  }
}

/* Type_of_business End */

/* Why_choose_us Start */
.Why_choose_us {
  padding: 100px 0 60px;
}
.Why_choose_us .container {
  max-width: 1120px;
}

.Why_choose_us h4 {
  font-size: 24px;
  line-height: 28.8px;
  margin-top: 15px;
  color: var(--paragraph-color);
}

.Why_choose_us p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
  color: var(--paragraph-secondary-color);
  margin-bottom: 65px;
}

.why_choose_box_right img {
  float: right;
}
.clear {
  clear: both;
}

.why_choose_box_right h4,
.why_choose_box_right p {
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .Why_choose_us {
    padding: 80px 20px;
  }
  .Why_choose_us img {
    width: 100%;
    margin: 0 auto;
  }
  .why_choose_box_right img,
  .why_choose_box img {
    width: auto;
  }
}
/* Why_choose_us End */

/* Testimonials */

/* Testimonials */

.Testimonials {
  background: var(--primary-color);
  padding: 100px 0;
  height: 100vh;
  position: relative;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 10%,
    rgba(2, 18, 30, 1) 40%
  );
}

.Testimonials .container {
  max-width: 1140px;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.Testimonials h2,
.Testimonials p {
  color: #fff;
}

.Testimonials .head p {
  width: 85%;
}

/* Slider */

.contain {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.item {
  align-items: center;
  background-color: #fff;
  color: var(--paragraph-color);
  height: 270px;
  justify-content: center;
  border-radius: 10px;
  padding: 40px;
}

.item p {
  color: var(--paragraph-color);
}

.testimonial_cnt {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.testimonial_cnt img {
  width: 60px !important;
}

.testimonial_cnt h5 {
  font-size: 20px;
  font-family: var(--heading-font-family);
  color: var(--paragraph-color);
}

.testimonial_cnt p {
  font-size: 14px;
  line-height: 21px;
  color: var(--paragraph-secondary-color);
  font-family: var(--paragraph-font-family);
}

.owl-theme .owl-nav {
  display: none;
}
.owl-theme .owl-dots {
  margin-top: 25px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--secondary-color) !important;
}
.owl-theme .owl-dots .owl-dot span {
  background: #96989b !important;
}

@media all and (max-width: 300px) {
}

@media all and (max-width: 768px) {
  .Testimonials .container {
    position: inherit;
    top: inherit;
    left: inherit;
    -ms-transform: translate(-50%, -50%);
    transform: inherit;
  }
  .Testimonials {
    height: 100%;
  }
}
/* Testimonials */

/* fuel-delivery */

.fuel-delivery {
  padding: 80px 0 100px;
}

.fuel-delivery .container {
  max-width: 1160px;
}

.fuel-delivery img {
  width: 100%;
}

.fuel_box h5 {
  font-size: 16px;
  font-family: var(--paragraph-font-family);
  color: var(--paragraph-secondary-color);
  text-transform: capitalize;
  margin-top: 10px;
}

.fuel_box img {
  width: auto;
}

.fuel_box {
  margin-top: 50px;
}
/* fuel-delivery */

/* Download */
.download {
  padding: 100px 0;
  background: url(../images/download.png);
  /* background-image: url(./assets/images/download.png); */
  background-size: cover;
  background-repeat: no-repeat;
  height: 520px;
  margin-bottom: 150px;
}

.download .container {
  width: 1140px;
}

.download_text {
  margin-left: 20px;
  width: 500px;
}

.relative {
  position: relative;
}

.app_img {
  position: absolute;
  width: 600px;
  top: -135px;
  right: 0;
}

.download_text p {
  color: #acb1b4;
}

.download_text h2 {
  color: #fff;
}

.download_text a {
  text-decoration: none;
}

@media all and (max-width: 768px) {
  .app_img {
    position: inherit;
    top: inherit;
    width: 300px;
  }
  .download .container {
    width: 100%;
    padding: 0 30px;
  }
  .download {
    height: 100%;
  }
  .download_text {
    margin-left: 0;
    width: 100%;
  }
  .head p br {
    display: none;
  }
}

/* Download End */

/* Blog Start*/

.blog {
  padding: 110px 0;
}

.blog .container {
  max-width: 1140px;
}

.blog_box {
  margin-top: 30px;
}

.blog .blog_img img {
  width: 100%;
  border-radius: 10px;
}

.blog_img {
  position: relative;
}

.blog_img span {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  padding: 20px 20px 10px 0;
  border-radius: 0 5px;
  color: var(--paragraph-secondary-color);
  font-family: var(--paragraph-font-family);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.48px;
}

.blog_box h3 {
  font-size: 20px;
  line-height: 26px;
  font-family: var(--heading-font-family);
  color: var(--paragraph-color);
  margin-top: 25px;
  font-weight: 500;
}

.blog_box p {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--paragraph-font-family);
  color: var(--paragraph-secondary-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.blog_box a {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--paragraph-font-family);
  color: var(--secondary-color);
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.blog_box a svg {
  margin-left: 5px;
  transition: all 0.3s;
}

.blog_box a:hover {
  color: var(--paragraph-color);
}

.blog_box a:hover svg path {
  fill: var(--paragraph-color);
}
.blog_box a:hover svg {
  margin-left: 10px;
}
@media all and (max-width: 768px) {
  .blog .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

/* Blog End */

/* Footer Start */
footer {
  background: var(--primary-color);
  padding-top: 100px;
  padding-bottom: 20px;
}

footer .container {
  max-width: 1140px;
}

footer img {
  width: 130px;
}

.contact_details p {
  color: var(--paragraph-secondary-color);
  margin-top: 30px;
  font-family: var(--paragraph-font-family);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

.contact_details a {
  color: #fff;
  margin-top: 30px;
  font-family: var(--paragraph-font-family);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 13px;
  text-decoration: none;
  display: block;
}

.contact_details a svg {
  margin-right: 23px;
}

footer h4 {
  color: #fff;
  font-family: var(--heading-font-family);
  font-size: 20px;
  line-height: 26px;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 20px;
}

footer h4::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 4px;
  background: var(--secondary-color);
  content: "";
}

footer ul {
  padding: 0;
}
footer ul li {
  list-style: none;
}
footer ul li a {
  color: #fff;
  font-family: var(--paragraph-font-family);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

footer ul li a:hover {
  color: var(--secondary-color);
}

footer form input[type="text"] {
  padding: 18px 20px;
  border-radius: 5px;
  background: #fff;
  outline: none;
  border: 0;
}

footer form button {
  padding: 18px 20px;
  border-radius: 5px;
  background: var(--secondary-color);
  outline: none;
  border: 0;
  color: #fff;
  margin-left: 10px;
  margin-bottom: 0;
  text-transform: uppercase;
  transition: all 0.3s;
}

footer p {
  margin-top: 30px;
  font-family: var(--paragraph-font-family);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  color: #acb1b4;
}

footer .line {
  width: 100%;
  background: #1c2b35;
  height: 1px;
  margin-top: 80px;
}

.social_icon {
  padding-top: 20px;
}

.social_icon a {
  background: var(--secondary-color);
  padding: 13px 15px;
  margin-right: 20px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.social_icon a i {
  font-size: 16px;
}

.social_icon a:hover {
  background: #fff;
  color: var(--secondary-color);
}
@media all and (max-width: 768px) {
  footer .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .footer_bottom p {
    text-align: center !important;
  }
  footer h4 {
    margin-top: 30px;
  }
}
/* Footer End */

/* Login Page Start */

.Login {
  background: var(--paragraph-color);
}

.Registration {
  background: var(--paragraph-color);
}

.section__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 40px 20px;
  position: relative;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 24px;
  border-radius: 10px 10px 10px 10px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  padding: 60px 60px 50px;
  z-index: 2;
}

.form--content {
  max-width: 420px;
  margin-top: 0;
}

.Registration .form--content {
  max-width: 650px;
}

.Registration {
  position: relative;
}

.Login {
  position: relative;
}

.Registration a.close_btn,
.Login a.close_btn {
  z-index: 999;
  position: absolute;
  right: 50px;
  top: 30px;
}

.close_btn {
}

.close_btn svg path {
  fill: #fff;
  stroke: #fff;
  stroke-width: 1;
}

.close_btn svg {
  width: 18px;
  height: 18px;
}

.form--profile {
  border-radius: 0;
  border: none;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  padding: 0;
  margin-top: 24px;
}

.form__logo-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
}

.form__logo {
  display: block;
  height: 50px;
}

.form__logo img {
  height: 50px;
  width: auto;
}

.form__tagline {
  font-size: 14px;
  line-height: 24px;
  color: #d0d0d0;
  margin-left: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.form__tagline span {
  color: var(--secondary-color);
}

.form__group {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form__group--checkbox {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

.form__group--checkbox input:not(:checked),
.form__group--checkbox input:checked {
  position: absolute;
  left: -9999px;
}

.form__group--checkbox input:not(:checked) + label,
.form__group--checkbox input:checked + label {
  font-size: 14px;
  color: #d0d0d0;
  font-weight: normal;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  line-height: 24px;
  margin: 0;
}

.form__group--checkbox input:not(:checked) + label a,
.form__group--checkbox input:checked + label a {
  color: var(--secondary-color);
}

.form__group--checkbox input:not(:checked) + label a:hover,
.form__group--checkbox input:checked + label a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.form__group--checkbox input:not(:checked) + label:before,
.form__group--checkbox input:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.form__group--checkbox input:not(:checked) + label:after,
.form__group--checkbox input:checked + label:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 12px;
  height: 12px;
  text-align: center;
  transition: 0.5s ease;
  background-color: var(--secondary-color);
  border-radius: 6px;
}

.form__group--checkbox input:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

.form__group--checkbox input:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.form__group--checkbox label::-moz-selection {
  background: transparent;
  color: #d0d0d0;
}

.form__group--checkbox label::selection {
  background: transparent;
  color: #d0d0d0;
}

.form__label {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #d0d0d0;
  width: 100%;
  line-height: 100%;
  margin-bottom: 15px;
}

.form__input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background-color: transparent;
  border-radius: 10px;
  font-size: 14px;
  color: #fff;
  cursor: default;
  font-weight: 400;
}

.form__input:hover,
.form__input:focus {
  border-color: rgba(255, 255, 255, 0.25);
}

.form__select {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background-size: 16px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: #fff;
  cursor: default;
  font-weight: 400;
}

.form__select option {
  background-color: #16142a;
}

.form__select:hover,
.form__select:focus {
  border-color: rgba(255, 255, 255, 0.25);
}

.form__textarea {
  width: 100%;
  height: 140px;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background-color: transparent;
  border-radius: 10px;
  font-size: 14px;
  color: #fff;
  cursor: default;
  resize: none;
  font-weight: 400;
}

.form__group--checkbox input:not(:checked) + label:before,
.form__group--checkbox input:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.form__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: var(--secondary-color);
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  margin-top: 10px;
}

.form__delimiter {
  font-size: 14px;
  color: #d0d0d0;
  line-height: 100%;
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.form__text {
  margin-top: 30px;
  font-size: 14px;
  line-height: 26px;
  color: #d0d0d0;
  width: 100%;
  text-align: left;
}

.form__text--center {
  text-align: center;
}

.form__text a {
  position: relative;
  color: var(--secondary-color);
}

/* Login Page End */

/* About */

.about {
  padding: 100px 0;
  background: url(/crudo_mark/assets/images/about_bg_3.png) no-repeat;
  background: url(../images/parking_bg.png);
  background-size: cover;
  height: 100vh;
}

.about .container {
  width: 1140px;
}

.about img {
  width: 100%;
}

.about_inner .About_us {
  padding: 100px 0;
}

.about h1 {
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.about p {
  color: #fff;
  text-align: center;
  width: 60%;
}

.about a {
  text-decoration: none;
}

.breadcrumbs {
  margin-top: 10rem;
  color: #fff;
}

.breadcrumbs a {
  color: #fff;
  margin: 10px;
  transition: all 0.3s;
}

.breadcrumbs a:hover {
  color: var(--secondary-color);
}

@media all and (max-width: 768px) {
  .about {
    height: 100%;
  }
  .about .container {
    width: 100%;
  }
}

/* Services */

.services {
  height: 100vh;
  padding: 120px 0;
  background: url(../images/Bio-fuel.png) no-repeat;
}
.heading_inner h2 {
  color: #fff;
  font-size: 36px;
  line-height: 43.2px;
  text-transform: uppercase;
  padding-top: 10rem;
  font-family: var(--heading-font-family);
}

.heading_inner p {
  font-size: 16px;
  color: #fff;
  margin-top: 30px;
  padding-bottom: 30px;
}

.heading_inner a {
  background: transparent;
  border: 1px solid #fff;
  text-decoration: none;
  display: inline;
}

.services_2 {
  background: url(/crudo_mark/assets/images/Doorstep.png);
  background: url(../images/Doorstep.png);
  background-size: cover;
}
.services_3 {
  background: url(/crudo_mark/assets/images/fuel-filling.png);
  background: url(../images/fuel-filling.png);
  background-size: cover;
}

.services_4 {
  background: url(/crudo_mark/assets/images/Datum.png);
  background: url(../images/Datum.png);
  background-size: cover;
}

.services_5 {
  background: url(/crudo_mark/assets/images/EV_charging.png);
  background: url(../images/EV_charging.png);
  background-size: cover;
}

.services_6 {
  background: url(/crudo_mark/assets/images/vehicle-insurance-bg.png);
  background: url(../images/EV_charging.png);
  background-size: cover;
}

.services_6 .heading_inner h2 {
  padding-top: 0;
}

.services_6 .heading_inner h5 {
  padding-top: 30px;
  color: #fff;
}
.services_6 .heading_inner img {
  padding-top: 2rem;
  width: 40%;
}

@media all and (max-width: 768px) {
  .Services .container {
    width: 100%;
  }
  .services {
    padding: 60px 0;
    height: 100%;
  }
  .heading_inner h2 {
    padding-top: 60px;
  }
  .Services {
    height: 100%;
  }
  .services_6 .heading_inner img {
    padding-top: 1rem;
  }
}

/* Services */

/* Contact Us Start */

.contact {
  padding: 100px 0;
}

.contact .container {
  max-width: 1140px;
}

.contact .form {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact .contact-form {
  background-color: #02121e;
  background: var(--paragraph-color);
  position: relative;
}

.contact .circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #02121e);
  position: absolute;
}

.contact .circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.contact .circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact .contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: var(--paragraph-color);
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

.contact form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.contact .title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.contact .input-container {
  position: relative;
  margin: 1rem 0;
}

.contact .input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

.contact textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.contact .input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.contact .input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.contact .btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #02121e;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.contact .btn:hover {
  background-color: transparent;
  color: #fff;
}

.contact .input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.contact .input-container span:before,
.contact .input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #253745;
  top: 50%;
  transform: translateY(-50%);
}

.contact .input-container span:before {
  left: 50%;
}

.contact .input-container span:after {
  right: 50%;
}

.contact .input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.contact .input-container.focus span:before,
.contact .input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact .contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact .contact-info .title {
  color: var(--primary-color);
}

.contact .text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.contact .information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.contact .information i {
  color: #253745;
}

.contact .icon {
  width: 28px;
  margin-right: 0.7rem;
}

.contact .social-media {
  padding: 2rem 0 0 0;
}

.contact .social-media p {
  color: #333;
}

.contact .social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.contact .head h2 {
  text-align: center;
  margin-bottom: 50px;
}

.contact .social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #253745, #253745);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: all 0.3s;
}

.contact .social-icons a:hover {
  transform: scale(1.05);
  background: var(--secondary-color);
}

.contact .contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #57b33e;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.contact .square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

.map .container-fluid {
  width: 100%;
  padding: 20px;
  margin-top: 50px;
  /* display: none; */
}

.map iframe {
  border-radius: 10px;
}

@media (max-width: 850px) {
  .contact {
    height: 100%;
  }
  .contact .form {
    grid-template-columns: 1fr;
    height: 100%;
  }

  .contact .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .contact .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .contact .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .contact .text {
    margin: 1rem 0 1.5rem 0;
  }

  .contact .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .contact .container {
    padding: 1.5rem;
  }

  .contact .contact-info:before {
    display: none;
  }

  .contact .square,
  .contact .big-circle {
    display: none;
  }

  .contact form,
  .contact .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .contact .text,
  .contact .information,
  .contact .social-media p {
    font-size: 0.8rem;
  }

  .contact .title {
    font-size: 1.15rem;
  }

  .contact .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .contact .icon {
    width: 23px;
  }

  .contact .input {
    padding: 0.45rem 1.2rem;
  }

  .contact .btn {
    padding: 0.45rem 1.2rem;
  }
}

/* Contact Us End */

/* Parking Start */

.Parking .Lots {
  background: url(../images/parking-banner.png) no-repeat;
  margin-top: 0;
  background-size: cover;
}

.Parking-occupancy {
  padding: 100px 0;
}

.Parking-occupancy .container {
  max-width: 1140px;
}

.parking_graphic {
  border: 0.87px solid #ebe7f7;
  border-radius: 13.92px;
  padding: 0 !important;
}

.parking_head {
  border-bottom: 0.87px solid #ebe7f7;
  padding: 12px 30px !important;
  display: flex;
  justify-content: space-between;
}

.parking_head h4 {
  font-size: 15.66px;
  color: #757575;
  font-family: var(--heading-font-family);
  margin-bottom: 0;
}

.parking_head .left {
  padding: 8px 0;
}

.parking_head .right {
  display: flex;
}

.parking_head .right .has-search .form-control {
  padding-left: 2.375rem;
}

.parking_head .right .has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

.filter button {
  padding: 8px 11px;
  color: #53545c;
  border: 1px solid #53545c;
  background: #fff;
  border-radius: 3.48px;
  font-size: 14px;
  font-family: var(--heading-font-family);
}
.filter {
  padding-left: 10px;
}

.parking_body {
  width: 640px;
  padding: 100px 0;
  margin: 0 auto;
}

.slot_group {
  display: flex;
}

.parking_body button {
  color: #327ac9;
  font-size: 12.18px;
  background: #e4f2fc;
  border: 0;
  border-radius: 8.47px;
  padding: 5px 10px;
  margin-top: 12px;
  margin-bottom: 6px;
}

.slot_group button {
  border: 0;
  background: transparent;
}

.Parking_form {
  background: #253745;
  padding: 100px 0;
  margin-bottom: 100px;
}

.Parking_form form {
  max-width: 60%;
  margin: 0 auto;
}

.Parking_form #section_option {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background-color: transparent;
  border-radius: 10px;
  font-size: 14px;
  color: #757575;
  cursor: default;
  font-weight: 400;
}

.Parking_form .form__btn[type="button"] {
  width: 20%;
  margin: 0 auto;
  margin-top: 30px;
}

.parking_graphic .booked_slot svg path {
  stroke: var(--paragraph-color);
}

.parking_graphic .slot:hover svg path {
  stroke: var(--secondary-color);
}

@media (max-width: 768px) {
  .parking_body {
    width: 100%;
    padding: 50px 20px;
    margin: 0 auto;
  }
  .slot_group {
    display: block;
  }
  .Parking-occupancy {
    padding: 100px 20px;
  }
  .parking_head {
    padding: 12px 15px !important;
  }
  .Parking_form form {
    max-width: 95%;
    margin: 0 auto;
  }
  .Parking_form .form__btn[type="button"] {
    width: 45%;
  }
}
/* Parking End */

.Services {
}

.Services {
  padding: 100px 0;
  background: url(../images/about_bg_3.png) no-repeat;
  background-size: cover;
  height: 100vh;
}

.Services .container {
  width: 1140px;
}

.Services img {
  width: 100%;
}

.about_inner .About_us {
  padding: 100px 0;
}

.Services h1 {
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.Services p {
  color: #fff;
  text-align: center;
  width: 60%;
}

.Services a {
  text-decoration: none;
}

.breadcrumbs {
  margin-top: 10rem;
  color: #fff;
}

.breadcrumbs a {
  color: #fff;
  margin: 10px;
  transition: all 0.3s;
}

.breadcrumbs a:hover {
  color: var(--secondary-color);
}

@media all and (max-width: 768px) {
  .about {
    height: 100%;
  }
  .about .container {
    width: 100%;
  }
}

/* Services */

.Services {
}

.Services {
  padding: 100px 0;
  background: url(../images/parking_bg.png) no-repeat;
  background-size: cover;
  height: 100vh;
}

.Services .container {
  width: 1140px;
}

.Services img {
  width: 100%;
}

.about_inner .About_us {
  padding: 100px 0;
}

.Services h1 {
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.Services p {
  color: #fff;
  text-align: center;
  width: 60%;
}

.Services a {
  text-decoration: none;
}

.breadcrumbs {
  margin-top: 10rem;
  color: #fff;
}

.breadcrumbs a {
  color: #fff;
  margin: 10px;
  transition: all 0.3s;
}

.breadcrumbs a:hover {
  color: var(--secondary-color);
}

.services {
  height: 100vh;
  padding: 120px 0;
  background: url(../images/parking-bg.png) no-repeat;
  background-size: cover;
}
.heading_inner h2 {
  color: #fff;
  font-size: 36px;
  line-height: 43.2px;
  text-transform: uppercase;
  padding-top: 10rem;
  font-family: var(--heading-font-family);
}

.heading_inner p {
  font-size: 16px;
  color: #fff;
  margin-top: 30px;
  padding-bottom: 30px;
}

.heading_inner a {
  background: transparent;
  border: 1px solid #fff;
  text-decoration: none;
  display: inline;
}

.services_2 {
  background: url(/crudo_mark/assets/images/taxi-bg.png);
  background: url(../images/taxi-bg.png);
  background-size: cover;
}
.services_3 {
  background: url(/crudo_mark/assets/images/fuel-bg.png);
  background: url(../images/fuel-bg.png);
  background-size: cover;
}

.services_4 {
  background: url(/crudo_mark/assets/images/Datum.png);
  background: url(../images/Datum.png);
  background-size: cover;
}

.services_5 {
  background: url(/crudo_mark/assets/images/ev-bg.png);
  background: url(../images/ev-bg.png);
  background-size: cover;
}
.services_6 {
  background: url(/crudo_mark/assets/images/vehicle-insurance-bg.png);
  background: url(../images/vehicle-insurance-bg.png);
  background-size: cover;
}

@media all and (max-width: 768px) {
  .Services .container {
    width: 100%;
  }
  .services {
    padding: 60px 0;
    height: 100%;
  }
  .heading_inner h2 {
    padding-top: 60px;
  }
  .Services {
    height: 100%;
  }
}

/* Services */

/* Insurance */

.insurance {
  padding: 100px 0;
  background: #f9f9f9;
}

.insurance .container {
  max-width: 1120px;
}

.insurance h2 {
  text-transform: capitalize;
}

.insurance img {
  width: 100%;
}

.insurance_logo {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.insurance_logo img {
  width: 11%;
}

@media all and (max-width: 768px) {
  .insurance_logo {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-evenly;
    justify-items: center;
    align-content: space-evenly;
    align-items: center;
  }
  .insurance_logo img {
    width: 90%;
  }
}

/* Insurance */
