@font-face {
  font-family: Mona Sans;
  src: url('../fonts/Mona-Sans-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Mona Sans;
  src: url('../fonts/Mona-Sans-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Mona Sans Narrow;
  src: url('../fonts/Mona-Sans-BlackNarrow.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #0b0620;
  --light-steel-blue: #c6ccff;
  --thistle: #f0ddff;
  --dark-orange: #ff9500;
  --dodger-blue: #00a3ff;
  --deep-sky-blue: #4cc9ff;
  --black: #0e0f11;
  --navy: #000a76;
  --red: #ff1f1f;
  --black-grey: #222;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--dark);
  color: var(--light-steel-blue);
  font-family: Mona Sans, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

h1 {
  color: var(--thistle);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: var(--thistle);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Mona Sans Narrow, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.1;
}

h3 {
  color: var(--thistle);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Mona Sans Narrow, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

strong {
  color: #fff;
  font-weight: 700;
}

.page-padding {
  height: 800px;
  position: relative;
}

.page-padding._2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.container {
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: relative;
}

.container.hero {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  position: relative;
}

.container.hero._2 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.hero {
  position: relative;
  overflow: hidden;
}

.section.lottie {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 300vh;
  margin-top: -20rem;
  position: relative;
}

.section.about {
  height: 700px;
  position: relative;
}

.section.contact {
  position: relative;
}

.h-1 {
  color: #fff;
  text-shadow: 0 16px 24px #00000040, 0 24px 40px #00000040, 0 60px 80px #0009;
  margin-bottom: 20px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  position: relative;
}

.hero-description {
  color: var(--dark-orange);
  text-align: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 120%;
  position: relative;
}

.button {
  color: #fff;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  background-image: radial-gradient(circle at 0 0, #ff28c3, #31b5ff);
  border-radius: 10rem;
  justify-content: center;
  align-items: center;
  padding: 2px;
  font-family: Mona Sans Narrow, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  display: flex;
}

.button.shadown {
  background-image: radial-gradient(circle farthest-corner at 0% 0%, #fff200, var(--dark-orange) 33%, var(--dodger-blue) 68%, var(--deep-sky-blue) 101%);
  height: 40px;
  margin-left: 5px;
  padding: 1px;
  position: relative;
  box-shadow: 0 16px 24px -8px #00000080, 0 24px 40px -16px #00000080, 0 60px 80px -40px #000;
}

.button.shadown._3 {
  height: 50px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.button.shadown.call {
  height: 50px;
  margin-bottom: 20px;
}

.button.shadown.call.header {
  height: 40px;
  margin-bottom: 0;
}

.button-inner {
  text-align: center;
  letter-spacing: -.1px;
  text-transform: none;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 110%;
  position: relative;
}

.button-inner._2 {
  font-size: 16px;
}

.button-inner._3 {
  font-size: 28px;
}

.lottie-container {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.dpf-lottie {
  width: 100vw;
  position: relative;
}

.moto {
  border-left: 1px solid #fff;
  margin-bottom: 20px;
  padding-left: 5px;
  position: relative;
}

.moto._01 {
  align-items: flex-start;
  padding-left: 5px;
  display: block;
  left: -10%;
}

.moto._02 {
  left: 10%;
}

.moto._03 {
  left: -18%;
}

.moto._04 {
  left: 20%;
}

.moto._05 {
  margin-bottom: 0;
  left: -10%;
}

.img-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.button-glow {
  z-index: -1;
  background-image: radial-gradient(circle farthest-corner at 0% 0%, #fffb00, var(--dark-orange) 37%, #31b5ff 63%, var(--deep-sky-blue));
  filter: blur(24px);
  color: #fff;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  border-radius: 10rem;
  justify-content: center;
  align-items: center;
  font-family: Mona Sans Narrow, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0%;
}

.navigation-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  inset: 0%;
}

.navigation-container-mob {
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navigation {
  background-color: #0009;
  flex-direction: column;
  align-items: center;
  padding: 20px 3%;
  position: relative;
  left: 0%;
  right: 0%;
}

.nav-menu-2 {
  color: #7b88a8;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  font-size: 15px;
  display: flex;
}

.navigation-wrap {
  z-index: 120;
  width: 100%;
  position: fixed;
}

.navigation-mob {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  display: none;
  position: relative;
  inset: 0% 0% auto;
}

.bevipcar_logo {
  width: 150px;
  display: block;
  position: relative;
}

.brand, .brand.w--current {
  perspective: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 3%;
  display: flex;
}

.logo_02 {
  width: 360px;
  position: relative;
}

.logo_02._2 {
  width: 260px;
  display: block;
}

.text-span {
  color: var(--dodger-blue);
}

.card {
  perspective: 1000px;
  position: relative;
}

.h3 {
  color: var(--deep-sky-blue);
  text-transform: none;
  margin-bottom: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 90%;
  position: relative;
}

.h2 {
  color: var(--dark-orange);
  text-transform: none;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 100%;
  position: relative;
}

.h2.blue {
  color: var(--deep-sky-blue);
}

.body {
  background-color: #000;
}

.hero_bg_wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.bg {
  opacity: .6;
  background-image: url('../images/bg_01.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.bg._2 {
  opacity: .13;
  background-image: url('../images/bg_01.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.hero__gradient {
  opacity: .9;
  background-image: radial-gradient(circle, #fab900, #5c31ff00 69%);
  width: 50vw;
  min-width: 600px;
  height: 50vw;
  min-height: 600px;
  position: absolute;
  top: -50%;
  left: -5%;
}

.hero__gradient.cyan {
  background-image: radial-gradient(circle farthest-side, #40bfef, #5c31ff00 96%);
  top: -50%;
  left: auto;
  right: -5%;
}

.preloader {
  z-index: 9000;
  color: #531431;
  background-color: #02001680;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.preloader__item {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.logo_preloader {
  width: 240px;
}

.preloader__loading {
  border-radius: 2px;
  width: 140px;
  height: 2px;
  margin-top: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.preloader__progressbar {
  background-image: linear-gradient(to right, #000, #ffbf00);
  width: 100%;
  height: auto;
}

.preloader__bg-top {
  z-index: 2;
  background-image: radial-gradient(circle, #0e0e0e, #000);
  position: absolute;
  inset: 0%;
}

.preloader__bg-middle {
  z-index: 1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.preloader__bg-bottom {
  z-index: 0;
  background-color: #38383880;
  position: absolute;
  inset: 0%;
}

.bg-02 {
  background-image: url('../images/bg_03.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.moto-h2 {
  color: var(--dark-orange);
  text-align: left;
  text-transform: none;
  margin-bottom: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
  position: relative;
}

.text-span-12, .text-span-15, .text-span-16, .text-span-17, .text-span-18 {
  color: var(--dodger-blue);
}

.moto-02 {
  color: #fff;
  text-transform: none;
  margin-bottom: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
  position: relative;
}

.moto-02.orange {
  color: var(--dark-orange);
}

.moto-02.blue {
  color: var(--dodger-blue);
  font-weight: 700;
}

.moto-02._3 {
  background-color: var(--dark-orange);
  border-radius: 10px;
  margin-top: 20px;
  padding: 12px;
  display: inline-block;
}

.hero-description-02 {
  color: #fff;
  text-align: left;
  width: 77%;
  margin-bottom: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  position: relative;
}

.flex-2 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.s-1 {
  background-image: linear-gradient(315deg, var(--dark-orange), #ff1f1f);
  height: 100vh;
  position: sticky;
  top: 0;
}

.s-7 {
  z-index: 7;
  background-image: linear-gradient(135deg, var(--dark-orange), #ff1f1f);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.flex-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.flex-3._2 {
  position: relative;
}

.s-4 {
  z-index: 3;
  background-image: linear-gradient(315deg, var(--dodger-blue), #000a76);
  height: 100vh;
  position: sticky;
  top: 0;
}

.logo_03 {
  width: 240px;
  margin-bottom: 40px;
  display: block;
}

.divider {
  background-color: var(--dark-orange);
  width: 200px;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.divider.white {
  background-color: #ffe100;
}

.moto-03 {
  color: #fff;
  text-align: center;
  text-transform: none;
  width: 100%;
  margin-bottom: 30px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 120%;
  position: relative;
}

.text-span-19 {
  color: var(--dark-orange);
  font-weight: 700;
}

.text-span-20 {
  color: var(--dark-orange);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.link {
  cursor: pointer;
}

.link.w--current {
  text-decoration: none;
}

.btn-bg {
  background-color: #000;
  border-radius: 10rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: .5rem 1rem;
  display: flex;
  position: relative;
}

.btn-bg._2, .btn-bg._3 {
  padding: 1rem 2rem;
}

.rl-features_card3-background-wrapper {
  grid-column-gap: .1rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  position: absolute;
  inset: 0% 0% 0% auto;
  transform: skew(-45deg, 35deg);
}

.rl-features_card3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  position: relative;
}

.rl-features_background-overlay {
  background-image: linear-gradient(213deg, var(--dodger-blue), #008fe7 14%, #0073c5e6 34%, #00549f29 56%, #00165300);
  width: 100vw;
  display: block;
  position: absolute;
  inset: 0%;
}

.c-1200 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.rl-features_card3-background {
  z-index: 1;
  align-items: flex-start;
  position: absolute;
  inset: 0%;
}

.s-2 {
  background-image: linear-gradient(270deg, var(--dodger-blue), #001653);
  position: relative;
  overflow: hidden;
}

.rl-features_card3-image2 {
  width: 12.5rem;
  margin-left: -8px;
}

.rl-features_text-wrapper.text-color-white {
  z-index: 3;
  width: 50%;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 40px;
  position: relative;
}

.rl-features_card3-image1 {
  width: 12.5rem;
}

.s-3.features {
  background-color: #000;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.footer-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  height: 120px;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.c-nav-logo-link {
  color: #fff;
  border-bottom-style: none;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  display: flex;
  position: relative;
}

.c-nav-logo-link.w--current {
  width: 220px;
  height: 100%;
  position: relative;
}

.link-wrapper {
  position: relative;
}

.small-footer-title {
  color: #fff;
  margin-bottom: 20px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  position: relative;
}

.link-2 {
  color: #fff;
  cursor: pointer;
  border-bottom-style: none;
  width: 220px;
  margin-bottom: 10px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  display: block;
}

.link-2._2 {
  font-size: 16px;
  font-weight: 700;
}

.footer {
  z-index: 8;
  background-color: var(--black);
  color: #6d7077;
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
}

.footer-col {
  width: 230px;
  position: relative;
}

.bottom-footer-paragraph {
  float: left;
  text-align: center;
  margin-bottom: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 10px;
  position: relative;
}

.c-nav-logo-footer {
  z-index: 5001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.container-2 {
  z-index: 7;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.sep-line {
  background-color: var(--dark-orange);
  width: 1px;
  height: 100%;
  margin-left: 30px;
  margin-right: 30px;
  position: static;
}

.navigation-link {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 110%;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.navigation-link:hover {
  color: var(--dark-orange);
}

.navigation-link.w--current {
  color: var(--dodger-blue);
}

.moto-wp {
  position: relative;
}

.moto-wp._2 {
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.s-1-2 {
  background-image: linear-gradient(315deg, var(--dark-orange), #ff1f1f);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.s2-2 {
  z-index: 3;
  background-image: linear-gradient(315deg, var(--dodger-blue), #000a76);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.bgv-01 {
  opacity: .23;
  width: 100%;
  height: 100%;
}

.bgv-wp {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.bg-01 {
  opacity: .6;
  background-image: url('../images/bg_01.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: absolute;
  inset: 0%;
}

.bg-wp {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.dpf-image {
  z-index: 1;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  inset: auto 0% -8%;
}

.ipm-wp {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  position: relative;
}

.text-block {
  color: #fff;
  text-align: center;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  position: relative;
}

.ip-01 {
  background-color: #2000001c;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33%;
  height: 100px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px;
  display: flex;
  position: relative;
}

.pr-wp {
  width: 100%;
  display: none;
  position: relative;
}

.s-1-3 {
  background-image: linear-gradient(315deg, var(--dark-orange), #ff1f1f);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.pr-wp-m {
  width: 100%;
  display: none;
  position: relative;
}

.ip-02, .ip-03, .ip-m-01, .ip-m-02 {
  background-color: #2000001c;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33%;
  height: 100px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px;
  display: flex;
  position: relative;
}

.service-title {
  color: #fff;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

.service-title._2 {
  font-size: 30px;
  line-height: 100%;
}

.services-grid-block-02 {
  background-color: #17171b;
  border: 2px solid #0000;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 240px;
  padding: 30px 30px 20px;
  text-decoration: none;
  transition: all .25s;
  display: flex;
}

.services-grid {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.icon-block {
  border: 1px solid var(--dark-orange);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 36px;
  display: flex;
}

.bg-03 {
  opacity: .2;
  background-image: url('../images/bg_01.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: absolute;
  inset: 0%;
}

.s-1-4 {
  background-image: linear-gradient(315deg, var(--dark-orange), #ff1f1f);
  padding-top: 100px;
  padding-bottom: 100px;
  position: sticky;
  top: 0;
}

.steps_nr {
  color: var(--dark-orange);
  letter-spacing: -13px;
  margin-right: 20px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 100px;
  font-weight: 300;
  line-height: 40%;
  position: relative;
}

.s-2-4 {
  background-image: linear-gradient(315deg, var(--dodger-blue), var(--navy));
  padding-top: 100px;
  padding-bottom: 100px;
  position: sticky;
  top: 0;
}

.text-span-21 {
  background-color: var(--dark-orange);
  border-radius: 10px;
  padding: 2px 5px;
  font-size: 29px;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.hero-description-03 {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 200%;
  position: relative;
}

.text-span-22 {
  font-size: 24px;
}

.italic-text {
  color: var(--dark-orange);
}

.s-3-4 {
  background-image: linear-gradient(315deg, var(--dark-orange), #ff1f1f);
  padding-top: 100px;
  padding-bottom: 100px;
  position: sticky;
  top: 0;
}

.s-4-4 {
  background-image: linear-gradient(315deg, var(--dodger-blue), var(--navy));
  padding-top: 100px;
  padding-bottom: 100px;
  position: sticky;
  top: 0;
}

.div-block {
  position: relative;
}

.s-5-4 {
  background-color: #000;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.overline {
  color: var(--dark-orange);
  letter-spacing: 1.5px;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  display: inline-block;
}

.feature-image {
  overflow: hidden;
}

.feature-column-content {
  flex-direction: column;
  justify-content: center;
  width: 50%;
  min-height: 250px;
  padding: 50px;
  display: flex;
}

.feature-wrap {
  width: 100%;
  margin-bottom: 55px;
  display: flex;
}

.feature-wrap.reverse-wrap {
  flex-direction: row-reverse;
}

.paragraph {
  color: #fff;
  text-align: left;
  max-width: 680px;
  margin-bottom: 48px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.feature-column-image {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 50%;
  min-height: 250px;
  padding: 50px;
  display: flex;
}

.feature-image-div {
  position: relative;
}

.content-h3 {
  color: var(--dark-orange);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 110%;
  position: relative;
}

.text-span-23 {
  color: #fff;
}

.content-h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.text-span-24 {
  color: var(--dark-orange);
  font-weight: 700;
}

.text-span-25, .text-span-26, .text-span-27, .text-span-28, .text-span-29, .text-span-30, .text-span-31 {
  color: #fff;
}

.text-span-32, .text-span-33 {
  color: var(--dodger-blue);
}

.text-span-34, .text-span-35, .text-span-36 {
  color: #fff;
}

.text-span-37 {
  color: var(--dark-orange);
  font-weight: 700;
}

.text-span-38, .text-span-39, .text-span-40, .text-span-41 {
  color: #fff;
}

.sym_gas_plus {
  max-width: 72%;
  display: block;
}

.r-lottie_logo_bg {
  flex: 1;
  position: fixed;
  inset: 0%;
}

.link-wrapper-2 {
  color: #211f54;
  transition: none;
  display: inline-block;
}

.link-wrapper-2:hover {
  color: #4a3aff;
}

.link-wrapper-2.color-primary {
  color: #4a3aff;
  margin-bottom: 10px;
  display: block;
  position: relative;
}

.link-wrapper-2.color-primary:hover {
  color: #211f54;
}

.btn-primary {
  background-color: var(--dark-orange);
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  border-radius: 48px;
  justify-content: center;
  padding: 26px 38px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
}

.btn-primary:hover {
  color: #fff;
  background-color: #f50;
  transform: translate3d(0, -3px, .01px);
}

.input {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 100px;
  min-height: 70px;
  margin-bottom: 0;
  padding: 16px 24px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 7px #14142b14;
}

.input:hover {
  border-color: var(--dark-orange);
  box-shadow: 0 2px 12px #14142b1a;
}

.input:focus {
  border-color: #ff8400;
}

.input::placeholder {
  color: #3b3b3b;
  font-size: 13px;
}

.cx {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.icon-pagraph-wrapper {
  display: flex;
  position: relative;
}

.error-message {
  color: #ff5a65;
  text-align: center;
  background-color: #ffeff0;
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px 24px;
}

.color-neutral-300 {
  color: #eff0f6;
}

.success-message {
  color: #4a3aff;
  background-color: #f3f2ff;
  border-radius: 24px;
  padding: 28px 28px 32px;
}

.card-2 {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 24px;
  box-shadow: 0 2px 7px #14142b0f;
}

.card-2.form {
  width: 100%;
  margin-bottom: 0;
  padding: 72px 40px;
  position: relative;
}

.link-text {
  color: #fff;
  font-size: 18px;
  transition: color .3s;
  display: inline-block;
}

.grid-2-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.text-area {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 22px;
  min-height: 144px;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 28px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 7px #14142b14;
}

.text-area:hover {
  border-color: #ff8400;
  box-shadow: 0 2px 12px #14142b1a;
}

.text-area:focus {
  color: #211f54;
  border-color: #ff8400;
}

.text-area::placeholder {
  color: #6e7191;
  font-size: 18px;
}

.field-label {
  font-size: 10px;
  font-weight: 400;
}

.line-rounded-icon.link-icon-left {
  color: var(--dark-orange);
  margin-right: 6px;
  display: inline-block;
}

.line-rounded-icon.success-message-check {
  margin-bottom: 6px;
  font-size: 22px;
}

.line-rounded-icon.success-message-check.large {
  margin-bottom: 16px;
  font-size: 80px;
  line-height: 88px;
}

.form-2 {
  color: #000;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 14px;
}

.cc1 {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 49%;
  font-family: Ubuntu, Helvetica, sans-serif;
  display: flex;
  position: relative;
}

.cc1._1 {
  justify-content: flex-start;
  width: 100%;
  position: sticky;
  top: 100px;
}

.paragraph-2 {
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
}

.heading-2 {
  color: var(--dark-orange);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 120%;
}

.text-span-42 {
  color: red;
}

.text-span-43 {
  color: #ff0004;
}

.input-dropdown {
  background-color: #fff;
  background-image: url('../images/arrow.png');
  background-position: 94%;
  background-repeat: no-repeat;
  background-size: 18px 10px;
  border: 1px solid #eff0f6;
  border-radius: 100px;
  min-height: 70px;
  margin-bottom: 0;
  padding: 16px 24px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 7px #14142b14;
}

.input-dropdown:hover {
  border-color: var(--dark-orange);
  box-shadow: 0 2px 12px #14142b1a;
}

.input-dropdown:focus {
  border-color: #ff8400;
}

.input-dropdown::placeholder {
  color: #3b3b3b;
  font-size: 13px;
}

.field-label-1 {
  line-height: 100%;
}

.text-span-44 {
  color: red;
}

.text-block-2 {
  color: #fff;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 100%;
  position: relative;
}

.map {
  border-radius: 24px;
  height: 300px;
}

.text-block-3 {
  color: #000;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 120%;
}

.text-block-4 {
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 16px;
  position: relative;
}

.cc2 {
  justify-content: space-between;
  width: 49%;
  display: flex;
  position: relative;
}

.ccwp {
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
  position: relative;
}

.div-block-7 {
  display: flex;
  position: relative;
}

.ccwp2 {
  width: 49%;
  position: relative;
}

.sm-icon-link {
  color: #000;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.sm-icon {
  object-fit: cover;
  width: 32px;
  height: auto;
}

.div-block-8 {
  width: 50%;
  position: relative;
}

.insta {
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: inline-block;
  position: relative;
}

.insta-wp {
  z-index: 1000;
  background-color: #222c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.text-block-5 {
  color: #fff;
  text-align: center;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 120%;
  position: relative;
}

.qrcode {
  border-radius: 24px;
  width: 400px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.close-btn-modal {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.close-btn-modal.ctabtn {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 40px;
  right: 40px;
}

.xbg {
  background-color: var(--dark-orange);
  border-radius: 100%;
  width: 24px;
  height: 24px;
  position: absolute;
}

.x1 {
  background-color: #fff;
  width: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  inset: 0;
  transform: rotate(45deg);
}

.x2 {
  background-color: #fff;
  width: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  inset: 0;
  transform: rotate(-45deg);
}

.cc-1-1 {
  margin-bottom: 40px;
  position: relative;
}

.map-wp {
  border-radius: 24px;
  height: 100%;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.s-prin {
  background-image: linear-gradient(315deg, var(--dark-orange), var(--red));
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.swiper-wrapper {
  perspective: none;
  justify-content: flex-start;
  width: 100%;
  display: flex;
  overflow: visible;
}

.arrow1-swipe {
  background-color: #fff;
  width: 2px;
  height: 40%;
  position: absolute;
}

.d-81-button-wrapper {
  color: #fff;
  border: 3px #ffffff4d;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: absolute;
  bottom: 10%;
  box-shadow: inset 0 0 0 3px #ffffff4d;
}

.swipe-bg-1 {
  background-image: url('../images/pm_01.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-btn-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.arrow2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: absolute;
  bottom: -24px;
  overflow: hidden;
}

.green-triangle {
  background-color: #fff;
  width: 30px;
  height: 30px;
  position: relative;
  top: -24px;
  transform: rotate(45deg);
}

.swipe-btn {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
}

.swipe-btn.left {
  bottom: auto;
  left: auto;
  right: auto;
  transform: rotate(90deg);
}

.swipe-btn.right {
  width: 90px;
  bottom: auto;
  left: auto;
  right: auto;
  transform: rotate(-90deg);
}

.swiper-container {
  z-index: 4;
  perspective: 1200px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  position: relative;
  overflow: visible;
}

.swiper-slide {
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 500px;
  height: 500px;
  min-height: 50vh;
  padding-bottom: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.swipe-bg-2 {
  background-image: url('../images/pm_02.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-3 {
  background-image: url('../images/pm_03.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-4 {
  background-image: url('../images/pm_04.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-5 {
  background-image: url('../images/pm_05.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-6 {
  background-image: url('../images/pm_06.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-7 {
  background-image: url('../images/pm_07.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-8 {
  background-image: url('../images/pm_08.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-9 {
  background-image: url('../images/pm_09.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-10 {
  background-image: url('../images/pm_10.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-11 {
  background-image: url('../images/pm_11.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-12 {
  background-image: url('../images/pm_12.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-13 {
  background-image: url('../images/pm_13.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-14 {
  background-image: url('../images/pm_14.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-15 {
  background-image: url('../images/pm_15.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-16 {
  background-image: url('../images/pm_16.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-17 {
  background-image: url('../images/pm_17.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-18 {
  background-image: url('../images/pm_18.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.swipe-bg-19 {
  background-image: url('../images/pm_19.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.icon-block-big {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-right: 20px;
  display: flex;
}

.sym_car {
  height: 100px;
  margin-bottom: 10px;
  display: block;
  position: relative;
}

.big-icon-wp {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: flex-start center;
  width: 100%;
  margin-top: 20px;
  display: grid;
  position: relative;
}

.sym_van, .sym_truck, .sym_bus {
  height: 100px;
  margin-bottom: 10px;
  display: block;
  position: relative;
}

.map-html-embed {
  position: absolute;
  inset: 0%;
}

.text-block-6 {
  font-family: Ubuntu, Helvetica, sans-serif;
  line-height: 100%;
}

.sym_horsepower, .sym_maxoil {
  max-width: 62%;
  display: block;
}

.sym_oil {
  max-width: 80%;
  display: block;
}

.sym_rebirth_plus {
  max-width: 92%;
  display: block;
}

.sym_white_smoke {
  max-width: 80%;
  display: block;
}

.sym_gas_min {
  max-width: 72%;
  display: block;
}

.sym_rebirth_min {
  max-width: 92%;
  display: block;
}

.sym_car_oil {
  max-width: 69%;
  display: block;
}

.sym_money {
  max-width: 64%;
  display: block;
}

.sym_guarantee {
  max-width: 58%;
  display: block;
}

.sym_normal_smoke {
  max-width: 80%;
  display: block;
}

.cw-cookie_checkbox {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  display: flex;
}

.cw-button_secondary {
  color: #1e1a35;
  text-align: center;
  background-color: #0000;
  border: 1px solid #1e1a35;
  border-radius: 80px;
  justify-content: center;
  padding: 1rem 1.5rem;
  line-height: 1;
  transition: transform .3s, color .3s, background-color .3s;
}

.cw-button_secondary:hover {
  color: #fff;
  background-color: #a78aff;
  border-color: #a78aff;
  transform: translate(0, -2px);
}

.cw-cookie_options {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2rem;
  display: flex;
}

.cw-cookie_script {
  display: none;
}

.cw-cookie_banner {
  z-index: 9;
  background-color: var(--dark-orange);
  border-radius: 1rem;
  max-width: 440px;
  padding: 2rem;
  display: none;
  position: fixed;
  inset: auto 0% 20px 20px;
}

.cw-cookie_icon {
  z-index: 8;
  background-color: var(--dark-orange);
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 5px;
  display: flex;
  position: fixed;
  inset: auto auto 20px 20px;
}

.cw-cookie_checkbox-check {
  border-radius: 4px;
  width: 20px;
  height: 20px;
  margin-top: 0;
}

.cw-cookie_checkbox-check.w--redirected-checked {
  background-color: #000;
  background-size: 14px 14px;
}

.cw-cookie_selection {
  display: none;
  overflow: hidden;
}

.cw-cookie_buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  margin-top: 2rem;
  display: flex;
}

.cw-button_primary {
  color: #fff;
  text-align: center;
  background-color: #ffd900;
  border-radius: 80px;
  padding: 1rem 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .3s, background-color .3s;
}

.cw-button_primary:hover {
  color: #fff;
  background-color: #ffe868;
  transform: translate(0, -2px);
}

.heading-3 {
  color: #000;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 1.4rem;
}

.text-block-7 {
  color: var(--black);
  font-family: Ubuntu, Helvetica, sans-serif;
}

.paragraph-3 {
  color: var(--black);
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}

.footer-text-block {
  color: #fff;
  border-bottom-style: none;
  width: 220px;
  margin-bottom: 10px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 120%;
  text-decoration: none;
  display: block;
}

.footer-text-block._2 {
  font-size: 16px;
  font-weight: 700;
}

.footer-tel {
  color: #fff;
  cursor: pointer;
  border-bottom-style: none;
  width: 220px;
  margin-bottom: 10px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  display: block;
}

.footer-tel._2 {
  font-size: 16px;
  font-weight: 700;
}

@media screen and (min-width: 1440px) {
  .button.shadown {
    background-image: radial-gradient(circle farthest-corner at 0% 0%, #fff200, var(--dark-orange) 33%, var(--dodger-blue) 68%, var(--deep-sky-blue) 101%);
    margin-left: 14px;
  }

  .button-inner {
    font-size: 13px;
  }

  .logo_02._2 {
    width: 300px;
  }

  .moto-h2, .moto-02 {
    font-size: 32px;
  }

  .logo_03 {
    width: 300px;
  }

  .moto-03 {
    font-size: 32px;
  }

  .navigation-link {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 14px;
  }

  .grid-2-columns.form {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}

@media screen and (max-width: 991px) {
  .section.about {
    height: 600px;
  }

  .h-1 {
    font-size: 32px;
  }

  .hero-description {
    font-size: 22px;
  }

  .button.shadown {
    justify-content: space-between;
    margin-bottom: 15px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .button.shadown.call.header {
    margin-right: 20px;
  }

  .button-inner {
    font-size: 16px;
  }

  .button-inner._2 {
    font-size: 15px;
  }

  .button-inner._3 {
    font-size: 24px;
  }

  .dpf-lottie {
    max-width: none;
  }

  .navigation-container-mob {
    justify-content: flex-end;
  }

  .icon-2 {
    color: #fff;
  }

  .navigation {
    padding-left: 1%;
    display: none;
  }

  .mobile-nav {
    background-color: #000000de;
    flex-direction: column-reverse;
    justify-content: space-between;
    height: 100vh;
    overflow: auto;
  }

  .navigation-mob {
    background-color: #0009;
    border-bottom: 1px solid #4455671c;
    flex-direction: row;
    justify-content: center;
    padding: 10px 3%;
    display: flex;
  }

  .menu-mob {
    border: 2px solid var(--dark-orange);
    color: #000;
    background-color: #fafafa00;
    border-radius: 100px;
    font-size: 22px;
  }

  .menu-mob.w--open {
    background-color: var(--dark-orange);
  }

  .logo_02._2 {
    width: 240px;
  }

  .h3 {
    font-size: 33px;
  }

  .h2 {
    font-size: 80px;
  }

  .hero__gradient {
    width: 70vw;
    height: 70vw;
    left: -20%;
  }

  .hero__gradient.cyan {
    width: 70vw;
    height: 70vw;
    right: -20%;
  }

  .logo_preloader {
    width: 200px;
  }

  .moto-h2 {
    font-size: 22px;
  }

  .moto-02 {
    font-size: 20px;
  }

  .hero-description-02 {
    font-size: 18px;
  }

  .flex-3 {
    max-width: none;
  }

  .logo_03 {
    width: 200px;
  }

  .moto-03 {
    font-size: 30px;
  }

  .text-span-20 {
    font-size: 22px;
  }

  .rl-features_card3-background-wrapper {
    right: -30%;
  }

  .rl-features_background-overlay {
    background-image: linear-gradient(to bottom, var(--dodger-blue), #0081d6eb 24%, #0058a499 53%, #00165300);
    display: block;
    position: absolute;
    inset: 0%;
  }

  .rl-features_text-wrapper.text-color-white {
    width: 100%;
  }

  .mobile-nav-link {
    border-bottom: 1px solid var(--dark-orange);
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    font-family: Ubuntu, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
  }

  .footer-wrapper {
    width: 100%;
    font-size: 14px;
  }

  .footer {
    padding-bottom: 45px;
    padding-left: 45px;
    padding-right: 45px;
    font-size: 12px;
    line-height: 20px;
  }

  .s2-2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .text-block {
    font-size: 17px;
  }

  .ip-01 {
    height: 140px;
  }

  .s-1-3 {
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
  }

  .ip-02, .ip-03, .ip-m-01, .ip-m-02 {
    height: 140px;
  }

  .service-title._2 {
    font-size: 24px;
  }

  .services-grid-block-02 {
    min-height: 200px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .s-1-4 {
    padding-bottom: 50px;
  }

  .s-2-4 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .text-span-21 {
    font-size: 26px;
  }

  .hero-description-03 {
    font-size: 16px;
  }

  .italic-text {
    font-size: 22px;
  }

  .s-3-4 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .div-block-2 {
    justify-content: center;
    align-items: stretch;
    padding-top: 15px;
    padding-bottom: 0;
    display: flex;
    position: relative;
  }

  .feature-column-content {
    padding: 25px;
  }

  .paragraph {
    font-size: 14px;
  }

  .feature-column-image {
    padding: 25px;
  }

  .content-h3 {
    font-size: 24px;
  }

  .content-h2 {
    font-size: 38px;
  }

  .btn-primary {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .input::placeholder {
    font-size: 10px;
  }

  .cx {
    font-size: 16px;
  }

  .card-2.form {
    height: auto;
    padding: 54px 32px;
  }

  .cc1 {
    width: 100%;
    margin-bottom: 40px;
  }

  .cc1._1 {
    position: relative;
    top: auto;
  }

  .heading-2 {
    font-size: 26px;
  }

  .input-dropdown::placeholder {
    font-size: 10px;
  }

  .text-block-2, .text-block-4 {
    font-size: 14px;
  }

  .cc2 {
    width: 100%;
  }

  .ccwp {
    flex-direction: column;
  }

  .ccwp2 {
    width: 100%;
  }

  .sm-icon-link {
    margin-right: 16px;
  }

  .text-block-5 {
    font-size: 18px;
  }

  .qrcode {
    width: 300px;
  }

  .s-prin {
    padding-bottom: 50px;
  }

  .swiper-slide {
    min-width: 400px;
  }

  .sym_car, .sym_van, .sym_truck, .sym_bus {
    height: 80px;
  }

  .cw-cookie_banner {
    max-width: 80%;
  }

  .code-embed {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 3rem;
  }

  .page-padding {
    height: 600px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .container.hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .container.hero._2 {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .section.about {
    height: 300px;
  }

  .h-1 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .hero-description {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .button.shadown {
    margin-bottom: 15px;
  }

  .button-inner, .button-inner._2 {
    font-size: 14px;
  }

  .button-inner._3 {
    font-size: 20px;
  }

  .lottie-container {
    overflow: hidden;
  }

  .moto._01, .moto._02, .moto._03, .moto._04 {
    margin-bottom: 10px;
  }

  .navigation-container-mob {
    justify-content: flex-end;
  }

  .icon-2 {
    color: #fff;
  }

  .navigation {
    display: none;
  }

  .navigation-mob {
    background-color: #0009;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
  }

  .bevipcar_logo {
    width: 130px;
    margin-top: 0;
  }

  .menu-mob {
    border: 2px solid var(--dark-orange);
    background-color: #fafafa00;
  }

  .menu-mob.w--open {
    background-color: var(--dark-orange);
    border-color: #45108a;
  }

  .logo_02 {
    width: 180px;
  }

  .logo_02._2 {
    width: 160px;
  }

  .h3 {
    font-size: 20px;
  }

  .h2 {
    font-size: 50px;
  }

  .hero__gradient {
    top: -45%;
    left: -50%;
  }

  .hero__gradient.cyan {
    top: -45%;
    right: -50%;
  }

  .logo_preloader {
    width: 180px;
  }

  .moto-h2 {
    font-size: 14px;
  }

  .moto-02, .moto-02.orange, .moto-02.blue {
    font-size: 18px;
  }

  .moto-02._3 {
    width: 316px;
  }

  .hero-description-02 {
    width: 100%;
    font-size: 12px;
  }

  .flex-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .s-7 {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flex-3 {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }

  .logo_03 {
    width: 160px;
    margin-bottom: 20px;
  }

  .divider {
    width: 100%;
  }

  .moto-03 {
    font-size: 26px;
  }

  .text-span-20 {
    font-size: 17px;
  }

  .rl-features_card3 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .rl-features_text-wrapper.text-color-white {
    padding-left: 20px;
  }

  .s-3.features {
    min-height: 0;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    width: 90%;
    height: auto;
    margin-bottom: 30px;
  }

  .c-nav-logo-link.w--current {
    width: 160px;
  }

  .link-2 {
    margin-bottom: 5px;
  }

  .link-2._2 {
    line-height: 100%;
  }

  .footer {
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .footer-col {
    width: 100%;
  }

  .bottom-footer-paragraph {
    float: none;
    text-align: left;
    margin-bottom: 7px;
    font-size: 8px;
  }

  .sep-line {
    width: 100%;
    height: 1px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .s-1-2 {
    padding-bottom: 50px;
  }

  .s2-2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .bg-01 {
    background-size: 130%;
  }

  .dpf-image {
    width: 360px;
    bottom: -23%;
  }

  .text-block {
    font-size: 13px;
  }

  .ip-01 {
    height: 110px;
  }

  .s-1-3 {
    padding-bottom: 50px;
  }

  .ip-02, .ip-03, .ip-m-01, .ip-m-02 {
    height: 110px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-title._2 {
    font-size: 18px;
  }

  .services-grid-block-02 {
    min-height: 180px;
  }

  .icon-block {
    margin-bottom: 16px;
  }

  .bg-03 {
    background-size: 130%;
  }

  .s-1-4 {
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .steps_nr {
    font-size: 70px;
  }

  .s-2-4 {
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-span-21 {
    font-size: 24px;
  }

  .hero-description-03 {
    width: 100%;
    font-size: 12px;
  }

  .italic-text {
    font-size: 19px;
  }

  .s-3-4, .s-4-4 {
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .s-5-4 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .feature-column-content {
    width: 100%;
  }

  .feature-wrap {
    flex-wrap: wrap;
  }

  .feature-column-image {
    width: 100%;
  }

  .btn-primary {
    margin-left: auto;
    margin-right: auto;
    padding: 20px 32px;
  }

  .input {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .cx {
    font-size: 14px;
  }

  .card-2.form {
    padding: 56px 32px;
  }

  .link-text {
    font-size: 16px;
  }

  .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .grid-2-columns.form {
    grid-row-gap: 20px;
  }

  .text-area {
    border-radius: 18px;
  }

  .line-rounded-icon.success-message-check.large {
    font-size: 68px;
    line-height: 73px;
  }

  .cc1 {
    margin-bottom: 20px;
  }

  .paragraph-2 {
    font-size: 16px;
  }

  .heading-2 {
    font-size: 20px;
  }

  .input-dropdown {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .text-block-2 {
    font-size: 12px;
  }

  .map {
    height: 200px;
  }

  .text-block-4 {
    font-size: 12px;
  }

  .text-block-5 {
    font-size: 16px;
  }

  .map-wp {
    min-height: 200px;
  }

  .s-prin {
    padding-top: 0;
    padding-bottom: 0;
  }

  .arrow1-swipe {
    height: 50%;
  }

  .swipe-btn-wrapper {
    margin-top: 0;
  }

  .swiper-slide {
    min-width: 300px;
    min-height: 70vh;
    padding-bottom: 20px;
  }

  .icon-block-big {
    min-width: 80px;
  }

  .sym_car, .sym_van, .sym_truck, .sym_bus {
    height: 40px;
  }

  .cw-button_secondary {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cw-cookie_options {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .cw-cookie_banner {
    max-width: 100%;
    padding: 1rem;
    right: 20px;
  }

  .cw-cookie_buttons {
    flex-direction: column;
  }

  .cw-button_primary {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-text-block {
    margin-bottom: 5px;
  }

  .footer-text-block._2 {
    line-height: 100%;
  }

  .footer-tel {
    margin-bottom: 5px;
  }

  .footer-tel._2 {
    line-height: 100%;
  }
}

@media screen and (max-width: 479px) {
  h3 {
    font-size: 2rem;
  }

  .page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container.hero {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .section.about {
    height: 80vh;
    min-height: 600px;
  }

  .h-1 {
    font-size: 20px;
  }

  .button.shadown.call.header {
    margin-right: 5px;
  }

  .moto._01 {
    width: 80%;
    margin-bottom: 30px;
    left: auto;
  }

  .moto._02, .moto._03, .moto._04 {
    margin-bottom: 30px;
    left: auto;
  }

  .moto._05 {
    left: auto;
  }

  .bevipcar_logo {
    width: 120px;
  }

  .menu-mob {
    margin-left: 5px;
  }

  .h3 {
    font-size: 14px;
  }

  .h2 {
    font-size: 34px;
  }

  .hero__gradient {
    width: 50vw;
    min-width: 400px;
    height: 50vw;
    min-height: 400px;
    top: -13%;
    left: -60%;
  }

  .hero__gradient.cyan {
    width: 50vw;
    height: 50vw;
    top: -13%;
    right: -60%;
  }

  .moto-02.orange {
    font-size: 16px;
  }

  .moto-02._3 {
    width: 80%;
  }

  .flex-2, .flex-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .moto-03 {
    font-size: 22px;
  }

  .rl-features_card3-background-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    bottom: -65%;
    right: -15%;
  }

  .rl-features_card3-image2 {
    width: 8rem;
    margin-left: -4px;
  }

  .rl-features_card3-image1 {
    width: 8rem;
  }

  .small-footer-title {
    font-size: 14px;
  }

  .bg-01 {
    background-size: 880px;
  }

  .dpf-image {
    width: 260px;
    bottom: -5%;
  }

  .pr-wp {
    display: none;
  }

  .ip-m-01 {
    width: 50%;
    margin-left: 0;
  }

  .ip-m-02 {
    width: 50%;
    margin-right: 0;
  }

  .service-title {
    flex: 1;
    font-size: 16px;
  }

  .service-title._2 {
    font-size: 17px;
  }

  .services-grid-block-02 {
    flex-direction: row;
    align-items: center;
    min-height: 160px;
    padding: 0 20px;
  }

  .services-grid {
    grid-row-gap: 19px;
    grid-template-columns: 1fr;
  }

  .icon-block {
    margin-bottom: 0;
    margin-right: 20px;
  }

  .bg-03 {
    background-size: 880px;
  }

  .text-span-21 {
    font-size: 20px;
  }

  .italic-text {
    font-size: 17px;
  }

  .overline {
    font-size: 12px;
  }

  .feature-column-content {
    padding: 10px;
  }

  .feature-column-image {
    margin-top: 25px;
    padding: 10px;
  }

  .content-h3 {
    font-size: 20px;
  }

  .btn-primary {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .input {
    font-size: 16px;
    line-height: 18px;
  }

  .input::placeholder {
    line-height: 16px;
  }

  .card-2.form {
    padding-left: 23px;
    padding-right: 23px;
  }

  .link-text {
    font-size: 14px;
  }

  .line-rounded-icon.success-message-check.large {
    font-size: 58px;
    line-height: 64px;
  }

  .paragraph-2 {
    font-size: 14px;
  }

  .input-dropdown {
    font-size: 12px;
    line-height: 18px;
  }

  .input-dropdown::placeholder {
    line-height: 16px;
  }

  .field-label-1 {
    font-size: 14px;
  }

  .swiper-slide {
    min-width: 80%;
    min-height: 50vh;
    padding-bottom: 40px;
  }

  .icon-block-big {
    width: 100px;
    height: 100px;
  }

  .sym_car {
    height: 60px;
  }

  .big-icon-wp {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .sym_van, .sym_truck, .sym_bus {
    height: 60px;
  }

  .cw-button_secondary {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 19px;
  }

  .cw-cookie_options {
    flex-wrap: wrap;
  }

  .cw-cookie_banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .cw-button_primary {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 19px;
  }
}

#w-node-_4ff6a70c-95bc-459e-8eba-20b95604f6b8-7f8aeb98, #w-node-_4ff6a70c-95bc-459e-8eba-20b95604f6c5-7f8aeb98 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4958a731-a24b-c42e-3c1f-f0861d50ec0d-7f8aeb98 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_4ff6a70c-95bc-459e-8eba-20b95604f6cb-7f8aeb98 {
  justify-self: start;
}

#w-node-_4ff6a70c-95bc-459e-8eba-20b95604f6b8-cdc464ed, #w-node-dbb37bd9-38a4-6817-e042-730f3e045142-cdc464ed, #w-node-_678acfc0-3369-6093-c3cd-1a0906438670-cdc464ed, #w-node-c8c83f1b-611d-4638-cc64-6312a2d071be-cdc464ed, #w-node-_281a8d1d-a4d5-6e34-30db-8450b5e3f285-cdc464ed, #w-node-_2084cdd9-2d5a-eaf2-6d49-4201b34555ac-cdc464ed, #w-node-_4699dfbf-01d1-17a1-428d-c41a66f718da-cdc464ed, #w-node-aec9130f-20a8-c3f7-de07-4252dd0af91e-cdc464ed, #w-node-eea4b241-af93-75ac-72d3-321f23280d5a-cdc464ed, #w-node-_3d5aa7a4-4bcd-64d2-9646-83c5c6bac21d-cdc464ed, #w-node-_4c20fa1b-9dab-3a5c-65e7-8150b2358717-cdc464ed, #w-node-_7b4468a0-4b47-42e6-a7e1-37fdb0fdff83-cdc464ed, #w-node-b2d1aaf7-70ef-cc53-450c-4a5a9cae3ab5-cdc464ed, #w-node-ae472e73-5dbc-b1f7-9954-29cba6fa1e12-cdc464ed, #w-node-_4ff6a70c-95bc-459e-8eba-20b95604f6c5-cdc464ed {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4ff6a70c-95bc-459e-8eba-20b95604f6cb-cdc464ed {
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_4958a731-a24b-c42e-3c1f-f0861d50ec0d-7f8aeb98 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4ff6a70c-95bc-459e-8eba-20b95604f6cb-cdc464ed {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_4ff6a70c-95bc-459e-8eba-20b95604f6c5-7f8aeb98 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4ff6a70c-95bc-459e-8eba-20b95604f6c5-cdc464ed {
    grid-column: span 2 / span 2;
  }

  #w-node-_4ff6a70c-95bc-459e-8eba-20b95604f6cb-cdc464ed {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Mona Sans';
  src: url('../fonts/Mona-Sans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mona Sans';
  src: url('../fonts/Mona-Sans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mona Sans Narrow';
  src: url('../fonts/Mona-Sans-BlackNarrow.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}