@font-face {
  font-family: "maxbold";
  src: url("../font/gotham-ultra.woff2");
}
@font-face {
  font-family: "extrabold";
  src: url("../font/Gotham-Black.woff2");
}
@font-face {
  font-family: "bold";
  src: url("../font/Gotham-Bold.woff2");
}
@font-face {
  font-family: "medium";
  src: url("../font/Gotham-Medium.woff2");
}
@font-face {
  font-family: "light";
  src: url("../font/GOTHAM-LIGHT.woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "medium";
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

:root {
  --bodyblack: #1D1D1D;
  --black: #0F1112;
  --white: #fff;
  --textgrey: #CECECE;
  --grey: #867C7C;
  --bannergreytxt: #D0D0D0;
  --red: #C41E25;
  --iconsbg: #333;
  --footerbg: #F2F3F5;
  --lightwhite: #F0F1F2;
  --lightred: #c41e2674;
  --lightgrey: #D9D9D933;
  --blacklight: #000000c0;
  --borderblack: #2A2A2A;
}

body {
  background-color: var(--black);
}

.wrapper {
  width: 100%;
  max-width: 2160px;
  margin: 0 auto;
  padding: 102px 80px;
}
@media (max-width: 992px) {
  .wrapper {
    padding: 50px 16px;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*---=====NAVBAR---START=====---*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all ease 0.5s;
}
header nav {
  width: 100%;
  display: flex;
  padding: 17px 40px;
  background-color: var(--white);
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 999;
}
header nav .top_logo {
  width: 137px;
  z-index: 9;
}
@media (max-width: 576px) {
  header nav .top_logo {
    width: 100px;
  }
}
header nav .top_logo img {
  width: 100%;
}
header nav .hamburger_btn,
header nav .nav_overlay {
  display: none;
}
header nav .hamburger_btn {
  border: 0;
  background-color: transparent;
}
header nav .nav_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  anchor-name: --bgclr;
}
@media (max-width: 992px) {
  header nav .nav_menu .mobile_top_right {
    display: flex;
  }
}
@media (min-width: 992px) {
  header nav .nav_menu .mobile_top_right {
    display: none;
  }
}
header nav .nav_links {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
header nav .nav_links .link {
  color: var(--black);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 32px;
  z-index: 2;
  font-family: "bold";
  transition: all ease 0.5s;
}
@media (max-width: 1275px) {
  header nav .nav_links .link {
    padding: 16px;
  }
}
header nav .nav_links .link:hover {
  color: var(--white);
}
header nav .nav_links .anchor {
  position: absolute;
  position-anchor: --bgclr;
  background-color: var(--white);
  border-radius: 4px;
  top: anchor(top);
  left: anchor(left);
  right: anchor(right);
  bottom: anchor(bottom);
  pointer-events: none;
  transition: all ease 0.5s;
}
header nav .nav_links .link:hover {
  anchor-name: --bgclr;
}
header nav .nav_links:has(.link:hover) .anchor {
  background-color: var(--red);
}
header nav .top_right {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
}
header nav .top_right .test_drive_btn {
  color: var(--white);
  background-color: var(--red);
  padding: 16px 32px;
  font-size: 15px;
  border-radius: 4px;
  border: 1px solid var(--red);
  position: relative;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 2;
  transition: all ease 0.5s;
}
@media (max-width: 1275px) {
  header nav .top_right .test_drive_btn {
    padding: 16px;
  }
}
header nav .top_right .test_drive_btn:hover {
  color: var(--red);
}
header nav .top_right .test_drive_btn::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 300%;
  background-color: var(--white);
  border-radius: 50%;
  left: -50%;
  bottom: -300%;
  z-index: -1;
  transition: all ease 0.5s;
}
header nav .top_right .test_drive_btn:hover::after {
  bottom: -150%;
}
@media (max-width: 992px) {
  header nav .top_right:not(.mobile_top_right) {
    display: none;
  }
}
@media (max-width: 992px) {
  header nav {
    padding: 16px;
  }
  header nav .hamburger_btn {
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 102;
  }
  header nav .hamburger_btn div {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--black);
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  header nav .nav_overlay {
    position: fixed;
    inset: 0;
    display: block;
    background-color: rgba(15, 17, 18, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 100;
  }
  header nav .nav_menu {
    width: min(320px, 85vw);
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    padding: 90px 24px 30px;
    background-color: var(--bodyblack);
    transform: translateX(110%);
    transition: transform 0.35s ease;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }
  header nav .nav_menu .mobile_top_right {
    width: 100%;
    flex-shrink: 0;
  }
  header nav .nav_links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  header nav .nav_links .link {
    width: 100%;
    color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid var(--grey);
  }
  header nav .nav_links .anchor {
    display: none;
  }
  header nav .top_right {
    width: 100%;
  }
  header nav .top_right .test_drive_btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  header nav.is-open .nav_overlay {
    opacity: 1;
    visibility: visible;
  }
  header nav.is-open .nav_menu {
    transform: translateX(0);
  }
  header nav.is-open .hamburger_btn div:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background-color: var(--white);
  }
  header nav.is-open .hamburger_btn div:nth-child(2) {
    opacity: 0;
  }
  header nav.is-open .hamburger_btn div:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: var(--white);
  }
}

/*---=====NAVBAR---END=====---*/
/*---=====BANNER---START=====---*/
.banner_main_container {
  width: 100%;
  height: 804px;
  padding: 97px 80px;
  background-image: url("../images/banner_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
  display: flex;
  align-items: flex-start;
  margin-top: 80px;
  position: relative;
  overflow: hidden;

  &::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 55%;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(15, 17, 18, 0.35) 40%,
      var(--black) 78%,
      var(--black) 100%
    );
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
  }
}

