/* Font Family */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&family=Roboto:wght@300;400&display=swap");
@font-face {
  font-family: "Calibri";
  src:
    url("/assets/fonts/CalibriBold.TTF") format("truetype"),
    url("/assets/fonts/CalibriRegular.ttf") format("truetype"),
    url("/assets/fonts/CalibriLight.ttf") format("truetype");
}
@font-face {
  font-family: "Aligarh";
  font-style: normal;
  font-weight: normal;
  src:
    url("/assets/fonts/AligarhLight.otf") format("truetype"),
    url("/assets/fonts/AligarhDEMOLight.otf");
}
@font-face {
  font-family: "Arial";
  font-style: normal;
  font-weight: normal;
  src: url("/assets/fonts/ArialTh.ttf") format("truetype");
}

/* Global CSS */

/* Fading animation */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  /* background: url(/assets/images/main-bg.webp); */
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 100% !important;
  overflow-x: hidden;
}
.container {
  max-width: 1400px !important;
}

.next-btn,
.next-btn2,
.next-btn3,
.next-btn4,
.prev-btn,
.prev-btn2,
.prev-btn3,
.prev-btn4 {
  z-index: 9999999999 !important;
}
.star {
  color: rgb(255 110 110);
}
#responseMessage {
  background-color: white;
  border-radius: 5px;
}

#responseMessage p {
  margin: 5px;
  margin-bottom: 5px !important;
}

/* slider */
.slider-conatiner {
  position: relative;
}
.slider-wrap {
  display: flex;
}
.slide img {
  width: 300px;
}
.slide {
  display: none;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  display: flex;
  opacity: 1;
}
.next-btn {
  position: absolute;
  top: 230px;
  right: -90px;
  cursor: pointer;
}
.prev-btn {
  position: absolute;
  top: 230px;
  left: -90px;
  cursor: pointer;
}

