@font-face {
  font-family: next-pro;
  src: url(../fonts/nextpro/DINNextLTPro-Light.woff2);
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: next-pro;
  src: url(../fonts/nextpro/DINNextLTPro-Regular.woff2);
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: next-pro;
  src: url(../fonts/nextpro/DINNextLTPro-Medium.woff2);
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: next-pro;
  src: url(../fonts/nextpro/DINNextLTPro-Bold.woff2);
  font-weight: 700;
  font-display: swap;
}
:root {
  --very-light: #f8f9f9;
  --white: #fff;
  --light-grey: #d8d8d8;
  --vibrant-red: #df000f;
  --black: #000;
  --very-grey: #eaeaea;
  --dark: #262a3d;
  --deep-blue: #1b1e2c;
  --horizon: #f0f8f8;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  scroll-behavior: smooth;

  -webkit-tap-highlight-color: transparent;

  scroll-margin-top: 95px;
}

a,
a:hover {
  text-decoration: none;
}

img,
picture,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

::selection {
  background-color: var(--vibrant-red);
  color: var(--white);
}

html {
  font-family: "next-pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.site-content {
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1580px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.upper {
  text-transform: uppercase;
}

.relative {
  position: relative;
}

strong,
.bold {
  font-weight: 700;
}

.semi-bold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.right-text {
  text-align: right;
}

.center-text {
  text-align: center;
}

.white {
  color: var(--white);
}
.black {
  color: var(--black);
}
.red {
  color: var(--vibrant-red);
}
.white-bg {
  background-color: var(--white);
}

.black-bg {
  background-color: var(--black);
}
.set-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.very-light-bg {
  background-color: var(--very-light);
}
.horizon-bg {
  background-color: var(--horizon);
}
.p-60 {
  font-size: 60px;
  line-height: 1.3;
}
.hero-home {
  width: 100%;
  padding-top: 180px;
  height: 650px;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.hero-home::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--dark);
}
.hero-home.anim::before {
  left: 0;
  animation: hero-home 700ms linear forwards;
}
@keyframes hero-home {
  0% {
    left: 0;
    width: 0;
  }
  50%,
  60% {
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
.hero-home.anim-reverse::before {
  right: 0;
  animation: hero-home-reverse 700ms ease-in-out;
}
@keyframes hero-home-reverse {
  0% {
    right: 0;
    width: 0;
  }
  50%,
  60% {
    width: 100%;
  }
  100% {
    right: auto;
    left: 0;
    width: 0;
  }
}

.hero-home-0 {
  background-image: url(/wp-content/uploads/2024/02/bg.webp);
}
.hero-home-1 {
  background-image: url(/wp-content/uploads/2024/02/bg-1.webp);
}
.hero-home-2 {
  background-image: url(/wp-content/uploads/2024/02/bg-1-1.webp);
}
.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 15px;
  z-index: 9999;
  background: transparent;
  transition: all 400ms ease;
}
.site-header.p-t-0, .site-header.p-t-0.active{
  padding-top: 0;
}
.site-header.active {
  padding-top: 15px;
  background: var(--dark);
}
.main-nav-wrapper {
  justify-content: space-between;
  gap: 30px;
}
.main-nav {
  list-style-type: none;
  column-gap: 45px;
}
.main-nav li,
.main-nav li a {
  font-weight: 500;
  color: var(--white);
}
.main-nav li a {
  position: relative;
}
.main-nav li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: all 300ms ease;
}
.main-nav li a:hover::before {
  left: 0;
  width: 100%;
}
.header-info,
.main-nav-wrapper .side,
.main-nav,
.main-nav-wrapper,
.subhero-flex-min {
  display: flex;
  align-items: center;
}
.header-info {
  gap: 20px;
}
.main-nav-wrapper .side {
  column-gap: 45px;
}
.scale-anim,
.opacity-anim {
  opacity: 0;
  display: inline-block;
}
.scale-anim {
  transform: scale(0);
  animation: scale-anim 200ms ease-in-out forwards;
  animation-delay: var(--delay);
}
.gama.active {
  display: inline-block;
  animation: scale-anim 500ms ease-in-out forwards;
}
@keyframes scale-anim {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  10% {
    opacity: 1;
    transform: scale(0.6);
  }
  30% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.opacity-anim {
  animation: opacity-anim 200ms ease-in-out forwards;
  animation-delay: var(--delay);
  transform: translateX(20px);
}
@keyframes opacity-anim {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  70%,
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.cars-slides {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -90px;
  z-index: 3;
}
.cars-slide {
  width: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: translateX(-1000%);
  opacity: 0;
}
.intro-slide {
  animation: intro-slide 700ms ease forwards;
  animation-delay: var(--delay);
}
.cars-slide.come {
  animation: intro-slide 700ms ease forwards;
}
.cars-slide.leave-reverse {
  animation: leave-reverse 1.2s ease forwards;
}
.cars-slide.leave {
  animation: leave-car 1.2s ease forwards;
}
.cars-slide.come-reverse {
  animation: come-reverse 700ms ease forwards;
}
@keyframes intro-slide {
  0% {
    transform: translateX(-1000%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes leave-car {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(1000%);
  }
}
@keyframes leave-reverse {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-1000%);
  }
}
@keyframes come-reverse {
  0% {
    transform: translateX(1000%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-36,
.hero-txt {
  font-size: 36px;
  line-height: 1.22;
}
.p-18 {
  font-size: 18px;
  line-height: 1.3;
}
.flex-link {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.subhero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.main-link {
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 100px;
  width: fit-content;
  padding-bottom: 7px;
  gap: 15px;
  position: relative;
  transition: all 300ms ease-in-out;
}
.main-link::before,
.main-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
}
.main-link.black::before {
  width: 100%;
  background-color: var(--very-grey);
}
.main-link.red::before {
  width: 100%;
  background-color: var(--vibrant-red);
}
.main-link.white::before {
  width: 100%;
  background-color: var(--white);
}
.main-link.black::after {
  width: 0;
  background-color: var(--vibrant-red);
  transition: all 300ms ease-in-out;
}
.main-link.red::after {
  width: 0;
  background-color: var(--white);
  transition: all 300ms ease-in-out;
}
.main-link.white::after {
  width: 0;
  background-color: var(--vibrant-red);
  transition: all 300ms ease-in-out;
}
.main-link.red.dark-hover::after {
  background-color: var(--dark);
}
.main-link.black:hover,
.main-link.white:hover {
  color: var(--vibrant-red);
}
.main-link.red:hover {
  color: var(--white);
}
.main-link.red.dark-hover:hover {
  color: var(--dark);
}
.main-link.black:hover svg path,
.main-link.red svg path,
.main-link.white:hover svg path {
  fill: var(--vibrant-red);
}
.main-link.red:hover svg path {
  fill: var(--white);
}

.main-link.red.dark-hover:hover svg path {
  fill: var(--dark);
}
.main-link:hover::after {
  width: 100%;
}
.main-link svg {
  min-width: 10px;
}
.main-link svg path {
  transition: all 300ms ease-in-out;
}
.subhero-flex-min {
  column-gap: 50px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-75 {
  margin-top: 75px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-140 {
  margin-bottom: 140px;
}
.tiny-car {
  position: relative;
  user-select: none;
  cursor: pointer;
}
.tiny-car img {
  position: relative;
  z-index: 2;
}
.tiny-car::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 49px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI0OSIgdmlld0JveD0iMCAwIDgwIDQ5Ij48cGF0aCBkPSJNNzguOTgzLDQ5SDEuMDE3QTQwLjIyMyw0MC4yMjMsMCwwLDEsMCw0MCw0MC4wMTEsNDAuMDExLDAsMCwxLDc2Ljg1NywyNC40MywzOS43NDgsMzkuNzQ4LDAsMCwxLDgwLDQwYTQwLjIyMiw0MC4yMjIsMCwwLDEtMS4wMTYsOVoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMCkiIGZpbGw9IiNkYWRhZGEiLz48L3N2Zz4=);
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.tiny-car.active::before {
  opacity: 1;
}
.translated-anim {
  opacity: 0;
  transform: translateY(20px);
  animation: translated-anim 200ms ease-in-out forwards;
  animation-delay: var(--delay);
}
@keyframes translated-anim {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.mt-40 {
  margin-top: 40px;
}
.subhero-flex-min-end {
  display: flex;
  align-items: flex-end;
  column-gap: 50px;
}
.mt-55 {
  margin-top: 55px;
}
.inline {
  display: inline;
}
.p-30 {
  font-size: 30px;
  line-height: 1.33;
}
.info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.red {
  color: var(--vibrant-red);
}
.p-60 {
  font-size: 60px;
  line-height: 1.2;
}
.p-16 {
  font-size: 16px;
  line-height: 1.5;
}
.info-flex {
  display: flex;
  column-gap: 25px;
}
.info-flex-item {
  padding-top: 20px;
  position: relative;
  font-size: 20px;
}
.info-flex-item::before,
.info-flex-item::after {
  content: "";
  position: absolute;
  left: 0;
}
.info-flex-item::before {
  width: 100px;
  height: 1px;
  top: 0;
  background-color: var(--very-grey);
}
.info-flex-item[data-aos="line-animation"]::after {
  width: 0;
  height: 3px;
  top: -1px;
  background-color: var(--vibrant-red);
  transition: width 300ms linear;
}
.info-flex-item[data-aos="line-animation"].aos-animate::after {
  width: 75px;
}
.gradient-section {
  margin-top: 150px;
  background: rgb(255, 255, 255);
  padding-bottom: 75px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 55%,
    rgba(240, 248, 248, 1) 55%
  );
}
.horizon-g-bg {
  background: var(--horizon);
  background: linear-gradient(180deg, var(--horizon) 85%, var(--white) 85%);
}
.ml-auto {
  margin-left: auto;
}
.specialist {
  background-image: url(/wp-content/uploads/2024/02/Bitmap.webp);
  aspect-ratio: 79 / 35;
  padding: 90px;
  display: flex;
  align-items: flex-end;
}
.dark-bg {
  background-color: var(--dark);
}
.semi-white {
  color: rgba(255, 255, 255, 0.5);
}
.mt-30 {
  margin-top: 30px;
}
.mt-20 {
  margin-top: 20px;
}
.site-footer {
  padding-top: 80px;
  padding-bottom: 25px;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-menus {
  display: flex;
  column-gap: 150px;
}
.footer-menu-grid {
  display: flex;
  column-gap: 120px;
}
.footer-menu {
  list-style-type: none;
}
.footer-menu li,
.footer-menu li a {
  font-size: 18px;
  color: var(--white);
}
.footer-menu li {
  padding: 12px 0;
}
.p-14 {
  font-size: 14px;
  line-height: 1.35;
}
.mt-10 {
  margin-top: 10px;
}
.block {
  display: block;
}
.footer-info {
  padding-bottom: 16px;
}
.footer-info {
  margin-top: 24px;
}
.footer-info.mt-50 {
  margin-top: 50px;
}
.footer-info:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mt-80 {
  margin-top: 80px;
}
.mt-25 {
  margin-top: 25px;
}
.footer-social {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.footer-copy {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy > p {
  flex: 1;
}
.footer-copy > p:last-child {
  text-align: right;
}
.footer-copy > p:nth-child(2) {
  text-align: center;
}
.copy-line {
  margin-left: 8px;
  margin-right: 8px;
}
.pg-bg {
  background-image: url(/wp-content/uploads/2024/02/Bitmap-7.webp);
}
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.mt-70 {
  margin-top: 70px;
}
.mb-70 {
  margin-bottom: 70px;
}
.services-home-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 80px;
}
.services-hidden-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms ease;
}
.services-hidden-content > div {
  overflow: hidden;
}
.services-list-title {
  font-size: 16px;
  font-weight: 400;
  transition: font-size 500ms ease;
}
.services-list-item {
  padding: 10px 0;
  cursor: pointer;
}
.services-list-item:not(:last-child) {
  border-bottom: 1px solid rgba(234, 234, 234, 0.15);
}
.services-list-item.active {
  margin-top: 30px;
  margin-bottom: 60px;
  border-bottom: 1px solid transparent;
}
.services-list-item.active .services-hidden-content {
  grid-template-rows: 1fr;
}
.services-list-item.active .services-list-title {
  font-size: 24px;
  margin-bottom: 15px;
}
.services-grid-six {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.services-grid-six-item {
  position: relative;
  cursor: pointer;
  padding-left: 10px;
  padding-right: 10px;
}
.services-grid-six-item::after,
.services-grid-six-item::before,
.services-grid-six::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
}
.services-grid-six-item::before {
  left: 0;
  width: 100%;
  opacity: 0.75;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(25, 155, 224, 0.2) 20%,
    rgba(25, 155, 224, 0.34) 39%,
    rgba(0, 0, 0, 0) 100%
  );
}
.services-grid-six-item::after {
  right: 0;
}
.services-grid-six-item::after,
.services-grid-six::before {
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(255, 255, 255, 0.5) 20%,
    rgba(0, 0, 0, 0) 100%
  );
}
.services-grid-six::before {
  left: 0;
}
.services-grid-six-item.active .services-svg,
.services-grid-six-item.active .services-grid-absolute {
  opacity: 1;
}
.services-svg {
  opacity: 0;
  margin: 25px auto 0;
  width: fit-content;
  transition: all 300ms ease;
}
.services-svg svg {
  min-width: 10px;
}
.z-index-3 {
  position: relative;
  z-index: 3;
}
.services-grid-six-item:hover .services-grid-absolute {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(25, 155, 224, 0.3) 20%,
    rgba(25, 155, 224, 0.34) 39%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 1;
}
.services-grid-six-item.active:hover .services-grid-absolute {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(25, 155, 224, 0.5) 20%,
    rgba(25, 155, 224, 0.84) 39%,
    rgba(0, 0, 0, 0) 100%
  );
}
.services-grid-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(25, 155, 224, 0.5) 20%,
    rgba(25, 155, 224, 0.84) 39%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 500ms ease;
}
.services-car {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  z-index: 5;
}
.services-car img {
  width: 100%;
}
.pt-100 {
  padding-top: 100px;
}
.reverse-gradient-section {
  background: rgb(240, 248, 248);
  background: linear-gradient(
    180deg,
    rgba(240, 248, 248, 1) 47%,
    rgba(255, 255, 255, 1) 47%
  );
}
.calitate {
  padding: 80px 90px;
  aspect-ratio: 158 / 65;
  background-image: url(/wp-content/uploads/2024/02/Bitmap-2-1.webp);
}
.brand-slider .swiper-wrapper .swiper-slide {
  border: 1px solid var(--very-grey);
  border-radius: 2px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-slider {
  margin-top: -50px;
}
.product-slider-image {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--very-grey);
  border-radius: 2px;
}
.product-slider-btns {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 50px;
}
.product-slider-btn,
.testimonials-btn {
  cursor: pointer;
  opacity: 1;
}
.product-slider-btn.swiper-button-disabled,
.testimonials-btn.swiper-button-disabled {
  opacity: 0.3;
  transition: opacity 300ms ease;
  cursor: default;
}
.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.w-full {
  width: 100%;
}
.story-grid {
  display: flex;
  align-items: center;
  column-gap: 100px;
  justify-content: space-between;
  padding-right: 180px;
}
.max-500 {
  width: 100%;
  max-width: 500px;
}
.info-flex-between {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-right: 180px;
}
.show-800 {
  display: none;
}
.mt-100 {
  margin-top: 100px;
}
.flex-btns {
  display: flex;
  align-items: center;
  column-gap: 50px;
}
.testimonials-gradient {
  padding-top: 80px;
  padding-bottom: 165px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 33%,
    rgba(248, 249, 249, 1) 33%
  );
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.space-p p:not(:last-child) {
  margin-bottom: 25px;
}
.p-24 {
  font-size: 24px;
  line-height: 1.33;
}
.testimonials-slider .swiper-wrapper .swiper-slide {
  padding-right: 100px;
}
.overflow-hidden {
  overflow: hidden;
}
.between-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials-controls {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 40px;
  background-color: var(--very-light);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 67%;
}
.testimonial-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  gap: 5px;
}
.testimonials-wrapper {
  height: 67%;
  padding-top: 30px;
}
.contact-gradient {
  padding-top: 75px;
  padding-bottom: 75px;
  background: rgb(248, 249, 249);
  background: linear-gradient(
    180deg,
    rgba(248, 249, 249, 1) 30%,
    rgba(255, 255, 255, 1) 30%
  );
}
.contact-home-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 25px;
  padding: 60px 20px 30px;
  align-items: center;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gs-hero {
  display: grid;
  grid-template-columns: 1fr;
  height: 100svh;
}
.gs-hero-left,
.gs-hero-mid,
.gs-hero-right {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.gs-hero-left {
  background-image: url(/wp-content/uploads/2024/03/range-rover.webp);
}
.gs-hero-mid {
  background-image: url(/wp-content/uploads/2024/03/land-rover.webp);
}
.gs-hero-right {
  background-image: url(/wp-content/uploads/2024/03/jaguar.webp);
}
.gs-hero-data {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  text-transform: uppercase;
}
.gs-hero-service {
  font-weight: 300;
  font-size: 20px;
}
.gs-hero-car {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}
.gs-hero-link {
  color: white;
}
.gs-hero-link svg {
  fill: white;
}
.gs-contact-wrapper {
  background-color: var(--very-light);
}
.gs-contact {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
.gs-contact > * {
  flex: 1 1 50%;
}
.gs-contact img {
  width: 100%;
  height: auto;
}

.gs-contact-phone {
  display: flex;
  gap: 0.5rem;
  fill: var(--vibrant-red);
}
.gs-contact-discover {
  color: var(--vibrant-red);
  fill: var(--vibrant-red);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--vibrant-red);
  font-size: 16px;
}

.gs-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.blog-grid article a img {
  width: 100%;
}
.gs-service {
  background-color: var(--black);
  position: relative;
}
.gs-service-img {
  width: 100%;
  opacity: 1;
  transition: opacity 0.5s;
}
.gs-service:hover .gs-service-img {
  opacity: 0.5;
}
.gs-service-title {
  position: absolute;
  left: 50px;
  bottom: 50px;
  transition: bottom 0.3s;
}
.gs-service:hover .gs-service-title {
  bottom: 100px;
}
.gs-contact-link {
  position: absolute;
  bottom: 50px;
  left: 50px;
  opacity: 0;
  transition: opacity 0.2s;
}
.gs-service:hover .gs-contact-link {
  opacity: 1;
  fill: white;
}
.gs-warranty {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.gs-warranty-reverse {
  display: grid;
  gap: 2rem;
  grid-template-columns: 3fr 2fr;
}
.gs-study {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.gs-study-box {
  color: var(--black);
}
.gs-study-info-half {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.gs-study-info-half > * {
  border-top: 1px solid var(--very-grey);
}
.gs-study-info-full:not(:first-child) {
  border-top: 1px solid var(--very-grey);
}
.gs-parts-img {
  padding-top: 60px;
  margin-bottom: 30px;
}
.gs-parts-content {
  display: grid;
  gap: 30px;
  align-items: center;
  padding-bottom: 80px;
}

.gs-location-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	background-color:#262a3d;
	padding:0;
}

.gs-location-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 1em;
}

.gs-location-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.gs-location-item svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--red, #c0392b);
}

.gs-location-map {
	align-self: stretch;
}

.gs-location-map iframe {
	border-radius: 0;
	width: 100%;
	height: 100%;
	min-height: 450px;
}
.inner-inverse-color {
	color: rgba(255, 255, 255, 0.85);
	padding:30px;
}
.inner-inverse-color .p-30.light {
	color: #fff;
}

.gs-directions-btn,
.gs-directions-btn:hover {
	color: #fff;
}

.gs-directions-btn svg path {
	fill: #fff;
}

.gs-directions-btn::after {
	background-color: #fff;
}

.gs-location-grid .main-link::after,
.gs-location-grid .main-link::before {
	content: unset;
}

.main-link.gs-directions-btn.upper.mt-40.bold {
	background-color: #df000f;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	letter-spacing: 2px;
}

@media (max-width: 900px) {
	.gs-location-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

.footer-newsletter {
  background-image: url(/wp-content/uploads/2024/03/newsletter-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.newsletter-placeholder {
  max-width: 500px;
  width: 100%;
  padding: 8px 0;
  background-color: transparent;
  color: var(--white);
}
.newsletter-placeholder,
.newsletter-placeholder:focus,
.newsletter-placeholder:focus-visible {
  border: none;
  border-bottom: 1px solid var(--light-grey);
  outline: 0;
}
.mc4wp-response {
  margin-top: 15px;
  color: var(--white);
}
.srr-hero {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.srr-hero-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.srr-study {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.srr-gradient {
  padding-top: 75px;
  padding-bottom: 75px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(252, 254, 254, 1) 30%,
    rgba(241, 248, 248, 1) 30%,
    rgba(240, 248, 248, 1) 100%
  );
}
.srr-swiper-tabs {
  display: none;
}
.srr-swiper-container {
  display: none;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.swiper-slide.srr-swiper-slide,
.swiper-slide.slr-swiper-slide {
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.srr-swiper-tabs-list {
  display: flex;
  list-style: none;
  justify-content: flex-start;
  gap: 30px;
}
.srr-tab {
  cursor: pointer;
  padding-top: 16px;
  border-top: 1px solid var(--light-grey);
  max-width: 200px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 300ms ease;
  font-size: 16px;
}
.srr-tab h3 {
  font-size: 16px;
}
.srr-tab.active {
  color: var(--vibrant-red);
  border-top: 1px solid var(--vibrant-red);
}
.srr-slide-content {
  position: absolute;
  bottom: 50px;
  left: 60px;
  display: flex;
  gap: 50px;
  right: 170px;
}
.srr-slider-text {
  max-width: 800px;
}
.srr-contact-banner {
  background-image: url(/wp-content/uploads/2024/03/slr-contact-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 370px 460px 50px 60px;
}
.srr-contact-banner-wrapper {
  display: grid;
  gap: 1rem;
}
.slr-contact-wrapper {
  background: var(--deep-blue);
}
.srr-swiper-container .slr-swiper-slide {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.srr-swiper-container .slr-swiper-slide-reverse {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.srr-swiper-container .slr-swiper-slide-reverse .slr-slide-content {
  padding: 40px 60px 40px 0;
}
.slr-slide-content {
  padding: 80px;
}
.slr-slide-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* accordion test */
.srr-accordion input[type="checkbox"],
.srr-accordion input[type="radio"] {
  display: none;
}
.srr-accordion .srr-accordion-label {
  display: block;
  cursor: pointer;
  padding: 16px 0;
  border-top: 1px solid var(--light-grey);
  text-transform: uppercase;
  font-weight: 700;
}
.srr-accordion input[type="checkbox"]:checked + .srr-accordion-label,
.srr-accordion input[type="radio"]:checked + .srr-accordion-label {
  color: var(--vibrant-red);
  border-top: 1px solid var(--vibrant-red);
}
.srr-accordion .srr-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s linear;
}
.srr-accordion
  input[type="checkbox"]:checked
  + .srr-accordion-label
  + .srr-accordion-content,
.srr-accordion
  input[type="radio"]:checked
  + .srr-accordion-label
  + .srr-accordion-content {
  max-height: 1000px;
}
.slr-tab-image {
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.srrs-swiper-nav {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.srrs-swiper-button-prev,
.srrs-swiper-button-next {
  width: 50px;
  height: 50px;
  border: 2px solid var(--black);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.srrs-swiper-button-prev {
  transform: rotate(-180deg);
}
.srrs-swiper-pagination,
.blog-pagination {
  text-align: center;
}
.srrs-swiper-pagination .swiper-pagination-bullet-active,
.blog-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
  outline: 2px solid var(--vibrant-red);
}
.srrs-swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal,
.blog-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto;
}
.srj-slider-wrapper {
  display: flex;
}
.srj-swiper-tabs-list {
  display: grid;
  list-style: none;
  gap: 30px;
}
.srr-swiper-container .slj-swiper-slide {
  display: grid;
  grid-template-columns: 2fr 4fr;
}
.slj-slide-content {
  padding: 0 80px;
}
.srj-swiper-tabs {
  display: none;
  min-width: 200px;
}
.contact-wrapper {
  background-color: var(--dark);
  padding-left: 30px;
  padding-right: 30px;
}
.contact-wrapper::before {
  background-color: var(--dark);
}
.contact-container {
  width: 100%;
  max-width: 1750px;
  position: absolute;
  bottom: 0px;
}
.mxl-auto {
  margin-left: auto;
}
.contact-3col {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-wrapper .contact-3col select option {
  color: var(--black);
}
.contact-wrapper .contact-3col select,
.contact-wrapper .contact-3col input {
  width: 100%;
  height: 43px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--very-grey);
  color: white;
}
.contact-wrapper textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--very-grey);
  color: white;
  resize: vertical;
}
.contact-wrapper .contact-3col select:focus,
.contact-wrapper .contact-3col input:focus,
.contact-wrapper textarea:focus {
  outline: none;
}
.contact-gradient-1 {
  background: rgb(240, 248, 248);
  background: linear-gradient(
    0deg,
    rgba(240, 248, 248, 1) 0%,
    rgba(240, 248, 248, 1) 60%,
    rgba(255, 255, 255, 1) 60%,
    rgba(255, 255, 255, 1) 100%
  );
}
.contact-gradient-2 {
  background: rgb(240, 248, 248);
  background: linear-gradient(
    180deg,
    rgba(240, 248, 248, 1) 0%,
    rgba(240, 248, 248, 1) 80%,
    rgba(255, 255, 255, 1) 80%,
    rgba(255, 255, 255, 1) 100%
  );
}
.contact-map {
  width: 100%;
  height: 550px;
}
.contact-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cnt-heading {
  color: var(--black);
  opacity: 0.5;
}
.site-header .menu-burger {
  display: none;
}
.header-icon {
  stroke: white;
}
.blg-title {
  position: absolute;
  bottom: 160px;
}
.minus-blog {
  margin-top: -140px;
}
.srr-hero-article-title {
  position: absolute;
  bottom: 75px;
  max-width: 680px;
}
.article-container {
  max-width: 1000px;
}
.art-wrapper {
  display: grid;
  gap: 20px;
}
.similar-articles {
  margin-top: 75px;
  margin-bottom: 85px;
}
.info-flex-item .p-60 {
  text-wrap: nowrap;
}
.slider-pagination {
  display: flex;
  align-items: center;
  margin-top: 30px;
  justify-content: center;
}
.brand-pagination {
  display: none;
}
.slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--very-grey);
  border: 2px solid var(--white);
  opacity: 1;
  transition: all 200ms ease;
}
.slider-pagination .swiper-pagination-bullet-active {
  border: 2px solid var(--vibrant-red);
  background: transparent;
}
.show-900,
.show-600 {
  display: none;
}
.pb-100 {
  padding-bottom: 100px;
}
.gs-study-box > img {
  width: 100%;
}
.garantie-grid {
  display: grid;
  grid-template-columns: 1fr 5fr;
  column-gap: 150px;
}
.garantie-tab-panel {
  grid-column: 2;
  display: none;
}
.garantie-tab-panel.active {
  display: block;
}
.tab-btn {
  cursor: pointer;
  padding-top: 16px;
  border-top: 1px solid var(--light-grey);
  max-width: 200px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 300ms ease;
}
.tab-btn.active {
  color: var(--vibrant-red);
  border-top: 1px solid var(--vibrant-red);
}
.show-700 {
  display: none;
}
.about-swiper {
  width: 100%;
  max-height: calc(100vh - 120px);
  aspect-ratio: 16 / 9;
}
.about-swiper .swiper-slide {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: auto;
}
.about-swiper-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--black);
  border-radius: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
.about-swiper-btn::after {
  content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMy42NTciIGhlaWdodD0iMTMuMzE1IiB2aWV3Qm94PSIwIDAgMTMuNjU3IDEzLjMxNSI+PHBhdGggZD0iTS02LjI5MywxMy4wMjFhMSwxLDAsMCwwLDAtMS40MTVsLTMuOTUtMy45NDlILTFhMSwxLDAsMCwwLDEtMSwxLDEsMCwwLDAtMS0xaC05LjI0MmwzLjk0OS0zLjk0OWExLDEsMCwwLDAsMC0xLjQxNSwxLDEsMCwwLDAtMS40MTQsMEwtMTMuMzY0LDUuOTVhMSwxLDAsMCwwLDAsMS40MTRsNS42NTcsNS42NTdBMSwxLDAsMCwwLTcsMTMuMzE0LDEsMSwwLDAsMC02LjI5MywxMy4wMjFaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMy42NTcgMCkiIGZpbGw9IiNmZmYiLz48L3N2Zz4=);
  width: 14px;
  height: 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-swiper-btn.about-swiper-next::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.about-swiper-btn.about-swiper-next {
  right: -25px;
}
.about-swiper-btn.about-swiper-prev {
  left: -25px;
}
.about-swiper-btn.swiper-button-disabled {
  opacity: 0.6;
}
.about-swiper-btn.swiper-button-disabled::after {
  opacity: 0.6;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.about-grid-item {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.about-two-col-grid {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 30px;
}
.srr-swiper-tabs-list.flex-between {
  justify-content: space-between;
}
.srr-swiper-tabs-list.flex-between .srr-tab {
  max-width: none;
}
.contact-hero {
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: 120px;
  aspect-ratio: 96 / 35;
  background-image: url(/wp-content/uploads/2024/04/bg1-2.webp);
}
.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.mb-12 {
  margin-bottom: 12px;
}
.shadow-white {
  text-shadow: 1px 1px 2px #fff;
}
.article-container > * {
  margin-bottom: 20px;
}
.article-container h2 {
  font-size: 30px;
}
.article-container h3 {
  font-size: 26px;
}
.article-container h4 {
  font-size: 22px;
}
.article-container ol,
.article-container ul {
  padding-left: 20px;
}
.article-container ol li,
.article-container ul li {
  padding-bottom: 8px;
}
.container-1100 {
  width: 100%;
  max-width: 1100px;
  padding-left: 20px;
  padding-right: 20px;
}
.conditii-content a {
  color: var(--vibrant-red);
}
.conditii-content > * {
  margin-bottom: 20px;
}
.conditii-content ol,
.conditii-content ul {
  padding-left: 20px;
}
.btn-reset,
.btn-reset:focus,
.btn-reset:active,
.btn-reset:hover,
.btn-reset:focus-visible,
.btn-reset:focus-within {
  background: none;
  border: none;
  outline: 0;
}
.blog-grid article > a:first-child {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.blog-grid article > a:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-ab-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.gs-ab-img .gs-service-img {
  height: 100%;
  object-fit: cover;
}
.gs-parts-list {
  padding-left: 40px;
}
.gs-parts-list li {
  padding-bottom: 15px;
}
.gs-parts-content.align-start {
  align-items: flex-start;
}
.main-nav > li {
  position: relative;
}
.main-nav > li:hover .submenu,
.submenu:hover {
  display: block;
}
.submenu {
  display: none;
  position: absolute;
  list-style-type: none;
  min-width: 280px;
  background-color: var(--dark);
  left: -40px;
  padding: 20px 20px 10px 40px;
  top: 20px;
}
.submenu li {
  margin-bottom: 10px;
}
.gs-service-content:hover .gs-service-content-txt {
  transform: translateY(0);
  opacity: 1;
}
.gs-service-content-txt {
  transform: translateY(100%);
  opacity: 0;
  transition: all 200ms ease;
}
.gs-service-content {
  padding: 30px;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
}
.blog-slider article a img,
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-slider article.swiper-slide {
  height: auto;
}
.article-image {
  display: block;
  aspect-ratio: 16 / 9;
}
.blog-hero {
  padding-bottom: 200px;
  display: flex;
  align-items: flex-end;
}
.flex-cat {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.align-center {
  display: flex;
  align-items: center;
}
.blog-grid.gap-50 {
  gap: 50px;
}
.study-details {
  width: 100%;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.study-details > div {
  padding-left: 15px;
  padding-right: 15px;
  width: fit-content;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.nav-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-info-phone {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.nav-info-phone a {
  color: var(--white);
}
.nav-info-phone div.white {
  display: flex;
  gap: 5px;
}
.ml-30 {
  margin-left: 30px;
}
.p-20 {
  font-size: 20px;
  line-height: 1.3;
}
.erorr-hero {
  padding-top: 110px;
  padding-bottom: 100px;
  display: flex;
  align-items: flex-end;
}
.flotant-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
}
.flotant-btn-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--vibrant-red);
  margin-left: auto;
  cursor: pointer;
  margin-right: -10px;
  margin-bottom: -10px;
  animation: flotant-anim 0.8s ease infinite;
  transition: all 0.2s ease-in-out;
}
.flotant-btn-btn:hover {
  background-color: var(--deep-blue);
}
@keyframes flotant-anim {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.flotant-hidden,
.flotant-numbers {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 200ms linear;
}
.flotant-hidden .flotant-content,
.flotant-numbers-container {
  overflow: hidden;
}
.flotant-hidden .flotant-content {
  border-radius: 5px;
  background-color: var(--vibrant-red);
}
.flotant-hidden.active,
.flotant-input:checked + .flotant-numbers {
  grid-template-rows: 1fr;
}
.flotant-hidden.active .flotant-content {
  padding: 15px;
}
.flotant-input {
  display: none;
}
.flotant-label {
  display: block;
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--white);
  width: 100%;
  padding-bottom: 8px;
  margin-top: 15px;
}
.flotant-numbers-container .gs-contact-phone {
  fill: var(--white);
}
.flotant-numbers-container {
  border-radius: 3px;
  border: 1px solid transparent;
}
.flotant-input:checked + .flotant-numbers .flotant-numbers-container {
  margin-top: 5px;
  padding: 10px;
  border: 1px solid var(--white);
}
button.main-link {
  background: transparent;
  outline: none;
  box-shadow: none;
  border: none;
}
.wpcf7-not-valid-tip {
  font-size: 12px;
  color: var(--vibrant-red);
  margin-top: 3px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--vibrant-red);
}
.wpcf7 form .wpcf7-response-output {
  color: var(--white);
}
.hero-home-wrapper {
  max-width: 100vw;
  overflow: hidden;
}
.single-hero {
  width: 100%;
}
.single-hero {
  min-height: 100vh;
  min-height: 100svh;
}
.land-community {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.info-message{
  width: 100%;
  background: var(--vibrant-red);
  color: var(--white);
  text-align: center;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.srr-swiper-container .srr-swiper-slide::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.srr-swiper-container .srr-swiper-slide>div{
  z-index: 4;
}
.diagnoza-title {
  position: absolute;
  top: 50px;
  left: 50px;
}
.diagnoza-paragraf {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
.red-highlight-title {
    width: fit-content;
    padding-bottom: 7px;
    position: relative;
}
.red-highlight-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: red;
}
.p-col-2-container {
  display: flex;
  gap: 200px;
}
.dc-jlr-content {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  margin-bottom: 140px;
}

.dc-jlr-content h2 {
  border-bottom: 1px solid black;
  padding-bottom: 14px;
}
.w-55 {
  width: 55%;
}
.border-bm-black {
    border-bottom: 1px solid black;
  padding-bottom: 14px;
  width: fit-content;
}
.dc-viitor {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.grid-DO-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bg-gray {
  background-color: #F8F9F9;
}
.p-block-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.moment-potrivit-row {
  display: flex;
  gap: 100px;
}
.revizie-2col-p {
  display: flex;
  gap: 100px;
}
.faq-revizie {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
}
.question-title {
  font-size: 20px;
  padding-bottom: 10px;
}
.gs-diagnoza-img {
  padding-top: 60px;
  margin-bottom: 30px;
}
.contact-wrapper-revizie,
.contact-wrapper-schimb {
  background-color: var(--dark);
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 70px;
}
.galerie-foto {
  padding-top: 60px;
  padding-bottom: 60px;
}
.proces-revizie-img {
  padding-top: 60px;
  padding-bottom: 60px;
}
.page-template-revizie .space-p,
.page-template-revizie .p-16,
.page-template-diagnoza-originala-JLR .space-p,
.page-template-diagnoza-originala-JLR .p-16,
.page-template-schimb-distributie .space-p,
.page-template-schimb-distributie .p-16{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}
.info-banner {
      padding: 15px;
    color: #fff;
    margin: 0 auto 40px auto;
    display: block; 
    width: fit-content;
    background: linear-gradient(74deg, rgba(38, 42, 61, 1) 0%, rgba(223, 0, 15, 1) 100%);
}
.srr-hero-content {
  position: absolute;
  bottom: 200px;
  max-width: 385px;
}
.drs-hero-content {
  max-width: 385px;
}
.hero-flex {
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding-bottom: 56px;
}
.custom-hero-p {
  color: #fff;
  margin-top: 20px;
}

@media(max-width: 900px) {
  .hide-max-900 {
    display: none;
  }
}