@media (max-width: 992px) {
  .banner_main_container {
    padding: 0px 16px;
    height: 90vh;
    align-items: center;
  }
}
.banner_main_container .banner_content {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.banner_main_container .banner_content svg path {
  fill: transparent;
  stroke: var(--white);
  stroke-width: 1;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: textanimation 2s ease-in-out forwards 1;
}
@keyframes textanimation {
  0% {
    stroke-dashoffset: 220;
  }
  75% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: var(--white);
  }
}
.banner_main_container .banner_content svg .redtxt {
  fill: transparent;
  stroke: var(--red);
  stroke-width: 1;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: redtxt 2s ease-in-out forwards 1;
}
@keyframes redtxt {
  0% {
    stroke-dashoffset: 220;
  }
  75% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: var(--red);
  }
}
.banner_main_container .banner_content h6,
.banner_main_container .banner_content h1,
.banner_main_container .banner_content p,
.banner_main_container .banner_content a,
.banner_main_container .banner_content button {
  text-transform: uppercase;
  transition: all ease 0.5s;
}
.banner_main_container .banner_content h6 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  font-weight: 500;
  padding: 4.5px 9px;
  border-left: 3px solid var(--red);
  background-color: var(--lightwhite);
}
.banner_main_container .banner_content h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 42.75px;
  color: var(--white);
}
.banner_main_container .banner_content h1 span {
  color: var(--red);
}
.banner_main_container .banner_content p {
  max-width: 518px;
  width: 100%;
  color: var(--bannergreytxt);
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
}
.banner_main_container .banner_content .banner_btns {
  width: 100%;
  display: flex;
  gap: 15px;
}
.banner_main_container .banner_content .banner_btns .btn {
  padding: 13.5px 24px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  position: relative;
  cursor: pointer;
  z-index: 2;
  outline: none;
  overflow: hidden;
  transition: all ease 0.5s;
}
.banner_main_container .banner_content .banner_btns .btn::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 300%;
  background-color: var(--white);
  border-radius: 50%;
  left: -50%;
  bottom: -300%;
  z-index: -1;
  transition: all ease 0.5s;
}
.banner_main_container .banner_content .banner_btns .btn:hover::after {
  bottom: -150%;
}
.banner_main_container .banner_content .banner_btns .btn:hover {
  color: var(--red);
}
.banner_main_container .banner_content .banner_btns .left_btn {
  background-color: var(--red);
}
.banner_main_container .banner_content .banner_btns .right_btn {
  background: transparent;
  border: 1px solid var(--white);
}
@media (max-width: 576px) {
  .banner_main_container .banner_content .banner_btns {
    flex-direction: column;
  }
  .banner_main_container .banner_content .banner_btns .btn {
    width: 100%;
    text-align: center;
  }
}

