@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
html {
  /* 62.5% of 16px base font size is 10px */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 50%;
  }
}
/** Color Pallet **/
:root {
  --white: #fff;
  --black: #000;
  --light-white: rgba(255, 255, 255, 0.9);
  --font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--font-family);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

section {
  max-width: 100vw;
}

p {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

button:focus {
  outline: none;
}

button,
input {
  outline: none;
  border: none;
}

.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

ul,
li {
  padding: 0;
  list-style: none;
  margin: 0px;
}

img {
  max-width: 100%;
}

main {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 575.98px) {
  .mobile-row {
    max-width: 90% !important;
    margin: auto !important;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1080px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1180px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}

.autovista_title {
  color: var(--white);
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 5rem;
  line-height: 5rem;
}
@media only screen and (max-width: 991.98px) {
  .autovista_title {
    font-size: 4.8rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .autovista_title {
    font-size: 3.5rem;
    line-height: 3.8rem;
  }
}

.discover_text p {
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 3rem;
}
@media only screen and (max-width: 991.98px) {
  .discover_text p {
    font-size: 1.8rem;
  }
}

.autovist_main_btn {
  padding-top: 6rem;
}
@media only screen and (max-width: 1399.98px) {
  .autovist_main_btn {
    padding-top: 4rem;
  }
}

.autovist_main_btn .btn_autovista {
  display: inline-block;
  font-size: 1.5rem;
  padding: 1.6rem 3rem;
  font-weight: 600;
  border: none;
  outline: none;
}

.autovist_main_btn .Schedule_btn {
  background-color: var(--white);
  color: var(--black);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 2px solid var(--white);
}

.autovist_main_btn .Schedule_btn:hover {
  background: transparent;
  color: var(--white);
}

.submit_btn .contact_btn {
  background-color: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  font-size: 1.5rem;
  padding: 1.6rem 6rem;
  font-weight: 600;
  outline: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.submit_btn .contact_btn:hover {
  background: transparent;
  color: var(--black);
}

.sub_head_autovista {
  font-size: 3rem;
  line-height: 4.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 7rem;
}
@media only screen and (max-width: 991.98px) {
  .sub_head_autovista {
    text-align: left;
    margin-bottom: 4rem;
  }
}

.desp-head {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.5rem;
}
@media only screen and (max-width: 1399.98px) {
  .desp-head {
    font-size: 2.2rem;
    line-height: 3.1rem;
  }
}

.desp_para {
  font-size: 1.6rem;
  font-weight: 400;
}

/******************************************************************************************************
***********************************************  input feild  **********************************************
*******************************************************************************************************/
.input-field {
  position: relative;
  width: 100%;
  margin-bottom: 6.5rem;
}
@media only screen and (max-width: 1399.98px) {
  .input-field {
    margin-bottom: 5rem;
  }
}

.form_label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--black);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  cursor: text;
  font-size: 1.5rem;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.form_input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--black);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #111;
  font-size: 1.5rem;
  position: static;
  z-index: 3;
}

.text_area_cls {
  min-height: 3.4rem;
  height: 3.3rem;
  max-height: 16rem;
}

.form_input:focus + .form_label {
  top: -25px;
}

.error:focus + .form_label {
  top: -25px;
}

.error:not([value=""]) + .form_label {
  top: -25px;
}
.form_input:not([value=""]) + .form_label {
  top: -25px;
}
.input-field .error {
  font-size: 1.2rem;
  color: red;
}
.mandatory::after {
  position: absolute;
  content: "*";
  color: red;
}

.top_spacing {
  padding-top: 10rem;
}
@media only screen and (max-width: 1399.98px) {
  .top_spacing {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .top_spacing {
    padding-top: 6rem;
  }
}

/******************************************************************************************************
*********************************************** Progress top  CSS **********************************************
*******************************************************************************************************/
.progress-wrap {
  position: fixed;
  right: 40px;
  bottom: 40px;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 3px rgba(143, 143, 143, 0.3);
  box-shadow: inset 0 0 0 3px rgba(143, 143, 143, 0.3);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media only screen and (max-width: 991.98px) {
  .progress-wrap {
    right: 30px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 991.98px) {
  .progress-wrap {
    right: 20px;
    bottom: 20px;
  }
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.top-arrow {
  position: absolute;
  top: 24%;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: darkslategrey;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/******************************************************************************************************
*********************************************** HEADER CSS **********************************************
*******************************************************************************************************/
.AutoVista_main_header {
  background-color: var(--black);
}
@media only screen and (max-width: 991.98px) {
  .AutoVista_main_header {
    position: static;
  }
}
.AutoVista_main_header .main_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 7.5rem 5rem 6rem 5rem;
}
@media only screen and (max-width: 1399.98px) {
  .AutoVista_main_header .main_header {
    margin: 5.5rem 3.3rem 3rem 3.3rem;
  }
}
@media only screen and (max-width: 1199.98px) {
  .AutoVista_main_header .main_header {
    margin: 5rem 2rem 4rem 2rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .AutoVista_main_header .main_header {
    margin: 10rem 0rem 6rem 3rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .AutoVista_main_header .main_header {
    margin: 10rem 0rem 6rem 3rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .AutoVista_main_header .main_header {
    margin: 10rem 0rem 6rem 0rem;
  }
}
.AutoVista_main_header .main_header .logo_autovista {
  width: 25.6rem;
}
@media only screen and (max-width: 1399.98px) {
  .AutoVista_main_header .main_header .logo_autovista {
    width: 22rem;
  }
}
.AutoVista_main_header .main_header .logo_autovista img {
  width: 100%;
}
.AutoVista_main_header .main_header .menu_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 991.98px) {
  .AutoVista_main_header .main_header .menu_items {
    display: none;
  }
}
.AutoVista_main_header .main_header .menu_items li {
  margin-left: 2.5rem;
}
@media only screen and (max-width: 1199.98px) {
  .AutoVista_main_header .main_header .menu_items li {
    margin-left: 2rem;
  }
}
.AutoVista_main_header .main_header .menu_items li a {
  color: var(--white);
  font-weight: 400;
  font-size: 1.5rem;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
}
@media only screen and (max-width: 1399.98px) {
  .AutoVista_main_header .main_header .menu_items li a {
    font-size: 1.3rem;
  }
}
.AutoVista_main_header .main_header .menu_items li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  top: 100%;
  left: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  background-color: var(--white);
}
@media only screen and (max-width: 1399.98px) {
  .AutoVista_main_header .main_header .menu_items li a::after {
    height: 2px;
  }
}
.AutoVista_main_header .main_header .menu_items li a:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

/******************************************************************************************************
***********************************************Landing css **********************************************
*******************************************************************************************************/
.discover_new_era_main {
  background-color: var(--black);
  position: relative;
  padding: 2rem 0 9.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 1399.98px) {
  .discover_new_era_main {
    padding: 0.5rem 0 4.5rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .discover_new_era_main {
    padding: 2.5rem 0 6.5rem;
  }
}
.discover_new_era_main .ai_icon_img {
  position: absolute;
}
.discover_new_era_main .shape_div {
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 100%;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  right: -19rem;
  bottom: -16rem;
  -webkit-animation: animation_circle 16s linear infinite;
  animation: animation_circle 16s linear infinite;
}
@media only screen and (max-width: 1399.98px) {
  .discover_new_era_main .shape_div {
    right: -22rem;
    bottom: -20.5rem;
  }
}
.discover_new_era_main .shape_div::after {
  content: "";
  position: absolute;
  width: 32rem;
  height: 32rem;
  left: 50%;
  top: 10%;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.discover_new_era_main .discover_title {
  padding-top: 6rem;
}
@media only screen and (max-width: 1399.98px) {
  .discover_new_era_main .discover_title {
    padding-top: 5rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .discover_new_era_main .discover_title {
    padding-top: 3rem;
  }
}
.discover_new_era_main .discover_text {
  margin: 4rem 0 0rem 0;
  max-width: 87%;
}
@media only screen and (max-width: 1399.98px) {
  .discover_new_era_main .discover_text {
    margin: 3.5rem 0 0;
    max-width: 96%;
  }
}
@media only screen and (max-width: 991.98px) {
  .discover_new_era_main .discover_text {
    margin: 3rem 0 0;
    max-width: 100%;
  }
}
.discover_new_era_main .car_image_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media only screen and (max-width: 1399.98px) {
  .discover_new_era_main .car_image_main {
    -webkit-transform: scale(0.9) !important;
    transform: scale(0.9) !important;
  }
}
@media only screen and (max-width: 991.98px) {
  .discover_new_era_main .car_image_main {
    display: none;
  }
}

.about_autovista_main .about_wrapper .sm_title {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 991.98px) {
  .about_autovista_main .about_wrapper .sm_title {
    margin-bottom: 4rem;
  }
}
.about_autovista_main .about_wrapper .sm_title h6 {
  font-size: 2rem;
  font-weight: 300;
}
.about_autovista_main .about_wrapper .main_head h1 {
  font-size: 6.6rem;
  color: var(--black);
  line-height: 6.5rem;
}
@media only screen and (max-width: 1399.98px) {
  .about_autovista_main .about_wrapper .main_head h1 {
    font-size: 6rem;
    line-height: 6rem;
  }
}
@media only screen and (max-width: 1199.98px) {
  .about_autovista_main .about_wrapper .main_head h1 {
    font-size: 5.5rem;
    line-height: 5.4rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .about_autovista_main .about_wrapper .main_head h1 {
    font-size: 4.8rem;
    line-height: 4.7rem;
  }
}
.about_autovista_main .about_wrapper .main_head h1 span {
  background: linear-gradient(236.02deg, #000000 -0.33%, #f3f3f3 112.54%),
    linear-gradient(0deg, #000000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: animationgradienttitle 30s linear infinite;
  animation: animationgradienttitle 30s linear infinite;
}
.about_autovista_main .about_content {
  background-color: var(--black);
  color: var(--light-white);
  padding: 8rem 6rem;
  max-width: 83%;
  margin-left: auto;
}
@media only screen and (max-width: 1399.98px) {
  .about_autovista_main .about_content {
    max-width: 88%;
  }
}
@media only screen and (max-width: 1199.98px) {
  .about_autovista_main .about_content {
    padding: 6rem 4.5rem;
    max-width: 95%;
  }
}
@media only screen and (max-width: 991.98px) {
  .about_autovista_main .about_content {
    margin-top: 5rem;
    max-width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .about_autovista_main .about_content {
    padding: 6rem 0.7rem;
  }
}
.about_autovista_main .about_content p {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 3.9rem;
}
.about_autovista_main .about_content p br {
  display: none;
}
@media (min-width: 1600px) {
  .about_autovista_main .about_content p br {
    display: block;
  }
}
@media only screen and (max-width: 1199.98px) {
  .about_autovista_main .about_content p {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .about_autovista_main .about_content p {
    padding: 0 0.7rem;
  }
}

.key_features_main {
  margin-top: 10rem;
  background: var(--black);
  color: var(--white);
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 575.98px) {
  .key_features_main {
    margin-top: 3rem;
  }
}
.key_features_main .shape_div {
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 100%;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  top: -17rem;
  left: -20rem;
  -webkit-animation: animation_circle 16s linear infinite;
  animation: animation_circle 16s linear infinite;
}
.key_features_main .shape_div::after {
  content: "";
  position: absolute;
  width: 32rem;
  height: 32rem;
  left: 50%;
  top: 10%;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.key_features_main .wrapper_key_feature_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
@media only screen and (max-width: 991.98px) {
  .key_features_main .wrapper_key_feature_main {
    margin-bottom: 4rem;
  }
}
.key_features_main .wrapper_key_feature_main .icon_img {
  margin-right: 1.8rem;
}
.key_features_main .wrapper_key_feature_main .icon_img img {
  -o-object-fit: contain;
  object-fit: contain;
}
.key_features_main .wrapper_key_feature_main .rapid_icon img {
  margin-top: -1rem;
}
.key_features_main .wrapper_key_feature_main .desp_sec {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.key_features_main .wrapper_key_feature_main .desp_sec .desp_para {
  color: var(--light-white);
  font-size: 1.5rem;
  max-width: 84%;
}
@media only screen and (max-width: 1399.98px) {
  .key_features_main .wrapper_key_feature_main .desp_sec .desp_para {
    max-width: 94%;
  }
}
@media only screen and (max-width: 575.98px) {
  .key_features_main .wrapper_key_feature_main .desp_sec .desp_para {
    max-width: 100%;
  }
}

.how_it_work_main .how_it_work_main_wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.how_it_work_main .how_it_work_main_wrapper .left_sec {
  padding-top: 12rem;
}
@media only screen and (max-width: 991.98px) {
  .how_it_work_main .how_it_work_main_wrapper .left_sec {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-top: 2rem;
  }
}
.how_it_work_main .how_it_work_main_wrapper .center_sec {
  padding: 0 4rem;
}
@media only screen and (max-width: 991.98px) {
  .how_it_work_main .how_it_work_main_wrapper .center_sec {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0;
    margin-bottom: 3.5rem;
  }
}
.how_it_work_main .how_it_work_main_wrapper .center_sec .app_image {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.how_it_work_main .how_it_work_main_wrapper .right_sec {
  padding-top: 12rem;
}
@media only screen and (max-width: 991.98px) {
  .how_it_work_main .how_it_work_main_wrapper .right_sec {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
.how_it_work_main .how_it_work_main_wrapper .code_imag_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.how_it_work_main .how_it_work_main_wrapper .code_imag_main .dmg_img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.how_it_work_main .how_it_work_main_wrapper .code_imag_main .dmg_img img {
  width: 100%;
}
.how_it_work_main .ipad_after_section {
  text-align: center;
  margin-top: 4.5rem;
}
@media only screen and (max-width: 991.98px) {
  .how_it_work_main .ipad_after_section {
    text-align: left;
  }
}
.how_it_work_main .ipad_after_section .desp_para {
  max-width: 450px;
  margin: auto;
}
@media only screen and (max-width: 991.98px) {
  .how_it_work_main .ipad_after_section .desp_para {
    margin: 0;
  }
}

.autovista_benefits_main {
  margin-top: 10rem;
  background-color: var(--black);
  color: var(--white);
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}
.autovista_benefits_main .shape_div {
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 100%;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  top: -17rem;
  right: -20rem;
  -webkit-animation: animation_circle 16s linear infinite;
  animation: animation_circle 16s linear infinite;
}
.autovista_benefits_main .shape_div::after {
  content: "";
  position: absolute;
  width: 32rem;
  height: 32rem;
  left: 50%;
  top: 10%;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.autovista_benefits_main .listing_row {
  position: relative;
}
.autovista_benefits_main .listing_row::after {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 100%;
  background-color: rgb(168, 168, 168);
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
@media only screen and (max-width: 991.98px) {
  .autovista_benefits_main .listing_row::after {
    display: none;
  }
}
.autovista_benefits_main .main_benefits_col .sub_section li {
  margin: 3rem 0;
  color: var(--light-white);
}
.autovista_benefits_main .main_benefits_col .sub_section li h6 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.autovista_benefits_main .main_benefits_col .sub_section li p {
  font-size: 1.6rem;
  max-width: 43.6rem;
  font-weight: 300;
}
.autovista_benefits_main .right_benefits_col {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media only screen and (max-width: 991.98px) {
  .autovista_benefits_main .right_benefits_col {
    width: auto;
    margin-left: 0;
  }
}

@media only screen and (max-width: 575.98px) {
  .grid_col {
    padding: 0 !important;
  }
}

.why_choose_main .main_grid_section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  color: var(--white);
}
@media only screen and (max-width: 991.98px) {
  .why_choose_main .main_grid_section {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.why_choose_main .main_grid_section .grid_item {
  background-color: var(--black);
  min-height: 27rem;
  padding: 7.4rem 4.4rem 3rem 5rem;
  position: relative;
}
@media only screen and (max-width: 991.98px) {
  .why_choose_main .main_grid_section .grid_item {
    padding: 4rem 3rem 5rem 3rem !important;
  }
}
@media only screen and (max-width: 575.98px) {
  .why_choose_main .main_grid_section .grid_item {
    padding: 4rem 0.9rem 5rem 0.9rem !important;
  }
}
.why_choose_main .main_grid_section .grid_item:first-child {
  -ms-grid-row-span: 2;
  grid-row: span 2;
  padding: 7rem 0 2rem 7rem;
}
.why_choose_main .main_grid_section .grid_item:first-child .number_cnt h2 {
  position: static;
  margin-bottom: 4rem;
}
.why_choose_main .main_grid_section .grid_item .number_cnt h2 {
  font-size: 8rem;
  position: absolute;
  right: 6rem;
  top: 2.5rem;
}
@media only screen and (max-width: 1399.98px) {
  .why_choose_main .main_grid_section .grid_item .number_cnt h2 {
    font-size: 7rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .why_choose_main .main_grid_section .grid_item .number_cnt h2 {
    position: static;
    margin-bottom: 4rem;
  }
}
.why_choose_main .main_grid_section .grid_item .desp_sec {
  width: 70%;
}
.why_choose_main .main_grid_section .grid_item .desp_sec .desp_para {
  color: var(--light-white);
}

@media only screen and (max-width: 991.98px) {
  .contact_main .top_spacing {
    padding-top: 2rem;
  }
}
.contact_main .left_main_wrapper {
  background-color: var(--black);
  color: var(--white);
  padding: 7rem 6.5rem 6rem;
  height: 100%;
}
@media only screen and (max-width: 1399.98px) {
  .contact_main .left_main_wrapper {
    padding: 6rem 4rem 5rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .contact_main .left_main_wrapper {
    padding: 7rem 4.2rem;
  }
}
.contact_main .left_main_wrapper .contact_head {
  margin-top: 6rem;
}
@media only screen and (max-width: 1399.98px) {
  .contact_main .left_main_wrapper .contact_head {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .contact_main .left_main_wrapper .contact_head {
    margin-top: 5rem;
  }
}
.contact_main .left_main_wrapper .contact_head h3 {
  font-size: 4.4rem;
  font-weight: 300;
  line-height: 5rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 1399.98px) {
  .contact_main .left_main_wrapper .contact_head h3 {
    font-size: 3.7rem;
    padding-bottom: 2rem;
    line-height: 4.6rem;
  }
}
@media only screen and (max-width: 1199.98px) {
  .contact_main .left_main_wrapper .contact_head h3 {
    font-size: 3.3rem;
    line-height: 4rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .contact_main .left_main_wrapper .contact_head h3 {
    padding-bottom: 3rem;
  }
}
.contact_main .left_main_wrapper .desp_contact h6 {
  font-size: 1.5rem;
  font-weight: 400;
  padding-bottom: 1rem;
  color: var(--light-white);
}
.contact_main .left_main_wrapper .desp_contact p {
  font-size: 1.8rem;
  line-height: 2.5rem;
  font-weight: 300;
  color: var(--light-white);
}
.contact_main .left_main_wrapper .desp_contact h5 {
  font-size: 2rem;
  font-weight: 500;
  padding-top: 3rem;
}
@media only screen and (max-width: 1399.98px) {
  .contact_main .left_main_wrapper .desp_contact h5 {
    padding-top: 2rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .contact_main .left_main_wrapper .desp_contact h5 {
    padding-top: 3rem;
  }
}
.contact_main .right_main_wrapper {
  max-width: 90%;
  margin-left: auto;
}
@media only screen and (max-width: 991.98px) {
  .contact_main .right_main_wrapper {
    max-width: 100%;
    margin-left: 0;
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .contact_main .right_main_wrapper {
    margin: 5rem auto 0 !important;
  }
}
.contact_main .right_main_wrapper .sub_head_autovista {
  text-align: left;
}
@media only screen and (max-width: 1399.98px) {
  .contact_main .right_main_wrapper .sub_head_autovista {
    margin-bottom: 5.5rem;
  }
}

.terms_privacy_main .main_ts_pp_head {
  margin-top: 8rem;
}
.terms_privacy_main .main_ts_pp_head h2 {
  font-size: 3.4rem;
  font-weight: 500;
}
.terms_privacy_main .main_content_area_ts_pp h6 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 3rem 0;
}
.terms_privacy_main .main_content_area_ts_pp p {
  font-size: 1.6rem;
  font-weight: 400;
}
.terms_privacy_main .main_content_area_ts_pp p a {
  color: var(--black);
  text-decoration: underline;
}

.autovista_footer_main {
  margin-top: 8rem;
  background-color: var(--black);
  color: var(--white);
  padding: 4rem 0;
}
.autovista_footer_main .footer_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 991.98px) {
  .autovista_footer_main .footer_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
@media only screen and (max-width: 767.98px) {
  .autovista_footer_main .footer_wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.autovista_footer_main .footer_wrapper .copy_section h6 {
  font-size: 1.5rem;
  font-weight: 300;
}
@media only screen and (max-width: 991.98px) {
  .autovista_footer_main .footer_wrapper .pr_tc_section {
    margin-top: 0.6rem;
  }
}
.autovista_footer_main .footer_wrapper .pr_tc_section a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
}

@-webkit-keyframes animation_circle {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animation_circle {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes animationgradienttitle {
  0% {
    background-position: 0 1600px;
  }
  100% {
    background-position: 1600px 0;
  }
}
@keyframes animationgradienttitle {
  0% {
    background-position: 0 1600px;
  }
  100% {
    background-position: 1600px 0;
  }
}

/******************************************************************************************************
*********************************************** tank-you page css **********************************************
*******************************************************************************************************/
@media only screen and (max-width: 575.98px) {
  .thank-you-autoVista .mobile-row-tank {
    max-width: 97%;
    margin: auto;
  }
}
.thank-you-autoVista .thank-you-main-wrapper {
  border: 1px solid #000;
  max-width: 600px;
  text-align: center;
  margin: 60px auto 0;
  padding: 3.5rem 2rem;
}
@media only screen and (max-width: 1199.98px) {
  .thank-you-autoVista .thank-you-main-wrapper {
    margin: 50px auto 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .thank-you-autoVista .thank-you-main-wrapper {
    margin: 70px auto 0;
  }
}
.thank-you-autoVista .thank-you-main-wrapper .autovist_main_btn {
  padding-top: 3rem;
}
.thank-you-autoVista .thank-you-main-wrapper .autovist_main_btn .thank-you-btn {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.thank-you-autoVista
  .thank-you-main-wrapper
  .autovist_main_btn
  .thank-you-btn:hover {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
}

/****************************************************** end tank-you page css ********************************************************/

/****************************************************** FAQ section ********************************************************/
.accordin_faq .main_accordin .accordion-item .accordion-header button h6 {
  font-size: 1.8rem;
  font-family: var(--font-family);
}
@media (max-width: 1399.98px) {
  .accordin_faq .main_accordin .accordion-item .accordion-header button h6 {
    font-size: 1.7rem;
  }
}

.accordin_faq .main_accordin .accordion-item .accordion-header button h6 span {
  margin-right: 0.5rem;
}
@media (max-width: 991.98px) {
  .accordin_faq .main_accordin .accordion-item .accordion-header button h6 {
    font-size: 1.6rem;
  }
  .accordin_faq
    .main_accordin
    .accordion-item
    .accordion-header
    button
    h6
    span {
    margin-right: 0.4rem;
  }
}
.accordion-button::after {
  display: none;
}

/* .accordion-button:not(.collapsed) {
  color: #3384f7;
} */
.accordion-button:not(.collapsed) .arrow_faq .plus {
  display: none;
}

.accordion-button .arrow_faq .minuse {
  display: none;
}

.accordion-button:not(.collapsed) .arrow_faq .minuse {
  display: block;
}

.accordin_faq
  .main_accordin
  .accordion-item
  .accordion-header
  button
  .arrow_faq {
  margin-left: auto;
  padding-left: 10px;
}

.accordin_faq
  .main_accordin
  .accordion-item
  .accordion-header
  button
  .arrow_faq
  i {
  font-size: 2rem;
}

@media (max-width: 767.98px) {
  .accordin_faq
    .main_accordin
    .accordion-item
    .accordion-header
    button
    .arrow_faq
    i {
    margin-left: 1rem;
  }
}
.accordion {
  --bs-accordion-border-color: #ffffff;
  --bs-accordion-btn-focus-border-color: #ffffff;
}

.accordion-button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.accordion-button {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.accordin_faq .accordion-item {
  border: 1px solid var(--black) !important;
  margin: 1.3rem 0;
  border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
  background: none;
  color: #000;
}

.accordion-button {
  padding: 2.5rem 2rem;
}

.accordin_faq .main_accordin .accordion-body {
  padding: 1rem 2rem 3rem;
}

.accordin_faq .main_accordin .accordion-body p {
  font-size: 1.6rem;
  text-align: justify;
  font-family: var(--font-family);
}

@media (max-width: 1399.98px) {
  .accordin_faq .main_accordin .accordion-body p {
    font-size: 1.5rem;
  }
}

/****************************************************** end FAQ section ********************************************************/

/****************************************************** download css ********************************************************/

.download-main-tag-f {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.download-main-wrapper {
  margin-top: 6rem;
}
.download-main-wrapper .form-main-wrapper {
  max-width: 60rem;
  margin: auto;
}
.download-pdf-head {
  font-size: 3rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 575.98px) {
  .download-pdf-head {
    text-align: center;
    font-size: 2.7rem;
  }
}
.sticky-button {
  position: fixed;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 130px;
  background: #fff;
  text-align: center;
  padding: 0.6rem 2rem;
  -webkit-box-shadow: 1px 1px 3px #838383;
  box-shadow: 1px 1px 3px #838383;
}
.sticky-button a {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
}
@media only screen and (max-width: 767.98px) {
  .sticky-button {
    width: 115px;
  }
}
@media only screen and (max-width: 575.98px) {
  .sticky-button {
    width: 100px;
  }
}



.contact_form_modal .show .mdl-scale {
  -webkit-transform: scale(1) !important;
  transform: scale(1) !important;
}
.contact_form_modal .modal-dialog {
  -webkit-transform: scale(0.7) !important;
  transform: scale(0.7) !important;
  -webkit-transition: all 0.4s ease-in-out !important;
  transition: all 0.4s ease-in-out !important;
  max-width: 650px !important;
}
@media only screen and (max-width: 1399.98px) {
  .contact_form_modal .modal-dialog {
    max-width: 550px !important;
  }
}
@media only screen and (max-width: 575.98px) {
  .contact_form_modal .modal-dialog {
    margin: 0 1.2rem !important;
  }
}
.contact_form_modal .modal-dialog .modal-header {
  border-bottom: none;
  padding: 2.6rem 2.6rem 0 0;
}
.contact_form_modal .modal-dialog .modal-header .btn-close-csm {
  background: url(../images/icons/Vector-close.svg);
  opacity: 1;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  outline: none !important;
  border: none;
}
.contact_form_modal .modal-dialog .modal-header .btn-close:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.contact_form_modal .modal-dialog .modal_main_body {
  height: 32rem;
  padding: 3rem 0 5rem 0;
}
@media only screen and (max-width: 1399.98px) {
  .contact_form_modal .modal-dialog .modal_main_body {
    min-height: 28rem;
  }
}

.contact_form_modal .modal-dialog .modal_main_body .mdl_content p {
  font-size: 1.5rem;
  font-family: var(--font-family);
  font-weight: 400;
  padding-top: 3rem;
}

.contact_form_modal .modal-dialog .modal_main_body .mdl_content h5 {
  font-size: 1.8rem;
  font-family: var(--font-family);
  font-weight: 500;
  padding: 2rem 0 4rem;
}


.country-code {
  font-size: 2rem;
  font-weight: 600;
  margin-right: 1rem;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: var(--white);
}

.phone-label {
  font-size: 1.5rem;
}