/* slider 2*/
.slider-conatiner2 {
  position: relative;
}
.slider-wrap2 {
  display: flex;
}
.slide2 img {
  width: 300px !important;
  margin-left: 0px !important;
}
.slide2 {
  display: none;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.slide2.active {
  display: flex;
  opacity: 1;
}
.next-btn2 {
  position: absolute;
  top: 230px;
  right: -90px;
  cursor: pointer;
  width: 72px !important;
  margin-left: 0 !important;
}
.prev-btn2 {
  position: absolute;
  top: 230px;
  left: -90px;
  cursor: pointer;
  width: 72px !important;
  margin-left: 0 !important;
}

/* slider 3*/
.slider-conatiner3 {
  position: relative;
}
.slider-wrap3 {
  display: flex;
}
.slide3 img {
  width: 300px !important;
  margin-left: 0px !important;
}
.slide3 {
  display: none;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.slide3.active {
  display: flex;
  opacity: 1;
}
.next-btn3 {
  position: absolute;
  top: 230px;
  right: -90px;
  cursor: pointer;
  width: 72px !important;
  margin-left: 0 !important;
}
.prev-btn3 {
  position: absolute;
  top: 230px;
  left: -90px;
  cursor: pointer;
  width: 72px !important;
  margin-left: 0 !important;
}

/* slider 4*/
.slider-conatiner4 {
  position: relative;
}
.slider-wrap4 {
  display: flex;
}
.slide4 img {
  width: 300px !important;
  margin-left: 0px !important;
}
.slide4 {
  display: none;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.slide4.active {
  display: flex;
  opacity: 1;
}
.next-btn4 {
  position: absolute;
  top: 230px;
  right: -90px;
  cursor: pointer;
  width: 72px !important;
  margin-left: 0 !important;
}
.prev-btn4 {
  position: absolute;
  top: 230px;
  left: -90px;
  cursor: pointer;
  width: 72px !important;
  margin-left: 0 !important;
}
/* Header */
.menu {
  display: flex;
  gap: 25px;
}
.menu a {
  text-decoration: none;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
}
.menu a:hover {
  color: #f59619;
  transition: all ease 0.3s;
}

.cookie {
  text-decoration: none;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
}
.cookie:hover {
  color: #f59619 !important;
  transition: all ease 0.3s;
}

.menuFooter {
  text-decoration: none;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  z-index: 999999999999999999;
  position: relative;
}
.menuFooter:hover {
  color: #f59619;
  transition: all ease 0.3s;
}

.mobile-menu {
  position: fixed;
  background: #3c4853;
  left: 0;
  top: 0;
  width: 400px;
  transition:
    opacity 0.3s ease,
    visibility 1s ease;
  height: 100vh;
  z-index: 99999999999999999999999999;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
}

.faq-mobile-menu ul li::before {
  display: none !important;
}

.sidebar-logo {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}
.sidebar-logo img {
  width: 200px;
}

.social-info-sidebar i {
  font-size: 30px;
  margin-bottom: 20px;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.burger-icon {
  color: white;
  cursor: pointer;
  margin-left: 20px;
}
.close-icon {
  margin: 10px;
  color: white;
  cursor: pointer;
}
.mobile-menu ul li {
  list-style: none;
  margin-bottom: 5px;
}
.mobile-menu ul li:hover a {
  color: #1f2228;
  transition: all ease 0.3s;
}
.mobile-menu ul li a {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  text-decoration: none;
}
/* Active link color */

.contact-sidebar {
  margin-left: 50px;
  margin-top: 40px;
}
.contact-title-mobile h2 {
  font-family: "Aligarh";
  font-size: 22px;
  color: white;
}
.contact-sidebar p,
.contact-sidebar a {
  color: white;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
.social-info-sidebar {
  margin: 40px 0 0 50px;
  display: flex;
  gap: 20px;
}
.contact-sidebar p {
  margin-bottom: 0.5rem;
}
.offcanvas-header {
  justify-content: end;
}
.global-sec {
  height: 800px;
}
.logo img {
  width: 180px;
  height: 80px;
}
.sign-in-sec p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 0;
}
.sign-in-sec p a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}
.sign-in-sec p a:hover {
  color: white !important;
  transition: all ease 0.3s;
}

.sign-in-sec p a {
  color: #f59619;
  transition: all ease 0.3s;
}

.lock-icon {
  /* background: url(/assets/images/lock_bg.png); */
  background-repeat: no-repeat;
}
.lock-icon img {
  margin-right: 2px !important;
}
.banner-txt-col {
  margin-top: 20%;
}
.banner-txt {
  font-family: "Aligarh";
  font-size: 100px;
}
.footer-logo {
  position: fixed;
  bottom: 40px;
  right: 0px;
  z-index: 999999;
}
.scroll-top {
  position: fixed;
  bottom: 135px;
  right: 50px;
  z-index: 9999999999;
}
.logo-sec {
  position: fixed;
  /* width: 92%; */
  padding: 10px;
  z-index: 999999999999;
}

/* Second Section */
.second-sec-txt h1 {
  color: white;
  font-family: "Aligarh";
  font-size: 55px;
  margin-top: -30px;
}
.second-sec-lft-col {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.second-sec-lft-col img {
  position: absolute;
}
.second-sec-lft-col .house {
  left: 195px;
  width: 300px;
  height: 300px;
  top: 35px;
}
.second-sec-lft-col .hexa1 {
  left: 462px;
  top: 45px;
  width: 230px;
  height: 260px;
}
.second-sec-lft-col .lady {
  left: 575px;
  top: -25px;
  width: 300px;
}
.second-sec-lft-col .man-work {
  left: 115px;
  top: 305px;
  width: 280px;
}
.second-sec-lft-col .hexa2 {
  left: 325px;
  top: 266px;
  width: 230px;
  height: 260px;
}
.second-sec-lft-col .hexa3 {
  left: 595px;
  top: 269px;
  width: 230px;
  height: 260px;
}
.second-sec-lft-col .man-stand {
  left: 750px;
  top: 315px;
  width: 271px;
}

/* Third Section */

.customer img,
.dealer img,
.service img,
.corporate img {
  width: 170px;
  height: 190px;
}

.lady2 img,
.hand-shake img,
.work-man-2 img,
.stand-man-2 img {
  width: 250px;
}

.third-sec-right-col h1 {
  color: white;
  font-family: "Aligarh";
  font-size: 55px;
}
.third-sec-right-col div {
  position: absolute;
}

.third-sec-right-col .truck {
  left: 620px;
  top: -160px;
}
.third-sec-right-col .third-sec-txt {
  right: 270px;
  top: 15px;
}
.third-sec-right-col .lady2 {
  left: 55px;
  top: 90px;
}
.third-sec-right-col .customer {
  left: 245px;
  top: 175px;
}
.third-sec-right-col .dealer {
  left: 455px;
  top: 175px;
}
.third-sec-right-col .hand-shake {
  left: 565px;
  top: 111px;
}
.third-sec-right-col .work-man-2 {
  left: -43px;
  top: 315px;
}
.third-sec-right-col .service {
  left: 147px;
  top: 347px;
}
.third-sec-right-col .corporate {
  left: 355px;
  top: 345px;
}
.third-sec-right-col .stand-man-2 {
  left: 460px;
  top: 343px;
}

/* Fourth section */
.fourth-sec-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  flex-direction: column;
}
.fourth-sec-txt-title {
  font-size: 60px;
  font-family: "Aligarh";
}
.fourth-sec-txt-desc div {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.fourth-sec-txt-desc div > div {
  width: 10px;
  height: 10px;
  background-color: #9b9b9b;
  border-radius: 3px;
}
.fourth-sec-txt-desc p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  text-align: left;
  margin-bottom: 0.3rem !important;
  color: #d3d1d1;
}
.okay-man,
.stand-girl,
.house-2 {
  position: absolute;
}
.okay-man {
  top: -40px;
  left: 450px;
}
.okay-man img {
  width: 280px;
}
.house-2 {
  top: 265px;
  left: 170px;
}
.house-2 img {
  width: 300px;
}
.stand-girl {
  top: 216px;
  left: -61px;
}
.fourth-prev {
  left: -80px;
}
.fourth-next {
  right: -80px;
}

/* Fifth Section */
.fifth-prev {
  left: -40px;
}
.fifth-next {
  right: -40px;
}
.fifth-sec-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  flex-direction: column;
}
.fifth-sec-txt-title {
  font-size: 60px;
  font-family: "Aligarh";
}
.fifth-sec-txt-desc div {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.fifth-sec-txt-desc div > div {
  width: 10px;
  height: 10px;
  background-color: #9b9b9b;
  border-radius: 3px;
}
.fifth-sec-txt-desc p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  text-align: left;
  margin-bottom: 0.3rem !important;
  color: #d3d1d1;
}
.okay-man-2,
.tab-girl,
.garage {
  position: absolute;
}
.okay-man-2 img {
  width: 300px;
}
.tab-girl img {
  width: 300px;
}
.tab-girl {
  top: -75px;
  left: 500px;
}
.garage {
  top: 320px;
  left: 330px;
}
.okay-man-2 {
  top: -88px;
  left: -110px;
}
.fifth-sec-right-col img {
  width: 450px;
  margin-left: 100px;
}

/* sixth section */
.sixth-prev {
  left: -80px;
}
.sixth-next {
  right: -80px;
}
.sixth-sec-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
  flex-direction: column;
}
.sixth-sec-txt-title {
  font-size: 60px;
  font-family: "Aligarh";
}
.sixth-sec-txt-desc div {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.sixth-sec-txt-desc div > div {
  width: 10px;
  height: 10px;
  background-color: #9b9b9b;
  border-radius: 3px;
}
.sixth-sec-txt-desc p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  text-align: left;
  margin-bottom: 0.3rem !important;
  color: #d3d1d1;
}
.truck-2,
.stand-man-3,
.sit-man {
  position: absolute;
}
.truck-2 img {
  width: 200px;
}
.stand-man-3 img,
.sit-man img {
  width: 250px;
}
.truck-2 {
  top: -15px;
  left: 550px;
}
.sit-man {
  top: 310px;
  left: 490px;
}
.stand-man-3 {
  top: 300px;
  left: -45px;
}
.sixth-sec-right-col img {
  width: 450px;
}

/* Seventh section */
.seventh-prev {
  left: -40px;
}
.seventh-next {
  right: -40px;
}
.seventh-sec-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  flex-direction: column;
}
.seventh-sec-txt-title {
  font-size: 60px;
  font-family: "Aligarh";
}
.seventh-sec-txt-desc div {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.seventh-sec-txt-desc div > div {
  width: 10px;
  height: 10px;
  background-color: #9b9b9b;
  border-radius: 3px;
}
.seventh-sec-txt-desc p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  text-align: left;
  margin-bottom: 0.3rem !important;
  color: #d3d1d1;
}
.hand-shake-2,
.lady-3 {
  position: absolute;
}
.lady-3 {
  top: 90px;
  left: 430px;
}
.lady-3 img {
  width: 300px;
}
.hand-shake-2 {
  top: 200px;
  left: -70px;
}
.hand-shake-2 img {
  width: 300px;
}
.seventh-sec-right-col img {
  width: 400px;
  margin-left: 100px;
}
a.scroll-top {
  position: absolute;
  bottom: 110px;
  right: 30px;
}