/*---=====BANNER---END=====---*/
/*---=====Pioneering---Electric---START=====---*/
.pioneering_container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 992px) {
  .pioneering_container {
    gap: 48px;
    grid-template-columns: 1fr;
  }
}
.pioneering_container .left_content {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pioneering_container .left_content .top_heading h2 {
  transition: all ease 0.5s;
}
.pioneering_container .left_content .top_heading h2 {
  line-height: 44px;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-size: 40px;
  font-family: "bold";
  color: var(--white);
}
@media (max-width: 992px) {
  .pioneering_container .left_content .top_heading h2 {
    font-size: 28px;
  }
}
.pioneering_container .left_content .center_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pioneering_container .left_content .center_content p {
  color: var(--textgrey);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  transition: all ease 0.5s;
}
.pioneering_container .left_content .center_content p:nth-child(2) {
  color: var(--grey);
}
.pioneering_container .left_content .center_content a {
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 16px 32px;
  border-radius: 4px;
  position: relative;
  font-size: 15px;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all ease 0.5s;
}
.pioneering_container .left_content .center_content a::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 300%;
  background-color: var(--red);
  border-radius: 50%;
  left: -50%;
  bottom: -300%;
  overflow: hidden;
  z-index: -1;
  transition: all ease 0.5s;
}
.pioneering_container .left_content .center_content a:hover::after {
  bottom: -150%;
}
.pioneering_container .left_content .center_content a:hover {
  color: var(--white);
  border: 2px solid var(--red);
}
.pioneering_container .left_content .bottom_content {
  display: flex;
  margin-top: 24px;
}
@media (max-width: 576px) {
  .pioneering_container .left_content .bottom_content {
    margin-top: 0;
    flex-direction: column;
  }
}
.pioneering_container .left_content .bottom_content .numbers_box {
  max-width: 238px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--grey);
  padding-left: 80px;
}
@media (max-width: 576px) {
  .pioneering_container .left_content .bottom_content .numbers_box {
    max-width: 100%;
    border-bottom: 1px solid var(--grey);
    border-right: 0;
    padding-bottom: 50px;
    padding-left: 0;
    padding-top: 40px;
  }
}
.pioneering_container .left_content .bottom_content .numbers_box h4,
.pioneering_container .left_content .bottom_content .numbers_box p {
  transition: all ease 0.5s;
}
.pioneering_container .left_content .bottom_content .numbers_box h4 {
  font-size: 56px;
  color: var(--red);
  font-family: "bold";
}
.pioneering_container .left_content .bottom_content .numbers_box p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--grey);
}
.pioneering_container .left_content .bottom_content .numbers_box:last-child {
  border: 0;
}
.pioneering_container .left_content .bottom_content .numbers_box:first-child {
  padding-left: 0;
}
.pioneering_container .right_content {
  width: 100%;
  position: relative;
}
.pioneering_container .right_content .right_img_video {
  width: 100%;
  position: relative;
}
.pioneering_container .right_content .right_img_video img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pioneering_container .right_content .right_img_video .play_btn {
  width: 91px;
  height: 91px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lightgrey);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all ease 0.5s;
}
.pioneering_container .right_content .right_img_video .play_btn:hover {
  transform: translate(-50%, -50%) scale(1.3);
}
.pioneering_container .right_content .right_img_video .play_btn:active {
  transform: translate(-50%, -50%) scale(0.9);
}

