html, body {
	overflow-x: hidden;
}

:root {
  --main-dark-text: #243235;
  --light-red: #d52072;
  --pink-accent: #9800cc;
  --white: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  background-color: #ececec;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--main-dark-text);
  margin-top: 20px;
  margin-bottom: 30px;
  font-family: Hemi Head Bd It, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
}

.card-heading{
  color: var(--main-dark-text);
  margin-top: 20px;
  margin-bottom: 30px;
  font-family: Hemi Head Bd It, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
}

h2 {
  color: var(--light-red);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Barlow, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 32px;
}

p {
  margin-bottom: 15px;
  font-family: Barlow, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 32px;
}

ul {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 30px;
  font-family: Barlow, sans-serif;
}

li {
  font-family: Barlow, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 32px;
}

.pink-heading {
  color: var(--pink-accent);
}

.pink-heading.center-align {
  line-height: 44px;
}

.white-heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 5px;
}

.white-heading.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.center-align {
  text-align: center;
  margin-bottom: 20px;
}

.center-align.min-height-90 {
  min-height: 90px;
}

.navbar {
  border-bottom: 11px solid var(--main-dark-text);
  background-color: rgba(36, 50, 53, .8);
  height: 145px;
  font-family: Hemi Head Bd It, sans-serif;
  font-size: 25px;
}

.hero-section-home {
  height: 839px;
  position: relative;
}

.container {
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
}