/* Section Eight */
.sec-eight-left-col {
  height: 75vh;
}
.form {
  width: 80%;
  z-index: 99999999999 !important;
}
.form-title h2 {
  font-family: "Aligarh";
  font-weight: bold;
  color: white;
  text-align: left;
  margin-bottom: 50px;
  font-size: 34px;
}
.form p {
  color: #d3d1d1;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
}
.form div {
  margin-bottom: 30px;
}
.submit-btn {
  background-color: #3c4853 !important;
  color: white !important;
}

.submit-btn:hover {
  background-color: #5b6e81 !important;
  color: white !important;
}

.form input,
.form textarea {
  border: none;
  background: none;
  border-bottom: 2px solid #9b9b9b;
  width: 100%;
  color: white;
}
.form input:focus-visible,
.form textarea:focus-visible {
  border: none;
  outline: none;
  background: none;
  border-bottom: 2px solid #9b9b9b;
  color: white;
}
.form textarea {
  width: 100%;
  height: 30px;
  resize: none;
}
.submit-div a {
  cursor: pointer;
}
.submit-div img {
  width: 100px;
}
.submit-div p {
  margin-bottom: 0;
}
.eight-sec {
  height: auto !important;
}
.eight-sec-right-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 75vh;
  align-items: center;
  z-index: 99999;
}
.contact-title {
  margin-left: -175px;
  margin-top: 10px;
}
.social-media-wrap {
  margin-left: -295px;
  margin-top: 30px;
  z-index: 9999;
}
.contact-title h2,
.social-title {
  font-family: "Aligarh";
  font-weight: bold;
  color: white;
  margin-bottom: 50px;
  font-size: 34px;
}
.contact-details {
  width: 87%;
}
.contact-details div {
  display: flex;
  gap: 175px;
  justify-content: left;
}
.contact-details p {
  color: #d3d1d1;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
}
.contact-details a:hover {
  color: #f59619;
  transition: all ease 0.3s;
}
.contact-details a {
  color: #d3d1d1;
}
.social-info a {
  color: white;
  text-decoration: none;
  cursor: pointer;
}
.social-info a:hover {
  color: #f59619;
  transition: all ease 0.3s;
}
.social-info a i {
  font-size: 30px;
  margin-right: 10px;
}
.phone,
.mail {
  text-decoration: none;
  color: white;
}
p.address {
  margin-left: -28px;
}
a.phone {
  margin-left: -7px;
}