/*---=====Pioneering---Electric---END======---*/
/*===========Engineered---for---Excellence---START===========*/
.engineered_container_main {
  width: 100%;
  background-color: var(--white);
  text-align: center;
}
.engineered_container_main .engineered_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.engineered_container_main .engineered_container .top_content {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.engineered_container_main .engineered_container .top_content h2,
.engineered_container_main .engineered_container .top_content p {
  transition: all ease 0.5s;
}
.engineered_container_main .engineered_container .top_content h2 {
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -1px;
  font-family: "extrabold";
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .engineered_container_main .engineered_container .top_content h2 {
    font-size: 32px;
  }
}
.engineered_container_main .engineered_container .top_content p {
  max-width: 482px;
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #525252;
}
.engineered_container_main .engineered_container .bottom_boxes_container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 250px);
  justify-content: center;
  gap: 54px;
}
@media (max-width: 1245px) {
  .engineered_container_main .engineered_container .bottom_boxes_container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .engineered_container_main .engineered_container .bottom_boxes_container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .engineered_container_main .engineered_container .bottom_boxes_container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.engineered_container_main .engineered_container .bottom_boxes_container .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-right: 2px solid var(--grey);
  padding-right: 54px;
}
@media (max-width: 992px) {
  .engineered_container_main .engineered_container .bottom_boxes_container .box {
    border: none;
    padding: 0 50px;
  }
}
.engineered_container_main .engineered_container .bottom_boxes_container .box:last-child {
  border: 0;
}
.engineered_container_main .engineered_container .bottom_boxes_container .box .box_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.engineered_container_main .engineered_container .bottom_boxes_container .box .box_content h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.engineered_container_main .engineered_container .bottom_boxes_container .box .box_content p {
  font-size: 12px;
  line-height: 18px;
  color: #525252;
}

