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: 1140px;
}

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

.logo img {
  width: 100%;
}

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;
}
header button:hover {
  background: #fff;
  color: var(--secondary-color);
}
header {
  background-color: var(--primary-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 30px;
  align-items: center;
}
header .navlinks li a:hover {
  color: var(--secondary-color);
  text-shadow: 1px 1px 5px black;
}

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: 50px;
  background: var(--primary-color);
}
.Hero .container {
  max-width: 1140px;
}

.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;
}
.heading {
  position: relative;
}

.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);
}

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

.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%;
}
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 End */

/* About End */

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

.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;
  }
}

/* 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 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;
}

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

.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: 500px) {
}
/* 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-image: url(/crudo_mark/assets/images/download.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 520px;
}

.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 End */

/* About */

.about {
  padding: 100px 0;
  background: url(/crudo_mark/assets/images/about_bg_3.png) no-repeat;
  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);
}

.Services {
}

.Services {
  padding: 100px 0;
  background: url(/crudo_mark/assets/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);
}

/* Services */

.services {
  height: 100vh;
  padding: 120px 0;
  background: url(/crudo_mark/assets/images/Bio-fuel.png);
}
.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-size: cover;
}
.services_3 {
  background: url(/crudo_mark/assets/images/fuel-filling.png);
  background-size: cover;
}

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

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

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

/* Services */