/* Footer */
.footer-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 100px;
}
.footer-wrap a {
  text-decoration: none;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #d3d1d1;
}

/* Footer bottom */
.footer-btm {
  background: rgba(52, 58, 71, 0.56);
  padding: 10px 0;
}
.footer-btm p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
}

/* FAQ */
#accordionExample .faq-acoordn::after {
  background-image: url("/assets/images/down_arrow.png") !important;
}

/* Ritik */

html,
body {
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

body {
  position: relative;
}

.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
  z-index: 15;
  overflow: auto;
  height: 100%;
}

canvas {
  touch-action: auto !important;
}

button.faq-acoordn {
  background-color: #2d323b !important;
  color: white !important;
}

/* Cookie Banner */
.termly-styles-root-f9c495 {
  max-height: 80% !important;
  margin-top: 100px !important;
}

/* Support Page */
.search-container-customer {
  margin: 0 auto;
}
.search-input-customer {
  border-radius: 10px;
  padding-left: 2.5rem;
}
.search-input-customer:focus {
  box-shadow: none;
  border: 1px solid #ced4da;
}
.search-icon-customer {
  position: absolute;
  left: 15px;
  top: 10px;
  color: black;
}
.container-customer {
  max-width: 1000px;
  margin: 0 auto;
}
.customer-support-card-css .card:hover {
  border: 1px solid #f59619;
}
.web-customer-support-card h5 {
  color: black !important;
  font-weight: 600 !important;
}
.customer-support-card-css h5 {
  color: black !important;
  font-weight: 600 !important;
}
.customer-support-card-css a {
  text-decoration: none;
}

.customer-support-card-css p {
  color: black;
}

/* Mobile Customer Support */

.mobile-customer-support-card-wrap {
  width: 100%;
}

.mobile-customer-support-card-wrap-card hr {
  margin: 0;
}
.mobile-customer-support-card-wrap-card ul li {
  font-weight: 500;
}
.mobile-customer-support-content {
  padding: 10px 10px;
}
.mobile-customer-support-content a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}
.mobile-customer-support-content a:hover {
  color: #f59619;
  transition: all ease 0.3s;
}
.mobile-customer-support-content-list:hover {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 5px 5px;
  transition: all ease 0.3s;
}

.accordn-btn:focus {
  border: none;
  box-shadow: none;
}

.accordn-btn:hover {
  background-color: #e7f1ff;
}

/* Support details page */
.details-page-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.doc-link-color {
  color: #0d6efd !important;
}
.doc-link-color:hover {
  color: #f59619 !important;
  transition: all ease 0.3s;
}

.download-app-img a img {
  width: 180px;
}