/*===========Engineered---for---Excellence---END===========*/
/*----===========Meet---the---Fleet---START===========----*/
.meet_fleet_main {
  width: 100%;
  background-image: url("../images/bg_shape.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
.meet_fleet_main .meet_fleet_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.meet_fleet_main .meet_fleet_container .top_content {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.meet_fleet_main .meet_fleet_container .top_content h2,
.meet_fleet_main .meet_fleet_container .top_content p {
  transition: all ease 0.5s;
}
.meet_fleet_main .meet_fleet_container .top_content h2 {
  color: var(--white);
  font-size: 40px;
  font-weight: 900;
  font-family: "extrabold";
  letter-spacing: -1px;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .meet_fleet_main .meet_fleet_container .top_content h2 {
    font-size: 32px;
  }
}
.meet_fleet_main .meet_fleet_container .top_content p {
  color: var(--textgrey);
  font-size: 18px;
  font-weight: 500;
}
.meet_fleet_main .meet_fleet_container .bottom_content {
  width: 100%;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 591px);
  justify-content: center;
  gap: 48px;
}
@media (max-width: 1275px) {
  .meet_fleet_main .meet_fleet_container .bottom_content .cards_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .meet_fleet_main .meet_fleet_container .bottom_content .cards_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .upper_section {
  width: 100%;
  height: 400px;
  background-color: var(--white);
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .upper_section .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .upper_section .content h5,
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .upper_section .content h3 {
  text-transform: uppercase;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .upper_section .content h5 {
  font-size: 18px;
  font-weight: 700;
  font-family: "bold";
  letter-spacing: 2px;
  color: var(--red);
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .upper_section .content h3 {
  font-size: 36px;
  font-family: "extrabold";
  font-weight: 900;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .upper_section .content p {
  font-size: 20px;
  font-weight: 500;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .upper_section .card_img {
  max-width: 458px;
  width: 90%;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .upper_section .card_img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all ease 0.5s;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section {
  width: 100%;
  min-height: 350px;
  background-color: var(--black);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section {
    padding: 20px;
  }
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .features_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 24px;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .features_grid .features {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .features_grid .features .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--iconsbg);
  transition: all ease 0.5s;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .features_grid .features p {
  color: var(--white);
  font-size: 12px;
  line-height: 15.6px;
  text-transform: uppercase;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content .top {
  width: 100%;
  padding: 23px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--grey);
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content .top .data {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content .top .data h5,
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content .top .data h6 {
  text-transform: uppercase;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content .top .data h6 {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1px;
  color: var(--grey);
  font-weight: 500;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content .top .data h5 {
  font-size: 32px;
  font-family: "extrabold";
  font-weight: 900;
  color: var(--red);
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content .top .data p {
  color: var(--grey);
  font-size: 10px;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content .bottom {
  width: 100%;
  text-align: center;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content .bottom a {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  background-color: var(--white);
  color: var(--white);
  padding: 12px 0;
  border-radius: 4px;
  font-size: 15px;
  position: relative;
  z-index: 2;
  transition: all ease 0.5s;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content .bottom a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--red);
  border-radius: 4px;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(1);
  transform-origin: center;
  transition: transform ease 0.5s;
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content .bottom a:hover::after {
  transform: scaleX(0);
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card .bottom_section .bottom_content .bottom a:hover {
  color: var(--red);
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card:hover .bottom_section .features_grid .features .icon {
  transform: rotate(360deg);
}
.meet_fleet_main .meet_fleet_container .bottom_content .cards_grid .card:hover .upper_section .card_img img {
  transform: rotate(-5deg) scale(1.1);
}

/*----===========Meet---the---Fleet---END===========----*/
/*----===========WHY---CHOOSE---US---START===========----*/
.why_choose_us_main {
  width: 100%;
  background-image: url("../images/bg_particles.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.why_choose_us_main .why_choose_us {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.why_choose_us_main .why_choose_us .top_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.why_choose_us_main .why_choose_us .top_content h2,
.why_choose_us_main .why_choose_us .top_content p {
  transition: all ease 0.5s;
}
.why_choose_us_main .why_choose_us .top_content h2 {
  font-size: 40px;
  color: var(--white);
  font-family: "extrabold";
  font-weight: 900;
  letter-spacing: -1px;
}
.why_choose_us_main .why_choose_us .top_content p {
  font-size: 18px;
  color: #97A0A6;
  line-height: 28.8px;
}
.why_choose_us_main .why_choose_us .bottom_content {
  width: 100%;
}
.why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid {
  width: 100%;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 568px);
  gap: 64px;
}
@media (max-width: 1275px) {
  .why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid {
    gap: 28px;
  }
}
@media (max-width: 576px) {
  .why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box {
  width: 100%;
  background-color: var(--blacklight);
  border: 1px solid var(--borderblack);
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 2;
  transition: all ease 0.5s;
}
@media (max-width: 768px) {
  .why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box {
    flex-direction: column;
  }
}
.why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box .left_icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box .left_icon svg {
  transition: all ease 0.5s;
}
.why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box .right_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box .right_content h3,
.why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box .right_content p {
  transition: all ease 0.5s;
}
.why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box .right_content h3 {
  font-size: 24px;
  letter-spacing: -0.5px;
  font-family: "extrabold";
  font-weight: 800;
  color: var(--white);
}
.why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box .right_content p {
  color: var(--textgrey);
  font-size: 16px;
  line-height: 25.6px;
}
.why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 14px;
  top: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform ease 0.5s;
  z-index: -1;
}
.why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box:hover::after {
  transform: scaleY(1);
  transform-origin: top;
}
.why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box:hover .right_content h3, .why_choose_us_main .why_choose_us .bottom_content .why_choose_us_features_grid .box:hover .right_content p {
  color: var(--black);
}

/*----===========WHY---CHOOSE---US---END===========----*/
/*-----===========Providing Efficiency---START===========----*/
.providing_efficiency {
  width: 100%;
  height: 803px;
  position: relative;
}
.providing_efficiency video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .providing_efficiency {
    height: auto;
  }
  .providing_efficiency video {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.providing_efficiency .video_txt {
  max-width: 880px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 56px 74px;
  transition: all ease 0.5s;
}
@media (max-width: 992px) {
  .providing_efficiency .video_txt {
    width: 75%;
    padding: 50px 16px;
  }
}
@media (max-width: 768px) {
  .providing_efficiency .video_txt {
    width: 85%;
    padding: 50px 16px;
  }
}
@media (max-width: 576px) {
  .providing_efficiency .video_txt {
    width: 100%;
    position: static;
  }
}
.providing_efficiency .video_txt h2 {
  color: var(--white);
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -1px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "extrabold";
  transition: all ease 0.5s;
}
@media (max-width: 992px) {
  .providing_efficiency .video_txt h2 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .providing_efficiency .video_txt h2 {
    font-size: 28px;
    line-height: 32px;
  }
}

/*-----===========Providing Efficiency---END===========----*/
/*-----===========CONTACT---START===========----*/
/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.contact_container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .contact_container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.contact_container .left_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact_container .left_content .top {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.contact_container .left_content .top h2 {
  font-size: 40px;
  font-family: "extrabold";
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  text-transform: uppercase;
  transition: all ease 0.5s;
}
@media (max-width: 768px) {
  .contact_container .left_content .top h2 {
    font-size: 32px;
  }
}
.contact_container .left_content .top p {
  color: var(--textgrey);
  font-size: 18px;
  line-height: 28.8px;
  font-weight: 500;
}
.contact_container .left_content .middle_img {
  width: 100%;
}
.contact_container .left_content .middle_img img {
  width: 100%;
}
.contact_container .left_content .bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.contact_container .left_content .bottom .bottom_content {
  max-width: 225px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact_container .left_content .bottom .bottom_content p,
.contact_container .left_content .bottom .bottom_content h5 {
  font-weight: 500;
}
.contact_container .left_content .bottom .bottom_content p {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--red);
}
.contact_container .left_content .bottom .bottom_content h5 {
  color: #7A7A7A;
  font-size: 18px;
  line-height: 27px;
}
.contact_container .right_content {
  width: 100%;
  background-color: var(--white);
  border-radius: 8px;
  padding: 36px;
}
@media (max-width: 992px) {
  .contact_container .right_content {
    padding: 28px 20px;
  }
}
.contact_container .right_content .contact_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact_container .right_content .contact_form .form_grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 768px) {
  .contact_container .right_content .contact_form .form_grid {
    grid-template-columns: 1fr;
  }
}
.contact_container .right_content .contact_form .field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact_container .right_content .contact_form .field label {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
  font-family: "extrabold";
  font-weight: 700;
}
.contact_container .right_content .contact_form .field input,
.contact_container .right_content .contact_form .field select,
.contact_container .right_content .contact_form .field textarea {
  width: 100%;
  border: 1px solid #ececec;
  border-radius: 4px;
  background-color: var(--white);
  color: #97A0A6;
  font-size: 16px;
  line-height: 24px;
  padding: 15px 20px;
  font-family: "medium";
  font-weight: 500;
  transition: border-color ease 0.3s;
}
.contact_container .right_content .contact_form .field input::-moz-placeholder, .contact_container .right_content .contact_form .field select::-moz-placeholder, .contact_container .right_content .contact_form .field textarea::-moz-placeholder {
  color: #8c95a5;
}
.contact_container .right_content .contact_form .field input::placeholder,
.contact_container .right_content .contact_form .field select::placeholder,
.contact_container .right_content .contact_form .field textarea::placeholder {
  color: #8c95a5;
}
.contact_container .right_content .contact_form .field input:focus,
.contact_container .right_content .contact_form .field select:focus,
.contact_container .right_content .contact_form .field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact_container .right_content .contact_form .field textarea {
  min-height: 138px;
  resize: vertical;
}
.contact_container .right_content .contact_form .field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 48px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23111111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}
.contact_container .right_content .contact_form .field select::-ms-expand {
  display: none;
}
.contact_container .right_content .contact_form .enquiry_btn {
  width: 100%;
  border: none;
  border-radius: 4px;
  background-color: var(--white);
  color: var(--white);
  border: 1px solid var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all ease 0.5s;
}
.contact_container .right_content .contact_form .enquiry_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--red);
  border-radius: 4px;
  left: 0;
  top: 0;
  z-index: -1;
  transform: scaleX(1);
  transform-origin: center;
  transition: transform ease 0.5s;
}
.contact_container .right_content .contact_form .enquiry_btn:hover::after {
  transform: scaleX(0);
}
.contact_container .right_content .contact_form .enquiry_btn:hover {
  color: var(--red);
}

.message-box {
  font-size: 18px;
  font-weight: 500;
  color: green;
}

.error {
  color: var(--red);
  font-size: 14px;
  font-weight: 500;
}

/*-----===========CONTACT---END===========----*/
/*-----===========FOOTER---START===========----*/
footer {
  width: 100%;
  background-color: var(--footerbg);
}
footer .footer_grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  footer .footer_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 576px) {
  footer .footer_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
footer .footer_grid .footer_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .footer_grid .footer_box .footer_img {
  width: 115px;
}
footer .footer_grid .footer_box .footer_img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer_grid .footer_box h4 {
  font-size: 16px;
  letter-spacing: 1px;
  font-family: "bold";
  text-transform: uppercase;
  color: var(--red);
}
footer .footer_grid .footer_box p {
  font-size: 18px;
  line-height: 27px;
  color: #7A7A7A;
  font-weight: 500;
}
footer .footer_grid .footer_box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .footer_grid .footer_box ul li a {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  text-decoration: none;
  color: #7A7A7A;
  font-weight: 500;
  z-index: 2;
  font-size: 16px;
  position: relative;
}
footer .footer_grid .footer_box ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--red);
  border-radius: 4px;
  bottom: -3px;
  left: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform ease 0.5s;
}
footer .footer_grid .footer_box ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
footer .footer_grid .footer_box .footer_contact_details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .footer_grid .footer_box .footer_contact_details .detail_box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 182px;
  width: 100%;
}
footer .footer_grid .footer_box .footer_contact_details .detail_box p,
footer .footer_grid .footer_box .footer_contact_details .detail_box h5,
footer .footer_grid .footer_box .footer_contact_details .detail_box a {
  font-weight: 500;
}
footer .footer_grid .footer_box .footer_contact_details .detail_box p {
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}
footer .footer_grid .footer_box .footer_contact_details .detail_box h5, footer .footer_grid .footer_box .footer_contact_details .detail_box a {
  font-size: 16px;
  color: #7A7A7A;
  line-height: 21px;
}
footer .footer_grid .footer_box .footer_contact_details .detail_box a {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  z-index: 2;
  position: relative;
}
footer .footer_grid .footer_box .footer_contact_details .detail_box a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--red);
  border-radius: 4px;
  bottom: -3px;
  left: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform ease 0.5s;
}
footer .footer_grid .footer_box .footer_contact_details .detail_box a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
footer .copywrite_box {
  width: 100%;
  border-top: 1px solid var(--black);
  padding: 30px 0 0 0;
  margin: 30px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  footer .copywrite_box {
    flex-direction: column;
  }
}
footer .copywrite_box .left p {
  font-size: 16px;
  color: #7A7A7A;
  font-weight: 500;
  line-height: 27px;
}
footer .copywrite_box .right .footer_icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .copywrite_box .right .footer_icons a {
  color: var(--black);
  transition: all ease 0.5s;
}
footer .copywrite_box .right .footer_icons a:hover {
  transform: translateY(-3px) scale(1.1);
  color: var(--red);
}

/*-----===========FOOTER---END===========----*/