.container.nav-bar {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.container.hero-home {
  z-index: 1;
  margin-bottom: 40px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.container.text-img-wrapper {
  margin-top: 45px;
  margin-bottom: 45px;
}

.container.extra-margin-bot {
  margin-bottom: 100px;
}

.container.extra-margins {
  margin-top: 120px;
  margin-bottom: 120px;
}

.nav-menu {
  grid-column-gap: 35px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  flex: 1;
  justify-content: space-around;
  margin-top: auto;
  margin-bottom: 35px;
  margin-left: 150px;
  display: flex;
}

.nav-link {
  color: var(--white);
  padding: 0;
  line-height: 30px;
}

.nav-link:hover {
  color: #eea5ff;
}

.nav-link.w--current {
  color: #9c9c9c;
}

.nav-link.w--current:hover {
  color: #eea5ff;
}

.button {
  border: 1px solid var(--main-dark-text);
  background-color: var(--white);
  color: var(--main-dark-text);
  text-align: center;
  border-radius: 5px;
  padding: 17px 15px;
  font-family: Hemi Head Bd It, sans-serif;
  font-size: 30px;
}

.button.nav-bar {
  z-index: 3;
  margin-right: 15px;
  text-decoration: none;
  position: absolute;
  top: auto;
  bottom: -45px;
  left: auto;
  right: 0%;
  overflow: hidden;
}

.button.card {
  z-index: 1;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  margin-top: 50px;
  font-family: Barlow, sans-serif;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero-heading {
  color: var(--white);
  text-shadow: 3px 3px 1px var(--main-dark-text);
  font-size: 60px;
  line-height: 80px;
}

.pink-divider {
  opacity: .63;
  background-color: #9800cc;
  height: 25px;
  position: absolute;
  top: auto;
  bottom: -13px;
  left: 0%;
  right: 0%;
}

.pink-divider.car {
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.dealer-autorizat {
  background-color: rgba(36, 50, 53, .61);
  position: relative;
}

.dealer-autorizat.car {
  padding-top: 10px;
}

.brand-section {
  background-color: var(--white);
}

.brand-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
}

.small-brand-img {
  aspect-ratio: 103 / 85;
  object-fit: contain;
  width: 103px;
}

.margin-bot {
  margin-top: 45px;
}

.home-presentation-section {
  padding-top: 45px;
  padding-bottom: 80px;
  position: relative;
}

.image {
  z-index: -1;
  min-width: 1280px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
}

.grid {
  grid-column-gap: 21px;
  grid-row-gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 80px;
}

.car-card-wrapper {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.car-img-card {
  aspect-ratio: 401 / 273;
  object-fit: cover;
  flex: none;
  width: 100%;
  max-height: 273px;
}

.car-details-wrapper {
  background-color: var(--white);
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  padding: 25px 20px 18px;
  display: flex;
}

.car-name {
  margin-top: 0;
}

.car-name.pink-heading {
  min-height: 85px;
}

.logos-title-large {
  border-bottom: 1px solid #e4ebf3;
  padding: 60px 30px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.clients-title {
  text-align: center;
  font-size: 24px;
  line-height: 32px;
}

.clients-wrapper {
  justify-content: space-between;
  align-items: center;
  max-width: 750px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.car-details-title {
  color: var(--main-dark-text);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Hemi Head Bd It, sans-serif;
  font-size: 30px;
  line-height: 32px;
}

.car-details {
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: space-around;
  align-items: stretch;
  display: flex;
}

.light-car-detail {
  margin-bottom: 0;
}

.grid-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  margin-bottom: 80px;
}

.column-wrapper {
  width: 100%;
  height: 100%;
}

.heading {
  margin-bottom: 30px;
}

.link-block {
  z-index: 3;
  border: 1px solid var(--pink-accent);
  background-color: var(--white);
  border-radius: 5px;
  flex-flow: row;
  padding: 5px 15px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta-btn-text {
  color: var(--main-dark-text);
  font-family: Hemi Head Bd It, sans-serif;
  font-size: 40px;
  line-height: 50px;
}

.center-cta-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 100px;
}

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

.flex-block {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  justify-content: space-around;
  align-items: stretch;
  margin-bottom: 100px;
}

.benefits-card {
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  max-width: 385px;
  display: flex;
}

.benefits-img {
  aspect-ratio: 1;
  object-fit: scale-down;
  width: 292px;
  margin-bottom: 40px;
}

.img-cta {
  aspect-ratio: 1;
  object-fit: contain;
  width: 40px;
  margin-right: 15px;
}

.section {
  position: relative;
}

.image-2 {
  z-index: -1;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-3 {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.section-2 {
  position: relative;
}

.image-4 {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.site-footer {
  background-color: var(--main-dark-text);
  color: #fff;
  position: relative;
}

.pink-footer-divider {
  background-color: var(--pink-accent);
  opacity: .59;
  height: 26px;
  position: absolute;
  top: -11px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.footer-logo {
  margin-bottom: 30px;
}

.grid-4 {
  grid-template-rows: auto;
}

.quick-stack {
  grid-column-gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0;
}

.cell {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
}

.link {
  color: var(--white);
  flex: none;
  font-family: Barlow, sans-serif;
  font-size: 30px;
  line-height: 35px;
  text-decoration: none;
}

.link.lh {
  padding: 0;
}

.link.lh:hover {
  color: #eea5ff;
}

.flex-block-2 {
  grid-column-gap: 25px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

.text-block {
  color: var(--white);
  margin-bottom: 20px;
  font-family: Barlow, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}

.icon-contact-details {
  aspect-ratio: 1;
  object-fit: scale-down;
  flex: none;
  width: 24px;
  margin-top: 2px;
}

.footer-detail {
  color: var(--white);
  font-family: Barlow, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 30px;
  text-decoration: none;
}

.footer-detail.socials {
  margin-top: 30px;
}

.footer-detail.copyright {
  text-align: left;
  width: 100%;
}

.footer-detail.link:hover {
  color: #eea5ff;
}

.img-legal {
  width: 201px;
  height: 50px;
}

.legal-img-wrapper {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-details-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  margin-bottom: 5px;
  text-decoration: none;
  display: flex;
}

.contact-details-wrapper.address {
  margin-bottom: 30px;
}

.flex-block-3 {
  grid-column-gap: 25px;
  grid-row-gap: 5px;
  flex-flow: wrap;
  padding-bottom: 5px;
}

.car-hero-section {
  z-index: 0;
  background-color: var(--white);
  position: relative;
}

.car-logo {
  aspect-ratio: 1;
  object-fit: scale-down;
  flex: none;
  width: 190px;
}

.hero-car {
  grid-column-gap: 180px;
  grid-row-gap: 180px;
  justify-content: flex-start;
  align-items: center;
}

.car-name-heading {
  color: var(--pink-accent);
  margin-top: 10px;
  font-size: 50px;
}

.car-presentation {
  background-image: linear-gradient(131deg, rgba(114, 125, 116, .2), rgba(114, 125, 116, .2) 39%, rgba(202, 204, 191, .2) 52%, rgba(114, 125, 116, .2) 59%, rgba(114, 125, 116, .2));
  padding: 18px;
}

.car-presentation.extra-margin-bot {
  margin-bottom: 50px;
}

.main-car-image {
  float: left;
  width: 50%;
  max-width: 603px;
  max-height: 421px;
  margin-right: 18px;
}

.paragraph {
  margin-bottom: 1px;
}

.no-margin-bot {
  margin-bottom: 0;
}

.no-margin-bot.medium {
  font-weight: 500;
}

.no-margin-bot.no-margin-top {
  margin-top: 0;
}

.img-feature {
  float: right;
  width: 50%;
  max-width: 618px;
  max-height: 295px;
  margin-left: 20px;
}

.heading-2 {
  line-height: 32px;
}

.presentation-section {
  background-image: url('../images/mask-group-1_1.webp');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
}

.tab-pane {
  background-color: var(--white);
  padding: 30px 20px 10px;
}

.tab-link-tab-1 {
  background-color: #c9d4d4;
}

.tab-link-tab-1.w--current {
  background-color: var(--white);
}

.tab-link-tab-2 {
  background-color: #c9d4d4;
}

.tab-link-tab-2.w--current {
  background-color: #fff;
}

.heading-3 {
  padding-top: 30px;
  padding-bottom: 20px;
  padding-right: 20px;
}

.tab-pane-tab-2 {
  background-color: var(--white);
}

.grid-5 {
  grid-column-gap: 5%;
  grid-row-gap: 5%;
  grid-template-rows: auto;
}

.tabs {
  margin-bottom: 60px;
}

.tab-title {
  font-family: Barlow, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
}

.small-paragraph {
  margin-bottom: 60px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.specificatii-section {
  background-image: url('../images/group-874.webp');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.specificatii-section.spacing {
  background-position: 50% 100%;
  background-size: auto;
  padding-top: 50px;
}

.features-table {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table {
  flex-direction: column;
  margin-top: 50px;
  display: flex;
}

.comparison-row-main {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
}

.comparison-title {
  margin-bottom: 0;
  margin-left: 24px;
}

.comparison-row {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid #e4ebf3;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
}

.comparison-negative {
  background-image: url('../images/.');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-left: 24px;
  padding-left: 40px;
}

.comparison-positive {
  background-image: url('../images/.');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-left: 24px;
  padding-left: 40px;
}

.grid-6 {
  grid-column-gap: 5%;
  grid-row-gap: 30px;
  grid-template-rows: auto;
}

.tb-row-2col {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
}

.blue-tp-border {
  border-top: 1px solid #78b1be;
}

.blue-bt-border {
  border-bottom: 1px solid #78b1be;
}

.light-barlow-text {
  font-weight: 300;
}

.car-img-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 40px;
  margin-bottom: 80px;
}

.car-photo {
  width: 380px;
}

.ul-li-car-presentation {
  font-weight: 400;
}

.hero-other-pages {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 603px;
  position: relative;
}

.hero-other-pages.despre-noi {
  background-image: url('../images/mask-groups-1_1.webp');
}

.hero-other-pages.service {
  background-image: url('../images/mask-group-1_2.webp');
}

.hero-other-pages.blog {
  background-image: url('../images/mask-group-1ss_1.webp');
}

.grid-7 {
  grid-column-gap: 5%;
  grid-row-gap: 5%;
  grid-template-rows: auto;
  margin-top: 80px;
  margin-bottom: 100px;
}

.section-3 {
  position: relative;
  overflow: hidden;
}

.grid-8 {
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}

.form-field {
  color: #657e9c;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  border-bottom: 1px solid #657e9c;
  margin-bottom: 0;
  padding-left: 0;
  font-family: Barlow, sans-serif;
  font-size: 25px;
  line-height: 30px;
}

.form-field::placeholder {
  color: #657e9c;
}

.form-field.mesaj {
  min-height: 140px;
}

.submit-button {
  z-index: 3;
  float: right;
  border: 1px solid var(--main-dark-text);
  background-color: var(--white);
  color: var(--main-dark-text);
  border-radius: 5px;
  font-family: Hemi Head Bd It, sans-serif;
  font-size: 25px;
  line-height: 35px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.submit-button.form-2 {
  margin-top: 50px;
}

.image-5 {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
}

.image-6, .image-7 {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.form-block {
  margin-top: 50px;
}

.flex-block-4 {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  flex-flow: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

.ce-oferim {
  flex: 1;
  min-width: 50%;
}

.grid-9 {
  grid-column-gap: 5%;
  grid-row-gap: 5%;
  grid-template-rows: auto;
  margin-bottom: 40px;
}

.text-span {
  color: var(--pink-accent);
}

.form-block-2 {
  margin-top: 80px;
}

.icon {
  display: none;
}

.dropdown-list {
  top: 32px;
}

.dropdown-list.w--open {
  border-top: 3px solid var(--main-dark-text);
  border-bottom: 9px solid var(--main-dark-text);
  background-color: #fff;
  width: 400px;
  top: auto;
  bottom: auto;
  left: 0%;
  right: auto;
}

.dropdown-list.footer {
  top: auto;
  bottom: 120%;
}

.dropdown-link {
  border-top: 1px solid rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 15px;
  padding-right: 5px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.dropdown-link:hover {
  border-top-color: var(--pink-accent);
  border-bottom-color: var(--pink-accent);
}

.link-dropdown {
  color: var(--main-dark-text);
}

.brand-ico {
  aspect-ratio: 1;
  object-fit: scale-down;
  width: 44px;
}

.car-ico {
  aspect-ratio: 1;
  object-fit: scale-down;
  width: 80px;
  margin-right: 10px;
}

.extra-padding-bot {
  padding-bottom: 100px;
  position: relative;
}

.link-block-2 {
  overflow: hidden;
}

.trapezoid-slider {
  z-index: -1;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%);
  background-color: #f1def8;
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
  overflow: visible;
  transform: translate(-100%);
}

.text-block-2 {
  position: relative;
}

.background-btn {
  z-index: -2;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-3 {
  float: right;
  display: inline-block;
}

.submit-button-2 {
  color: var(--main-dark-text);
  background-color: rgba(0, 0, 0, 0);
}

.background-video {
  z-index: -1;
  object-fit: cover;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.margin-top {
  margin-top: 50px;
}

.list {
  margin-bottom: 20px;
  list-style-type: lower-roman;
}

.dropdown {
  margin-left: 0;
  margin-right: 0;
}

.text-span-2 {
  font-weight: 600;
}

.background-blur {
  display: none;
}

.image-8 {
  z-index: -1;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.center-cta-wrapper.space-between {
  flex-flow: wrap;
  justify-content: space-around;
  grid-column-gap: 35px;
  grid-row-gap: 10px;
}


@media screen and (max-width: 991px) {
  .center-align.min-height-90 {
    margin-bottom: 0;
  }

  .hero-section-home {
    height: 550px;
  }

  .container.hero-home {
    margin-bottom: 40px;
  }

  .nav-menu {
    z-index: 2000;
    flex: none;
    width: 60%;
    margin-left: 40px;
  }

  .button.card {
    overflow: hidden;
  }

  .brand-wrapper {
    grid-column-gap: 40px;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .container-2 {
    max-width: 728px;
  }

  .clients-title {
    margin-bottom: 32px;
  }

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

  .center-cta-wrapper, .flex-block {
    margin-bottom: 60px;
  }

  .benefits-img {
    margin-bottom: 10px;
  }

  .cell {
    justify-content: space-between;
    align-items: flex-start;
  }

  .flex-block-2 {
    flex-flow: column;
    justify-content: space-around;
    align-items: flex-start;
  }

  .footer-detail.copyright {
    text-align: left;
  }

  .hero-car {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .main-car-image {
    margin-bottom: 10px;
  }

  .no-margin-bot.no-margin-top {
    clear: left;
  }

  .container-3 {
    max-width: 728px;
  }

  .hero-other-pages.despre-noi, .hero-other-pages.service, .hero-other-pages.blog {
    height: 500px;
  }

  .div-block {
    border: 1px solid #000;
    border-radius: 20px;
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
  }

  .div-block-2 {
    z-index: -1;
    background-color: var(--pink-accent);
    width: 250px;
    position: absolute;
  }

  .dropdown {
    margin-left: 0;
    margin-right: 0;
  }

  .dropdown-2 {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 35px;
    line-height: 40px;
  }

  h2 {
    margin-bottom: 15px;
    font-size: 27px;
    line-height: 30px;
  }

  p {
    font-size: 22px;
    line-height: 25px;
  }

  ul {
    margin-bottom: 0;
  }

  li {
    font-size: 22px;
    line-height: 25px;
  }

  .pink-heading.center-align {
    margin-bottom: 15px;
  }

  .center-align.min-height-90 {
    min-height: 65px;
    margin-bottom: 0;
  }

  .hero-section-home {
    height: 480px;
  }

  .container.hero-home {
    margin-bottom: 10px;
  }

  .container.extra-margins {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .nav-menu {
    z-index: 1;
    background-color: rgba(36, 50, 53, .8);
    flex-flow: column;
    justify-content: space-around;
    align-items: flex-start;
    min-height: 100vh;
    margin-left: 0;
    padding: 40px 15px;
    display: block;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0;
    right: auto;
  }

  .nav-link {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .button.nav-bar {
    z-index: 0;
  }

  .hero-heading {
    font-size: 45px;
    line-height: 60px;
  }

  .pink-divider {
    height: 18px;
    bottom: -9px;
  }

  .brand-wrapper {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .small-brand-img {
    width: 90px;
  }

  .home-presentation-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .grid {
    grid-row-gap: 35px;
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-bottom: 30px;
  }

  .car-name.pink-heading {
    min-height: 40px;
  }

  .logos-title-large {
    padding: 60px 15px;
  }

  .clients-wrapper {
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: -20px;
  }

  .clients-image {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .grid-2 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-bottom: 30px;
  }

  .cta-btn-text {
    font-size: 30px;
    line-height: 35px;
  }

  .center-cta-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .flex-block {
    grid-row-gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .benefits-img {
    width: 250px;
    margin-bottom: 0;
  }

  .img-cta {
    width: 25px;
  }

  .link {
    font-size: 28px;
    line-height: 32px;
  }

  .link.lh {
    padding: 0;
  }

  .text-block {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 27px;
  }

  .footer-detail {
    font-size: 22px;
    line-height: 27px;
  }

  .footer-detail.socials {
    margin-top: 15px;
  }

  .legal-img-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .contact-details-wrapper.address {
    margin-bottom: 15px;
  }

  .car-hero-section {
    background-size: auto;
  }

  .car-logo {
    width: 140px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .hero-car {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
  }

  .car-name-heading {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .car-presentation.extra-margin-bot {
    margin-bottom: 30px;
  }

  .main-car-image, .img-feature {
    float: none;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .tab-link-tab-1.w--current {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-5 {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .tab-title {
    font-size: 22px;
    line-height: 25px;
  }

  .small-paragraph {
    font-size: 18px;
  }

  .features-table {
    padding: 60px 15px;
  }

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

  .hero-other-pages.despre-noi, .hero-other-pages.service, .hero-other-pages.blog {
    height: 450px;
  }

  .grid-7 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .form-field {
    font-size: 22px;
    line-height: 25px;
  }

  .form-field.mesaj {
    min-height: 100px;
  }

  .grid-9 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: center;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .form-block-2 {
    margin-top: 40px;
  }

  .dropdown-list.w--open {
    width: 100%;
    position: relative;
  }

  .dropdown-list.footer.w--open {
    position: absolute;
  }

  .link-dropdown {
    font-size: 20px;
  }

  .extra-padding-bot {
    padding-bottom: 60px;
  }

  .icon-2 {
    color: var(--pink-accent);
    font-size: 40px;
  }

  .text-block-3 {
    font-size: 25px;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .list-2 {
    margin-bottom: 0;
  }

  .tabs-menu {
    display: flex;
  }

  .heading-5 {
    font-size: 28px;
  }

  .div-block-4 {
    height: 100%;
  }

  .grid-10 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .background-blur {
    z-index: 0;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    overflow: hidden;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    margin-top: 30px;
    font-size: 30px;
    line-height: 32px;
  }

  h2 {
    margin-top: 20px;
    font-size: 23px;
    line-height: 25px;
  }

  p {
    font-size: 18px;
    line-height: 22px;
  }

  ul {
    padding-left: 20px;
  }

  li {
    font-size: 18px;
    line-height: 22px;
  }

  .pink-heading.center-align {
    line-height: 32px;
  }

  .white-heading {
    padding-top: 5px;
  }

  .navbar {
    height: 120px;
  }

  .container.text-img-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .container.extra-margins {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .nav-menu {
    min-width: 280px;
  }

  .button.nav-bar {
    padding-top: 10px;
    padding-bottom: 10px;
    display: none;
  }

  .button.card {
    margin-top: 20px;
  }

  .hero-heading {
    line-height: 50px;
  }

  .pink-divider {
    height: 15px;
    bottom: -7px;
  }

  .pink-divider.car {
    height: 15px;
  }

  .brand-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .home-presentation-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .grid {
    margin-bottom: 30px;
  }

  .car-details-wrapper {
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .car-name.pink-heading {
    margin-bottom: 15px;
    font-size: 25px;
    line-height: 30px;
  }

  .container-2 {
    max-width: none;
  }

  .clients-image {
    margin-left: 10px;
    margin-right: 10px;
  }

  .car-details-title {
    font-size: 20px;
    line-height: 22px;
  }

  .grid-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 20px;
  }

  .cta-btn-text {
    font-size: 22px;
    line-height: 30px;
  }

  .center-cta-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .benefits-card {
    flex: 0 auto;
  }

  .img-cta {
    width: 20px;
  }

  .link {
    font-size: 25px;
    line-height: 25px;
  }

  .link.lh {
    padding: 0;
  }

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

  .icon-contact-details {
    width: 20px;
  }

  .footer-detail {
    font-size: 20px;
  }

  .legal-img-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-car {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .car-name-heading {
    margin-bottom: 10px;
  }

  .car-presentation.extra-margin-bot {
    margin-bottom: 20px;
  }

  .no-margin-bot {
    margin-top: 10px;
  }

  .tab-link-tab-1 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tab-link-tab-1.w--current {
    order: 1;
  }

  .tab-link-tab-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tab-title {
    font-size: 18px;
    line-height: 22px;
  }

  .small-paragraph {
    font-size: 16px;
    line-height: 20px;
  }

  .specificatii-section.spacing {
    padding-top: 30px;
  }

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

  .centered-heading {
    margin-bottom: 24px;
  }

  .comparison-row-main {
    grid-column-gap: 20px;
  }

  .comparison-title {
    margin-left: 10px;
  }

  .comparison-row {
    grid-column-gap: 20px;
  }

  .comparison-negative {
    background-position: 0 5px;
    background-size: 14px;
    margin-left: 10px;
    padding-left: 20px;
  }

  .comparison-positive {
    background-position: 0 4px;
    background-size: 16px;
    margin-left: 10px;
    padding-left: 20px;
  }

  .car-img-wrapper {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .hero-other-pages.despre-noi, .hero-other-pages.service, .hero-other-pages.blog {
    height: 350px;
  }

  .grid-7 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-columns: 1fr;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .grid-8 {
    margin-bottom: 30px;
  }

  .form-field {
    font-size: 18px;
    line-height: 22px;
  }

  .submit-button.form-2 {
    margin-top: 20px;
  }

  .form-block {
    margin-top: 30px;
  }

  .grid-9 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 20px;
  }

  .form-block-2 {
    margin-top: 20px;
  }

  .dropdown-list.footer.w--open {
    width: 300px;
  }

  .dropdown-link {
    height: 45px;
  }

  .link-dropdown.link {
    font-size: 20px;
  }

  .brand-ico {
    width: 30px;
    margin-right: 10px;
  }

  .car-ico {
    width: 60px;
    display: none;
  }

  .extra-padding-bot {
    padding-bottom: 40px;
  }

  .text-block-2 {
    font-size: 20px;
    line-height: 22px;
  }

  .submit-button-2 {
    white-space: pre-wrap;
    font-size: 18px;
    line-height: 22px;
  }

  .list {
    padding-left: 20px;
  }

  .text-block-3 {
    font-size: 22px;
    line-height: 25px;
  }

  .heading-4 {
    margin-bottom: 20px;
  }

  .menu-button {
    margin-left: 20px;
    padding-right: 0;
  }

  .tabs-menu-2 {
    flex-flow: column;
    display: flex;
  }

  .tabs-menu-3, .tabs-menu-4 {
    display: flex;
  }

  .tabs-menu-5 {
    flex-flow: column;
    display: flex;
  }
}

#w-node-_8c86a177-ffa4-bd20-f43a-a1b0d9ec6a8d-d9ec6a8a {
  grid-template-rows: auto;
  grid-template-columns: minmax(370px, 370px) 1fr;
}

#w-node-ed10852a-25eb-6ef2-3833-ea6cad6e454c-7c1de45b, #w-node-_7aa2ed83-6140-26eb-e74a-61b060d37f28-7c1de45b, #w-node-_13a66f45-4cc5-e43b-3fef-1daf160aac1e-7c1de45b, #w-node-_0af47a86-3557-87c5-db0d-64f846dc1a2d-7c1de45b, #w-node-_9009ca4f-79e4-67a7-d099-37af967414e8-7c1de45b, #w-node-_26bf1e83-c928-da41-36ee-1aca776462e7-7c1de45b, #w-node-_0538a7f3-a788-e266-a472-74fffc23125e-7c1de45b, #w-node-_0538a7f3-a788-e266-a472-74fffc231260-7c1de45b, #w-node-_08350f70-4751-4384-02ba-d1cfe5d926bd-7c1de45b, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06230-8b686782, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06255-8b686782, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0625a-8b686782, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0625f-8b686782, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06264-8b686782, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06269-8b686782, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0626e-8b686782, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06270-8b686782, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06273-8b686782, #w-node-cf07a332-0d42-a0d8-9364-1d6fe7428860-79c78c2e, #w-node-cf07a332-0d42-a0d8-9364-1d6fe7428876-79c78c2e, #w-node-cf07a332-0d42-a0d8-9364-1d6fe742887b-79c78c2e, #w-node-cf07a332-0d42-a0d8-9364-1d6fe7428880-79c78c2e, #w-node-cf07a332-0d42-a0d8-9364-1d6fe7428885-79c78c2e, #w-node-cf07a332-0d42-a0d8-9364-1d6fe742888a-79c78c2e, #w-node-_8be85ff8-cbd5-7290-b671-fbadee4cb3f4-6427e0ac, #w-node-_8be85ff8-cbd5-7290-b671-fbadee4cb3f6-6427e0ac, #w-node-_576f151f-6c48-09aa-ca26-f9734ff0bf1a-6427e0ac, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06230-c8b43cea, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06255-c8b43cea, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0625a-c8b43cea, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0625f-c8b43cea, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06264-c8b43cea, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06269-c8b43cea, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0626b-c8b43cea, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0626e-c8b43cea, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06270-c8b43cea, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06273-c8b43cea, #w-node-cec9d835-05cd-bc4c-41e9-6852e65cd1de-c8b43cea, #w-node-cec9d835-05cd-bc4c-41e9-6852e65cd1e3-c8b43cea, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06230-79e8a021, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06255-79e8a021, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0625a-79e8a021, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0625f-79e8a021, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06264-79e8a021, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06269-79e8a021, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0626e-79e8a021, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06270-79e8a021, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06273-79e8a021, #w-node-_7f1e9630-bb10-e055-380e-02bab1fab6e6-79e8a021, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06230-8aef7a92, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06255-8aef7a92, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0625a-8aef7a92, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0625f-8aef7a92, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06264-8aef7a92, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06266-8aef7a92, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06269-8aef7a92, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce0626e-8aef7a92, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06270-8aef7a92, #w-node-_23236365-9a9a-f5d2-4bc7-20a97ce06273-8aef7a92, #w-node-_0ff5c853-7c13-6e03-371f-41eceeb4d23f-8aef7a92, #w-node-_0ff5c853-7c13-6e03-371f-41eceeb4d242-8aef7a92, #w-node-_0ff5c853-7c13-6e03-371f-41eceeb4d244-8aef7a92, #w-node-_0ff5c853-7c13-6e03-371f-41eceeb4d247-8aef7a92, #w-node-_0ff5c853-7c13-6e03-371f-41eceeb4d249-8aef7a92, #w-node-_0ff5c853-7c13-6e03-371f-41eceeb4d24c-8aef7a92, #w-node-_0ff5c853-7c13-6e03-371f-41eceeb4d251-8aef7a92, #w-node-_0ff5c853-7c13-6e03-371f-41eceeb4d256-8aef7a92, #w-node-_552c09b0-99ca-5cbe-7f28-c006410a0964-8aef7a92, #w-node-_552c09b0-99ca-5cbe-7f28-c006410a0969-8aef7a92, #w-node-_552c09b0-99ca-5cbe-7f28-c006410a096e-8aef7a92, #w-node-_3c3cff70-6048-7718-13fe-786ea8c7c359-8aef7a92, #w-node-efcf1046-6273-e925-6ccd-d07e6d064780-1589456a, #prenume.w-node-_630f774a-3fb0-cf2e-e416-578d7ef758c5-1589456a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_8c86a177-ffa4-bd20-f43a-a1b0d9ec6a8d-d9ec6a8a {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-extralight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-extralightitalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-bolditalic.ttf') format('truetype'), url('../fonts/barlow-extrabolditalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-extrabold.ttf') format('truetype'), url('../fonts/barlow-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-blackitalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-lightitalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-semibolditalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-thinitalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-mediumitalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hemi Head Bd It';
  src: url('../fonts/hemi-head-bd-it.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}