@charset "UTF-8";
body {
  font-size: 16px;
  background-color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: black;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0;
}

a {
  text-decoration: none;
  border: none;
}
a:focus {
  outline: none;
}

section {
  padding: 0 5%;
  margin: 0 auto;
  transition: opacity 0.6s ease-out;
}

section.full-section {
  padding: 0;
}

section.visible {
  opacity: 1;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5% 0 2%;
  background-color: transparent;
  color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  flex-direction: row;
  width: 100%;
  gap: 36px;
  z-index: 999;
  background-color: black;
}
.header .logoSection {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #FF0000;
}
.header .logoSection img {
  max-width: 68px;
}
@media (max-width: 768px) {
  .header .logoSection img {
    max-width: 40px;
  }
}
.header .navbar {
  display: flex;
}
.header .navbar .navbar-menu {
  display: flex;
  justify-content: center;
  align-items: start;
  align-self: center;
}
@media (max-width: 768px) {
  .header .navbar .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 999;
    padding: 8px 5%;
  }
  .header .navbar .navbar-menu.open {
    display: flex;
  }
}
.header .navbar .navbar-menu li {
  list-style: none;
  transition: all 0.3s ease;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 6px 20px;
}
@media (max-width: 768px) {
  .header .navbar .navbar-menu li {
    width: 100%;
    margin: 0;
  }
}
.header .navbar .navbar-menu li a {
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-align: left;
  color: white;
  gap: 16px;
}
@media (max-width: 768px) {
  .header .navbar .navbar-menu li a {
    color: black;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid black;
    margin: 0;
    padding: 6px 8px;
  }
}
.header .navbar .navbar-menu li a:hover {
  color: #FF0000;
}
.header .navbar .navbar-menu li:hover {
  transform: translateY(-2px);
}
.header .navbar .navbar-menu li.current-menu-item > a {
  color: #FF0000 !important;
}
.header .navbar .navbar-menu .menu-item-has-children {
  position: relative;
}
.header .navbar .navbar-menu .menu-item-has-children svg {
  transition: transform 0.5s ease;
}
.header .navbar .navbar-menu .menu-item-has-children:hover {
  transform: none !important;
}
.header .navbar .navbar-menu .menu-item-has-children:hover svg {
  transform: rotate(-90deg);
}
.header .navbar .navbar-menu .menu-item-has-children a {
  z-index: 2;
}
.header .navbar .navbar-menu .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  background-color: transparent;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding-top: 30px;
  align-self: start;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .header .navbar .navbar-menu .menu-item-has-children .sub-menu {
    position: relative;
    padding: 0;
    background-color: transparent;
  }
}
.header .navbar .navbar-menu .menu-item-has-children .sub-menu li {
  padding: 0;
  margin: 0;
}
.header .navbar .navbar-menu .menu-item-has-children .sub-menu li:first-child {
  border-left: none;
  border-right: none;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  width: 100%;
}
.header .navbar .navbar-menu .menu-item-has-children .sub-menu li a {
  float: none;
  padding: 1px 0;
  text-decoration: none;
  display: block;
  text-align: left;
}
@media (max-width: 768px) {
  .header .navbar .navbar-menu .menu-item-has-children .sub-menu li a {
    padding: 6px 8px;
    border-bottom: none !important;
  }
}
.header .navbar .navbar-menu .menu-item-has-children .sub-menu li:hover {
  transform: none !important;
}
@media (max-width: 768px) {
  .header .navbar .navbar-menu .menu-item-has-children .sub-menu li:last-child a {
    border-bottom: 1px solid black !important;
  }
}
.header .navbar .navbar-menu .menu-item-has-children:hover .sub-menu {
  display: flex;
}
.header .navbar .pse {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 8px;
  background-color: #FF0000;
  width: fit-content !important;
  margin: 0 !important;
}
.header .navbar .pse a {
  border-bottom: none !important;
}
.header .navbar .pse span {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-align: left;
  color: white;
}
@media (max-width: 768px) {
  .header .navbar .pse {
    align-self: center !important;
    margin-top: 8px !important;
    padding: 6px 16px;
  }
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1000;
}
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
}
.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}
.hamburger-menu.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger-menu.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.container-base {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: black;
  padding: 0 5%;
}
.container-base .group-items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  padding: 124px 0 60px 0;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  position: relative;
}
@media (max-width: 768px) {
  .container-base .group-items {
    padding: 24px 0;
    gap: 24px;
  }
}
.container-base .group-items .group {
  flex: 1 1 calc(25% - 20px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 768px) {
  .container-base .group-items .group {
    flex: 1 1 100%;
    gap: 8px;
  }
}
.container-base .group-items .group .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #CACACA;
}
.container-base .group-items .group a {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #CACACA;
  transition: all 0.3s ease;
}
.container-base .group-items .group a:hover {
  transform: translateY(-1px);
  text-decoration: underline;
}
.container-base .group-items .group ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.container-base .secondary {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 40px 10% 60px 10%;
}
.container-base .secondary .socials {
  display: flex;
  flex-direction: row;
  gap: 23px;
  justify-content: center;
  align-items: center;
}
.container-base .secondary p {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #767676;
}
.container-base .solucion-soft {
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.01em;
  text-align: center;
  color: white;
  position: absolute;
  bottom: 22px;
  left: 40px;
}

/* Define keyframes for the slide-in effect */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.lateral-label {
  position: absolute;
  height: 74px;
  width: 140px;
  background-color: #FF0000;
  z-index: 2;
  transform: translateX(0);
  opacity: 0;
  top: -37px;
  transition: opacity 0.5s, transform 0.5s;
}
@media (max-width: 768px) {
  .lateral-label {
    height: 40px;
    width: 160px;
    top: -20px;
  }
}
.lateral-label.active {
  opacity: 1;
}
.lateral-label.left {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}
.lateral-label.left.active {
  animation: slideInLeft 0.5s forwards;
}
.lateral-label.right {
  right: 0;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
}
@media (max-width: 768px) {
  .lateral-label.right {
    right: 0;
    width: 80px;
  }
}
.lateral-label.right.active {
  animation: slideInRight 0.5s forwards;
}

.featured-section {
  padding: 86px 5%;
  display: flex;
  position: relative;
  height: 100%;
  flex-direction: row;
  gap: 0;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
}
@media (max-width: 768px) {
  .featured-section {
    min-height: 100%;
    padding: 32px 5%;
  }
}
.featured-section .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  flex-grow: 1;
  align-self: stretch;
  gap: 30px;
}
@media (max-width: 768px) {
  .featured-section .content {
    gap: 57px;
  }
}
.featured-section .content h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 56.78px;
  letter-spacing: 0.01em;
  text-align: left;
  margin-bottom: 10%;
}
@media (max-width: 768px) {
  .featured-section .content h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.24px;
    margin-top: 0;
  }
}
.featured-section .content h2 .white {
  color: white;
}
.featured-section .content h2 .red {
  color: #FF0000;
}
.featured-section .content h2 .black {
  color: black;
}
.featured-section .content a {
  display: flex;
  margin-top: 5%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 26px;
  background-color: #FF0000;
  border-radius: 8px;
  max-width: 176px;
  width: fit-content;
}
@media (max-width: 768px) {
  .featured-section .content a {
    padding: 6px 16px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.12px;
    margin-top: 10%;
  }
  .featured-section .content a img {
    width: 18px;
  }
}
.featured-section .content a span {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-align: left;
  color: white;
}
.featured-section .car-image {
  max-width: 966px;
  max-height: 489px;
  bottom: 0;
  width: 50%;
  object-fit: contain;
  position: relative;
}
@media (max-width: 768px) {
  .featured-section .car-image {
    position: absolute;
  }
}
.featured-section.citroen {
  background: linear-gradient(to bottom, black 70%, white 50%);
}
@media (max-width: 768px) {
  .featured-section.citroen .car-image {
    right: -10%;
    max-width: 237px;
  }
}
.featured-section.suzuki {
  background: linear-gradient(to bottom, white 70%, black 30%);
  justify-content: flex-end;
}
.featured-section.suzuki .car-image {
  left: 2%;
}
@media (max-width: 1300px) {
  .featured-section.suzuki .car-image {
    bottom: 15%;
  }
}
@media (max-width: 768px) {
  .featured-section.suzuki {
    padding-bottom: 20%;
  }
  .featured-section.suzuki .content {
    width: 90%;
  }
  .featured-section.suzuki .content a {
    align-self: flex-end;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
.banner-home {
  position: relative;
  background-color: #CACACA;
  height: calc(100vh - 126px);
}
@media (max-width: 768px) {
  .banner-home {
    height: calc(100vh - 92px);
  }
}
.banner-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(5.64deg, rgba(0, 0, 0, 0) 4.64%, #000000 95.66%) 33%, linear-gradient(179.17deg, rgba(0, 0, 0, 0) 0.7%, #000000 99.24%), rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}
.banner-home .swiper-wrapper {
  position: relative;
  z-index: 1;
}
.banner-home .swiper-wrapper .swiper-slide {
  overflow: hidden;
  display: flex;
  justify-content: center;
  max-width: 100%;
  background-size: cover;
  width: 100%;
  background-position: center;
}
.banner-home .swiper-wrapper .swiper-slide.swiper-slide-active .icons .logo {
  animation: slideIn 2s ease-out forwards;
}
.banner-home .swiper-wrapper .swiper-slide.swiper-slide-next .icons .logo, .banner-home .swiper-wrapper .swiper-slide .swiper-slide-prev .icons .logo {
  animation: slideOut 2s ease-in forwards;
}
@media (min-width: 1200px) {
  .banner-home .swiper-wrapper .swiper-slide.desktop {
    display: flex;
  }
  .banner-home .swiper-wrapper .swiper-slide.tablet, .banner-home .swiper-wrapper .swiper-slide.mobile {
    display: none;
  }
}
@media (max-width: 1024px) {
  .banner-home .swiper-wrapper .swiper-slide.tablet {
    display: flex;
  }
  .banner-home .swiper-wrapper .swiper-slide.desktop, .banner-home .swiper-wrapper .swiper-slide.mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  .banner-home .swiper-wrapper .swiper-slide.mobile {
    display: flex;
  }
  .banner-home .swiper-wrapper .swiper-slide.desktop, .banner-home .swiper-wrapper .swiper-slide.tablet {
    display: none;
  }
}
.banner-home .swiper-wrapper .swiper-slide .content {
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10%;
  align-items: center;
  padding: 1% 25% 4% 25%;
  width: 100%;
}
@media (max-width: 768px) {
  .banner-home .swiper-wrapper .swiper-slide .content {
    padding: 1% 25% 9% 25%;
  }
}
@media (max-width: 350px) {
  .banner-home .swiper-wrapper .swiper-slide .content {
    padding: 1% 25% 12% 25%;
  }
}
.banner-home .swiper-wrapper .swiper-slide .content.top {
  justify-content: space-between;
  margin-top: 10vh;
}
.banner-home .swiper-wrapper .swiper-slide .content.center {
  justify-content: space-between;
}
.banner-home .swiper-wrapper .swiper-slide .content.center .title {
  margin-top: 45vh;
}
.banner-home .swiper-wrapper .swiper-slide .content.bottom {
  justify-content: flex-end;
}
.banner-home .swiper-wrapper .swiper-slide .content .title {
  max-width: 100%;
  max-height: 15vh;
  font-size: 60px;
  color: white;
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0.64px;
}
@media (max-width: 768px) {
  .banner-home .swiper-wrapper .swiper-slide .content .title {
    font-size: 34px;
  }
}
.banner-home .swiper-wrapper .swiper-slide .content .schedule {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF0000;
  border-radius: 8px;
  padding: 10px 26px;
  gap: 10px;
}
.banner-home .swiper-wrapper .swiper-slide .content .schedule span {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-align: left;
  color: white;
  text-decoration: none;
}
@media (max-width: 768px) {
  .banner-home .swiper-wrapper .swiper-slide .content .schedule img {
    width: 16px;
  }
}
.banner-home .swiper-wrapper .swiper-slide .icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  position: absolute;
  right: 2%;
  bottom: 0;
}
.banner-home .swiper-wrapper .swiper-slide .icons .logo {
  width: 94px;
  height: 94px;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(100%);
}
@media (max-width: 768px) {
  .banner-home .swiper-wrapper .swiper-slide .icons {
    display: none;
  }
}
.banner-home .swiper-pagination {
  bottom: 2% !important;
}
.banner-home .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #D9D9D9;
  opacity: 1;
  border-radius: 50%;
}
.banner-home .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FF0000;
  border-radius: 10px;
  width: 27px;
}
.banner-home .swiper-button-prev, .banner-home .swiper-button-next {
  color: white;
  width: 16px !important;
  height: 9px !important;
}
.banner-home .swiper-button-prev::after, .banner-home .swiper-button-next::after {
  font-size: 16px !important;
}

.secondary-swiper {
  background-color: white;
  overflow: hidden;
  padding: 0;
  max-height: calc(100vh - 126px);
  background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(to right, #ffffff 33%, #FF0000 33%, #FF0000 66%, #ffffff 66%);
}
@media (max-width: 768px) {
  .secondary-swiper {
    max-height: calc(100vh - 92px);
  }
}
.secondary-swiper .swiper-pagination-secondary {
  left: 196px !important;
  position: absolute;
  bottom: 117px !important;
  overflow: visible;
  width: fit-content !important;
  z-index: 2;
}
@media (max-width: 768px) {
  .secondary-swiper .swiper-pagination-secondary {
    left: 50% !important;
    bottom: 20px !important;
  }
}
.secondary-swiper .swiper-pagination-secondary .swiper-pagination-bullet {
  background: #D9D9D9 !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
.secondary-swiper .swiper-pagination-secondary .swiper-pagination-bullet-active {
  background: #FF0000 !important;
  width: 27px !important;
  border-radius: 5px !important;
}
.secondary-swiper .swiper-slide {
  flex-direction: row;
  align-items: center;
  height: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100% !important;
}
.secondary-swiper .swiper-slide .content-slide {
  padding: 86px 5%;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .secondary-swiper .swiper-slide .content-slide {
    flex-direction: column;
    padding: 49px 5%;
  }
}
.secondary-swiper .swiper-slide .content-slide .image {
  object-fit: contain;
  object-position: center;
  width: 80%;
  max-height: 424px;
}
@media (max-width: 768px) {
  .secondary-swiper .swiper-slide .content-slide .image {
    align-self: flex-end;
    margin-top: -20px;
  }
}
.secondary-swiper .swiper-slide .content-slide .title {
  font-size: 64px;
  font-weight: 700;
  line-height: 78.02px;
  letter-spacing: 0.01em;
  text-align: left;
  color: white;
  align-self: flex-start;
}
.secondary-swiper .swiper-slide .content-slide .title.red {
  color: #FF0000;
}
.secondary-swiper .swiper-slide .content-slide .title.black {
  color: black;
}
@media (max-width: 890px) {
  .secondary-swiper .swiper-slide .content-slide .title {
    font-size: 44px;
    line-height: 48.02px;
    left: 10px;
    letter-spacing: 0.01em;
    position: relative;
  }
}
@media (max-width: 768px) {
  .secondary-swiper .swiper-slide .content-slide .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    width: 80%;
  }
}
.secondary-swiper .swiper-slide .banner {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.secondary-swiper .swiper-slide .banner.mobile {
  display: none;
}
@media (max-width: 768px) {
  .secondary-swiper .swiper-slide .banner {
    aspect-ratio: 9/16;
  }
  .secondary-swiper .swiper-slide .banner.desktop {
    display: none;
  }
  .secondary-swiper .swiper-slide .banner.mobile {
    display: flex;
  }
}

.plans {
  padding: 96px 5% 14px 5%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .plans {
    padding: 90px 5% 96px 5%;
  }
}
.plans .up {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .plans .up {
    margin-bottom: 16px;
  }
}
.plans .up .main-title {
  color: white;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
}
@media (max-width: 768px) {
  .plans .up .main-title {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.plans .up .subtitle {
  color: white;
  text-align: center;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
}
@media (max-width: 768px) {
  .plans .up .subtitle {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.18px;
  }
}
.plans .plans_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.plans .plans_list .plan {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 32px 0 68px 0;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .plans .plans_list .plan {
    padding: 16px 0 25px 0;
  }
}
@media (min-width: 768px) {
  .plans .plans_list .plan .nut, .plans .plans_list .plan .chronometer-pointer, .plans .plans_list .plan .speedometer-pointer {
    animation-play-state: paused !important;
  }
  .plans .plans_list .plan:hover .nut, .plans .plans_list .plan:hover .chronometer-pointer, .plans .plans_list .plan:hover .speedometer-pointer {
    animation-play-state: running !important;
  }
}
@media (max-width: 768px) {
  .plans .plans_list .plan .nut, .plans .plans_list .plan .chronometer-pointer, .plans .plans_list .plan .speedometer-pointer {
    animation-play-state: running;
  }
}
@media (max-width: 1160px) {
  .plans .plans_list .plan {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .plans .plans_list .plan .desc {
    padding-left: 44px;
  }
}
.plans .plans_list .plan .name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 34px;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .name {
    gap: 4px;
  }
}
.plans .plans_list .plan .name .nut {
  animation: nutRotation 4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .name .nut {
    width: 40px;
    height: 40px;
  }
}
.plans .plans_list .plan .name .info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plans .plans_list .plan .name .info .title1 {
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: #FF0000;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .name .info .title1 {
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.16px;
    text-transform: uppercase;
  }
}
.plans .plans_list .plan .name .info .plan_name {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  color: white;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .name .info .plan_name {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.18px;
    text-transform: uppercase;
  }
}
.plans .plans_list .plan .desc {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .desc {
    justify-content: flex-start;
    gap: 16px;
    padding-left: 44px;
    flex-wrap: wrap;
  }
}
.plans .plans_list .plan .desc .element {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .desc .element {
    gap: 8px;
  }
}
.plans .plans_list .plan .desc .element:first-child {
  border-right: 1px solid white;
  padding-right: 55px;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .desc .element:first-child {
    border: none;
    padding: 0;
  }
}
.plans .plans_list .plan .desc .element:last-child {
  padding-left: 55px;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .desc .element:last-child {
    padding: 0;
  }
}
.plans .plans_list .plan .desc .element .up-element {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.plans .plans_list .plan .desc .element .up-element .chronometer {
  position: relative;
  width: 41px;
  height: 51px;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .desc .element .up-element .chronometer {
    width: 32px;
    height: 40px;
  }
}
.plans .plans_list .plan .desc .element .up-element .chronometer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.plans .plans_list .plan .desc .element .up-element .chronometer .chronometer-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.plans .plans_list .plan .desc .element .up-element .chronometer .chronometer-pointer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 60%;
  animation: chronometerRotation 4s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}
.plans .plans_list .plan .desc .element .up-element .speedometer {
  position: relative;
  width: 41px;
  height: 51px;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .desc .element .up-element .speedometer {
    width: 41px;
  }
}
.plans .plans_list .plan .desc .element .up-element .speedometer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.plans .plans_list .plan .desc .element .up-element .speedometer .speedometer-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.plans .plans_list .plan .desc .element .up-element .speedometer .speedometer-pointer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 60%;
  animation: speedometerRotation 4s ease-in-out forwards;
}
.plans .plans_list .plan .desc .element .up-element .title {
  display: flex;
  flex-direction: column;
}
.plans .plans_list .plan .desc .element .up-element .title .title1 {
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .desc .element .up-element .title .title1 {
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.16px;
    text-transform: uppercase;
  }
}
.plans .plans_list .plan .desc .element .up-element .title .title2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .desc .element .up-element .title .title2 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.16px;
    text-transform: uppercase;
  }
}
.plans .plans_list .plan .desc .element p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.16px;
  color: white;
}
@media (max-width: 768px) {
  .plans .plans_list .plan .desc .element p {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.14px;
  }
  .plans .plans_list .plan .desc .element p.speed {
    margin-top: -10px;
  }
}
.plans .schedule {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF0000;
  border-radius: 8px;
  padding: 4px 26px;
  gap: 10px;
  margin-top: 32px;
  align-self: flex-end;
}
@media (max-width: 768px) {
  .plans .schedule {
    padding: 6px 16px;
    width: 100%;
  }
  .plans .schedule img {
    width: 24px;
  }
}
.plans .schedule span {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.2px;
  color: white;
}
@media (max-width: 768px) {
  .plans .schedule span {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.12px;
  }
}

@media (max-width: 768px) {
  .animated {
    animation-play-state: paused !important;
  }
  .animated.visible {
    animation-play-state: running !important;
  }
}
@keyframes nutRotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes chronometerRotation {
  0% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(0.1, 0.8, 0.3, 1);
  }
  80% {
    transform: rotate(1020deg);
    animation-timing-function: ease-out;
  }
  100% {
    transform: rotate(1080deg);
  }
}
@keyframes speedometerRotation {
  0% {
    transform: rotate(-90deg);
  }
  30% {
    transform: rotate(90deg);
  }
  35% {
    transform: rotate(70deg);
  }
  40% {
    transform: rotate(90deg) rotate(-30deg);
  }
  45% {
    transform: rotate(90deg) rotate(10deg);
  }
  60% {
    transform: rotate(90deg) rotate(-30deg);
  }
  75% {
    transform: rotate(90deg) rotate(10deg);
  }
  80% {
    transform: rotate(60deg);
  }
  100% {
    transform: rotate(-90deg);
  }
}
.cont-map {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: relative;
  margin: 0;
}
.cont-map #map-canvas {
  width: 100%;
  height: 80vh;
}
.cont-map #map-canvas .gm-style .gm-style-iw-tc {
  display: none !important;
}
.cont-map #map-canvas .gm-style-iw-chr {
  display: none !important;
}
.cont-map #map-canvas .gm-style-iw {
  background-color: black !important;
  border-radius: 10px !important;
  width: 457px !important;
  padding: 0 30px 0 0;
}
.cont-map #map-canvas .gm-style-iw-d {
  overflow: hidden !important;
}
.cont-map #map-canvas .gm-ui-hover-effect {
  right: 0 !important;
  top: 0 !important;
}
.cont-map #map-canvas .detailMap {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .cont-map #map-canvas .detailMap {
    gap: 16px;
  }
}
.cont-map #map-canvas .detailMap .up {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cont-map #map-canvas .detailMap .up h2 {
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 768px) {
  .cont-map #map-canvas .detailMap .up h2 {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.cont-map #map-canvas .detailMap .up .main-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cont-map #map-canvas .detailMap .up .main-content .place {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 768px) {
  .cont-map #map-canvas .detailMap .up .main-content .place {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0.18px;
    text-transform: uppercase;
  }
}
.cont-map #map-canvas .detailMap .up .main-content .desc {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.14px;
  color: white;
}
@media (max-width: 768px) {
  .cont-map #map-canvas .detailMap .up .main-content .desc {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
  }
}
.cont-map #map-canvas .detailMap .up .main-content .location-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.cont-map #map-canvas .detailMap .up .main-content .location-container .location {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.18px;
  color: white;
}
@media (max-width: 768px) {
  .cont-map #map-canvas .detailMap .up .main-content .location-container .location {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.16px;
  }
}
.cont-map #map-canvas .detailMap .schedule {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #FF0000;
  padding: 10px 26px;
  width: fit-content;
  gap: 10px;
  align-self: center;
}
.cont-map #map-canvas .detailMap .schedule:focus {
  outline: none;
}
@media (max-width: 768px) {
  .cont-map #map-canvas .detailMap .schedule {
    padding: 6px 16px;
  }
  .cont-map #map-canvas .detailMap .schedule img {
    width: 15px;
  }
}
.cont-map #map-canvas .detailMap .schedule .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.14px;
  color: white;
}
@media (max-width: 768px) {
  .cont-map #map-canvas .detailMap .schedule .text {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.12px;
  }
}

.blog {
  background-color: white;
  padding: 114px 5%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .blog {
    padding: 60px 5% 28px 5%;
  }
}
.blog .title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: black;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .blog .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.blog .swiper-blog {
  position: relative;
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 41px;
}
@media (max-width: 768px) {
  .blog .swiper-blog {
    gap: 8px;
  }
}
.blog .swiper-blog .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
}
.blog .swiper-blog .swiper-slide .card {
  width: fit-content;
  display: flex;
  flex-direction: row;
  gap: 27px;
  height: 265px;
}
@media (max-width: 768px) {
  .blog .swiper-blog .swiper-slide .card {
    flex-direction: column;
    height: auto;
    height: 459px;
  }
}
.blog .swiper-blog .swiper-slide .card:hover .img-container img {
  transform: scale(1.1);
}
.blog .swiper-blog .swiper-slide .card:hover .text-container .title-span {
  color: #FF0000;
}
.blog .swiper-blog .swiper-slide .card:hover .text-container a {
  animation: heartbeat 1.5s ease infinite;
}
.blog .swiper-blog .swiper-slide .card .img-container {
  max-height: 265px;
  height: 100%;
  max-width: 192px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .blog .swiper-blog .swiper-slide .card .img-container {
    align-self: center;
    height: 256px;
  }
}
.blog .swiper-blog .swiper-slide .card .img-container img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog .swiper-blog .swiper-slide .card .text-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 292px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .blog .swiper-blog .swiper-slide .card .text-container {
    gap: 8px;
    flex-grow: 1;
  }
}
.blog .swiper-blog .swiper-slide .card .text-container .title-span {
  color: black;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.18px;
}
.blog .swiper-blog .swiper-slide .card .text-container .text-span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.14px;
  color: black;
  max-height: 12em;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .blog .swiper-blog .swiper-slide .card .text-container .text-span {
    max-height: 5em;
  }
}
.blog .swiper-blog .swiper-slide .card .text-container a {
  border-radius: 8px;
  background-color: #FF0000;
  padding: 10px 22px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: flex;
  width: fit-content;
}
@media (max-width: 768px) {
  .blog .swiper-blog .swiper-slide .card .text-container a {
    margin-top: 2px;
    padding: 6px 16px;
  }
}
.blog .swiper-blog .swiper-slide .card .text-container a span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.14px;
  color: white;
}
.blog .swiper-blog .swiper-pagination-blog {
  bottom: 117px !important;
  overflow: visible;
  width: fit-content !important;
  align-self: center;
}
.blog .swiper-blog .swiper-pagination-blog .swiper-pagination-bullet {
  background: #D9D9D9 !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
.blog .swiper-blog .swiper-pagination-blog .swiper-pagination-bullet-active {
  background: #FF0000 !important;
  width: 27px !important;
  border-radius: 5px !important;
}
.blog .swiper-button-prev, .blog .swiper-button-next {
  color: white;
  height: 24px !important;
  width: 24px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF0000;
  color: white;
}
.blog .swiper-button-prev::after, .blog .swiper-button-next::after {
  font-size: 14px !important;
}
.blog .swiper-button-prev {
  left: 5% !important;
}
@media (min-width: 1900px) {
  .blog .swiper-button-prev {
    left: 3% !important;
  }
}
.blog .swiper-button-next {
  right: 5% !important;
}
@media (min-width: 1900px) {
  .blog .swiper-button-next {
    right: 3% !important;
  }
}
.blog .swiper-button-disabled {
  color: black !important;
  opacity: 1 !important;
  background-color: #CACACA;
}
.blog .more-news {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF0000;
  border-radius: 8px;
  padding: 10px 26px;
  gap: 10px;
}
.blog .more-news span {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-align: left;
  color: white;
  text-decoration: none;
}
@media (max-width: 768px) {
  .blog .more-news img {
    width: 16px;
  }
}

.after-sales-container {
  position: relative;
  padding: 105px 5% 156px 5%;
  background-color: white;
}
@media (max-width: 768px) {
  .after-sales-container {
    padding: 83px 5% 118px 5%;
  }
}
.after-sales-container .swiper-after-sales {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.after-sales-container .swiper-after-sales .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 66px;
  justify-content: space-between;
  overflow: auto;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-in-out;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-after-sales .swiper-slide {
    flex-direction: column;
    gap: 16px;
  }
}
.after-sales-container .swiper-after-sales .swiper-slide .left-content {
  opacity: 0;
  transition: all 0.6s ease-in-out;
  justify-content: space-between;
  gap: 8px;
  display: flex;
  flex-direction: column;
  max-width: 40%;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-after-sales .swiper-slide .left-content {
    max-width: 100%;
    gap: 20px;
  }
}
.after-sales-container .swiper-after-sales .swiper-slide .left-content > .title {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: black;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-after-sales .swiper-slide .left-content > .title {
    max-width: 100%;
    gap: 20px;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    border-bottom: 2px solid #FF0000;
  }
}
.after-sales-container .swiper-after-sales .swiper-slide .left-content .vertical-line {
  display: block;
  width: 2px;
  border-radius: 2px;
  background-color: #FF0000;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease-out;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-after-sales .swiper-slide .left-content .vertical-line {
    display: none;
  }
}
.after-sales-container .swiper-after-sales .swiper-slide .left-content .small-text-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.after-sales-container .swiper-after-sales .swiper-slide .left-content .small-text-container .title {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-after-sales .swiper-slide .left-content .small-text-container .title {
    gap: 0;
  }
}
.after-sales-container .swiper-after-sales .swiper-slide .left-content .small-text-container .title i {
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #FF0000;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-after-sales .swiper-slide .left-content .small-text-container .title i {
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.16px;
    text-transform: uppercase;
  }
}
.after-sales-container .swiper-after-sales .swiper-slide .left-content .small-text-container .title b {
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #FF0000;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-after-sales .swiper-slide .left-content .small-text-container .title b {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: 0.18px;
    text-transform: uppercase;
  }
}
.after-sales-container .swiper-after-sales .swiper-slide .left-content .small-text-container .desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  letter-spacing: 0.01em;
  text-align: left;
  color: black;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-after-sales .swiper-slide .left-content .small-text-container .desc {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.16px;
  }
}
.after-sales-container .swiper-after-sales .swiper-slide .right-content {
  opacity: 0;
  transition: all 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  align-items: flex-end;
  gap: 40px;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-after-sales .swiper-slide .right-content {
    gap: 22px;
  }
}
.after-sales-container .swiper-after-sales .swiper-slide .right-content .schedule {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF0000;
  border-radius: 8px;
  padding: 4px 26px;
  gap: 10px;
  margin-top: 32px;
  align-self: flex-end;
}
.after-sales-container .swiper-after-sales .swiper-slide .right-content .schedule span {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.2px;
  color: white;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-after-sales .swiper-slide .right-content .schedule {
    order: 1;
    padding: 6px 16px;
    width: 100%;
    margin-top: 0;
  }
  .after-sales-container .swiper-after-sales .swiper-slide .right-content .schedule img {
    width: 22px;
  }
  .after-sales-container .swiper-after-sales .swiper-slide .right-content .schedule span {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.12px;
  }
}
.after-sales-container .swiper-after-sales .swiper-slide .right-content .media-container {
  border-radius: 10px;
  overflow: hidden;
  background-color: #CACACA;
  max-width: 440px;
  aspect-ratio: 9/16;
  max-height: 60vh;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-after-sales .swiper-slide .right-content .media-container {
    width: auto;
    align-self: center;
    height: 500px;
    max-height: none;
  }
}
.after-sales-container .swiper-after-sales .swiper-slide .right-content .media-container video, .after-sales-container .swiper-after-sales .swiper-slide .right-content .media-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.after-sales-container .swiper-after-sales .swiper-slide-active {
  opacity: 1;
  transform: translateX(0);
}
.after-sales-container .swiper-after-sales .swiper-slide-active .left-content, .after-sales-container .swiper-after-sales .swiper-slide-active .right-content {
  opacity: 1;
  transform: translateY(0);
}
.after-sales-container .swiper-after-sales .swiper-slide-active .vertical-line {
  animation: drawLine 3s ease-out forwards;
}
.after-sales-container .swiper-button-prev, .after-sales-container .swiper-button-next {
  color: white;
  height: 24px !important;
  width: 24px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF0000;
  color: white;
  bottom: 122px !important;
  top: auto;
}
.after-sales-container .swiper-button-prev::after, .after-sales-container .swiper-button-next::after {
  font-size: 14px !important;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-button-prev, .after-sales-container .swiper-button-next {
    bottom: 62px !important;
  }
}
.after-sales-container .swiper-button-prev {
  left: 5%;
}
@media (max-width: 768px) {
  .after-sales-container .swiper-button-prev {
    left: 50%;
    transform: translateX(-124%);
    margin: 0 4px;
  }
}
.after-sales-container .swiper-button-next {
  left: calc(5% + 32px);
}
@media (max-width: 768px) {
  .after-sales-container .swiper-button-next {
    left: 50%;
    transform: translateX(24%);
    margin: 0 4px;
  }
}
.after-sales-container .swiper-button-disabled {
  color: black !important;
  opacity: 1 !important;
  background-color: #CACACA;
}

@keyframes drawLine {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
.swiper-suzuki, .swiper-citroen {
  position: relative;
  background-color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
@media (max-width: 768px) {
  .swiper-suzuki, .swiper-citroen {
    height: 100%;
    min-height: auto;
  }
}
.swiper-suzuki .swiper-wrapper, .swiper-citroen .swiper-wrapper {
  z-index: 1;
  display: flex;
  align-items: flex-start;
}
.swiper-suzuki .swiper-wrapper .swiper-slide, .swiper-citroen .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image {
  width: 100%;
  height: calc(100vh - 126px);
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image {
    height: calc(100vh - 93px);
  }
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image::before, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .banner, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .banner {
  display: flex;
  position: relative;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .banner.desktop, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .banner.desktop {
  display: flex;
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .banner.desktop, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .banner.desktop {
    display: none;
  }
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .banner.mobile, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .banner.mobile {
  display: none;
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .banner.mobile, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .banner.mobile {
    display: flex;
  }
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .title-container, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .title-container {
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translate(-50%, -50%) translateY(2%);
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  justify-content: center;
  max-width: 60%;
  z-index: 2;
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .title-container .title, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .title-container .title {
  max-height: 200px;
  width: 100%;
  font-size: 64px;
  color: white;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0.64px;
  z-index: 2;
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .title-container .title, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .title-container .title {
    font-size: 34px;
  }
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .title-container .schedule, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .title-container .schedule {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF0000;
  border-radius: 8px;
  padding: 4px 26px;
  gap: 10px;
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .title-container .schedule, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .title-container .schedule {
    padding: 7px 16px;
  }
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .title-container .schedule span, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .title-container .schedule span {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-align: left;
  color: white;
  text-decoration: none;
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .title-container .schedule span, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .title-container .schedule span {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.12px;
  }
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-image .title-container .schedule img, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-image .title-container .schedule img {
    width: 22px;
  }
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-not-image, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-not-image {
  padding: 5%;
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
  text-decoration: none;
  color: black;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 126px);
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-not-image, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-not-image {
    height: calc(100vh - 93px);
  }
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-not-image .car-image, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-not-image .car-image {
  z-index: 2;
  position: relative;
  max-height: 50vh;
  max-width: 100%;
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-not-image .car-image, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-not-image .car-image {
    max-height: 60vh;
  }
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-not-image .title, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-not-image .title {
  max-width: 100%;
  font-size: 60px;
  color: black;
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0.64px;
  z-index: 2;
  padding: 0 20%;
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-not-image .title, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-not-image .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-not-image .title-image, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-not-image .title-image {
  max-height: 15vh;
  width: auto;
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-not-image .promo-text, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-not-image .promo-text {
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px; /* 107.143% */
  letter-spacing: 0.42px;
  text-transform: uppercase;
  color: black;
  top: 0;
  left: 0;
  width: 60%;
  text-align: left;
  align-self: flex-start;
  z-index: 2;
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-not-image .promo-text, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-not-image .promo-text {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-not-image .vehicle-logo, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-not-image .vehicle-logo {
  position: absolute;
  right: 5%;
  top: 5%;
  max-height: 15vh;
  max-width: 15vh;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-wrapper .swiper-slide .banner-container-not-image .vehicle-logo, .swiper-citroen .swiper-wrapper .swiper-slide .banner-container-not-image .vehicle-logo {
    right: 0;
    max-width: 90px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-pagination, .swiper-citroen .swiper-pagination {
    display: none;
  }
}
.swiper-suzuki .swiper-pagination .swiper-pagination-bullet, .swiper-citroen .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #D9D9D9;
  opacity: 1;
  border-radius: 50%;
}
.swiper-suzuki .swiper-pagination .swiper-pagination-bullet-active, .swiper-citroen .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FF0000;
  border-radius: 10px;
  width: 27px;
}
.swiper-suzuki .swiper-button-prev, .swiper-suzuki .swiper-button-next, .swiper-citroen .swiper-button-prev, .swiper-citroen .swiper-button-next {
  color: black;
  height: 9px !important;
  width: 17px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  background-color: none;
  top: 60% !important;
}
@media (max-width: 768px) {
  .swiper-suzuki .swiper-button-prev, .swiper-suzuki .swiper-button-next, .swiper-citroen .swiper-button-prev, .swiper-citroen .swiper-button-next {
    display: flex;
  }
}
.swiper-suzuki .swiper-button-prev::after, .swiper-suzuki .swiper-button-next::after, .swiper-citroen .swiper-button-prev::after, .swiper-citroen .swiper-button-next::after {
  font-size: 17px !important;
}
.swiper-suzuki .swiper-button-prev, .swiper-citroen .swiper-button-prev {
  left: 5%;
}
.swiper-suzuki .swiper-button-next, .swiper-citroen .swiper-button-next {
  right: 5%;
}

.filter-vehicles {
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 96px;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 2% 5% 30px 5%;
  position: relative;
}
@media (max-width: 768px) {
  .filter-vehicles {
    padding: 32px 5% 0 5%;
    gap: 48px;
  }
}
.filter-vehicles .vehicle-filters {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .filter-vehicles .vehicle-filters {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
}
.filter-vehicles .vehicle-filters .filter-button {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  background-color: white;
  cursor: pointer;
}
@media (max-width: 768px) {
  .filter-vehicles .vehicle-filters .filter-button {
    gap: 8px;
    width: 100%;
  }
}
.filter-vehicles .vehicle-filters .filter-button .line {
  height: 4px;
  background-color: #CACACA;
  width: 144px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .filter-vehicles .vehicle-filters .filter-button .line {
    width: 100%;
  }
}
.filter-vehicles .vehicle-filters .filter-button .line:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #FF0000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.filter-vehicles .vehicle-filters .filter-button.active .line:before {
  transform: scaleX(1);
}
.filter-vehicles .vehicle-filters .filter-button span {
  margin-left: 14px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 214.286% */
  letter-spacing: 0.14px;
  text-transform: uppercase;
  color: black;
}
.filter-vehicles .swiper-cards {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.filter-vehicles .swiper-cards .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  justify-content: center;
  align-self: flex-end;
}
.filter-vehicles .swiper-cards .swiper-slide a {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 33px;
}
.filter-vehicles .swiper-cards .swiper-slide a img {
  object-fit: cover;
  max-width: 266px;
  max-height: 153px;
  transition: transform 0.3s ease;
}
.filter-vehicles .swiper-cards .swiper-slide a img:hover {
  transform: scale(1.1);
}
.filter-vehicles .swiper-cards .swiper-slide a span {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 214.286% */
  letter-spacing: 0.14px;
  text-transform: uppercase;
  color: black;
  transition: color 0.3s ease;
}
.filter-vehicles .swiper-cards .swiper-slide a span:hover {
  color: #FF0000;
}
.filter-vehicles .navigation {
  display: flex;
  gap: 30px;
  position: absolute;
  bottom: 0;
  right: 5%;
}
@media (max-width: 768px) {
  .filter-vehicles .navigation {
    position: initial;
  }
}
.filter-vehicles .navigation .swiper-button-prev, .filter-vehicles .navigation .swiper-button-next {
  color: black;
  height: 30px !important;
  width: 30px !important;
  border-radius: 10px;
  border: 1px solid #767676;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  position: relative;
}
.filter-vehicles .navigation .swiper-button-prev::after, .filter-vehicles .navigation .swiper-button-next::after {
  font-size: 8px !important;
  font-weight: 700;
}
@media (max-width: 768px) {
  .filter-vehicles .navigation .swiper-button-prev, .filter-vehicles .navigation .swiper-button-next {
    color: black;
    height: 9px !important;
    width: 17px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: transparent;
    top: 60% !important;
    border-radius: none;
    border: none;
    position: absolute;
  }
  .filter-vehicles .navigation .swiper-button-prev::after, .filter-vehicles .navigation .swiper-button-next::after {
    font-size: 17px !important;
  }
}
.filter-vehicles .navigation .swiper-button-disabled {
  color: black !important;
  opacity: 1 !important;
  background-color: #CACACA;
}
@media (max-width: 768px) {
  .filter-vehicles .navigation .swiper-button-disabled {
    display: none !important;
  }
}

.suzuki-page .delete-suzuki, .citroen-page .delete-citroen {
  display: none !important;
}

.main-banner-single-vehicle {
  position: relative;
  background-color: #CACACA;
  height: calc(100vh - 126px);
  padding: 0;
}
.main-banner-single-vehicle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media (max-width: 768px) {
  .main-banner-single-vehicle {
    height: calc(100vh - 92px);
  }
}
.main-banner-single-vehicle .banner {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.main-banner-single-vehicle .banner.desktop {
  display: flex;
}
@media (max-width: 768px) {
  .main-banner-single-vehicle .banner.desktop {
    display: none;
  }
}
.main-banner-single-vehicle .banner.mobile {
  display: none;
}
@media (max-width: 768px) {
  .main-banner-single-vehicle .banner.mobile {
    display: flex;
  }
}
.main-banner-single-vehicle .title-container {
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translate(-50%, -50%) translateY(2%);
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  justify-content: center;
  max-width: 60%;
  z-index: 2;
}
.main-banner-single-vehicle .title-container .title {
  max-height: 200px;
  width: 100%;
  font-size: 64px;
  color: white;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0.64px;
  z-index: 2;
}
@media (max-width: 768px) {
  .main-banner-single-vehicle .title-container .title {
    font-size: 34px;
  }
}
.main-banner-single-vehicle .title-container .schedule {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF0000;
  border-radius: 8px;
  padding: 4px 26px;
  gap: 10px;
}
@media (max-width: 768px) {
  .main-banner-single-vehicle .title-container .schedule {
    padding: 7px 16px;
  }
}
.main-banner-single-vehicle .title-container .schedule span {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-align: left;
  color: white;
  text-decoration: none;
}
@media (max-width: 768px) {
  .main-banner-single-vehicle .title-container .schedule span {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
  }
}
@media (max-width: 768px) {
  .main-banner-single-vehicle .title-container .schedule img {
    width: 22px;
  }
}
.main-banner-single-vehicle .go-back {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 2;
  background: none;
  color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.main-banner-single-vehicle .go-back span {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 150% */
  letter-spacing: 0.12px;
  color: white;
}

.go-back {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 2;
  background: none;
  color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.go-back span {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 150% */
  letter-spacing: 0.12px;
  color: white;
}

.message-single-vehicle {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 124px 5%;
  align-items: center;
  justify-content: center;
  background-color: white;
  position: relative;
}
@media (max-width: 768px) {
  .message-single-vehicle {
    padding: 56px 5% 85px 5%;
  }
}
.message-single-vehicle .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.message-single-vehicle .title .regular-title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: black;
  text-align: center;
}
@media (max-width: 768px) {
  .message-single-vehicle .title .regular-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.26px;
  }
}
.message-single-vehicle .title .italic-title {
  font-size: 60px;
  font-weight: 700;
  font-style: italic;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: black;
  text-align: center;
}
@media (max-width: 768px) {
  .message-single-vehicle .title .italic-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.32px;
  }
}
.message-single-vehicle .paragraphs-container {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  color: black;
  text-align: justify;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 19px;
}
@media (max-width: 768px) {
  .message-single-vehicle .paragraphs-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.message-single-vehicle .paragraphs-container .paragraph-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.message-single-vehicle .paragraphs-container .paragraph-group:first-child {
  grid-column: span 2;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .message-single-vehicle .paragraphs-container .paragraph-group:first-child {
    grid-column: span 1;
  }
}
.message-single-vehicle .paragraphs-container .paragraph-group ul {
  margin-left: 25px;
}
.message-single-vehicle .paragraphs-container .paragraph-group p {
  line-height: 20px;
}
@media (max-width: 768px) {
  .message-single-vehicle .paragraphs-container {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.14px;
  }
}

.cards-single-vehicle {
  display: grid;
  gap: 0px;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}
@media (max-width: 1120px) {
  .cards-single-vehicle {
    grid-template-columns: 1fr;
  }
}
.cards-single-vehicle .card {
  display: flex;
  height: 100%;
  height: 550px;
  width: 100%;
}
.cards-single-vehicle .card p {
  text-align: justify;
}
@media (max-width: 768px) {
  .cards-single-vehicle .card {
    height: 273px;
  }
}
.cards-single-vehicle .inner-design, .cards-single-vehicle .exterior-design, .cards-single-vehicle .banner-container, .cards-single-vehicle .tech-container {
  position: relative;
  text-align: center;
}
.cards-single-vehicle .inner-design .swiper-container, .cards-single-vehicle .exterior-design .swiper-container, .cards-single-vehicle .banner-container .swiper-container, .cards-single-vehicle .tech-container .swiper-container {
  width: 100%;
}
.cards-single-vehicle .inner-design .swiper-container .swiper-slide, .cards-single-vehicle .exterior-design .swiper-container .swiper-slide, .cards-single-vehicle .banner-container .swiper-container .swiper-slide, .cards-single-vehicle .tech-container .swiper-container .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
}
.cards-single-vehicle .inner-design .swiper-container .swiper-slide img, .cards-single-vehicle .exterior-design .swiper-container .swiper-slide img, .cards-single-vehicle .banner-container .swiper-container .swiper-slide img, .cards-single-vehicle .tech-container .swiper-container .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .cards-single-vehicle .inner-design .swiper-container .swiper-slide img, .cards-single-vehicle .exterior-design .swiper-container .swiper-slide img, .cards-single-vehicle .banner-container .swiper-container .swiper-slide img, .cards-single-vehicle .tech-container .swiper-container .swiper-slide img {
    max-height: 273px;
  }
}
.cards-single-vehicle .inner-design .banner, .cards-single-vehicle .exterior-design .banner, .cards-single-vehicle .banner-container .banner, .cards-single-vehicle .tech-container .banner {
  object-fit: cover;
  width: 100%;
}
@media (max-width: 768px) {
  .cards-single-vehicle .inner-design .banner, .cards-single-vehicle .exterior-design .banner, .cards-single-vehicle .banner-container .banner, .cards-single-vehicle .tech-container .banner {
    max-height: 273px;
  }
}
.cards-single-vehicle .inner-design .navigation, .cards-single-vehicle .exterior-design .navigation, .cards-single-vehicle .banner-container .navigation, .cards-single-vehicle .tech-container .navigation {
  position: absolute;
  bottom: 0%;
  z-index: 2;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: row;
  padding: 47px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}
@media (max-width: 768px) {
  .cards-single-vehicle .inner-design .navigation, .cards-single-vehicle .exterior-design .navigation, .cards-single-vehicle .banner-container .navigation, .cards-single-vehicle .tech-container .navigation {
    padding: 20px;
  }
}
.cards-single-vehicle .inner-design .navigation span, .cards-single-vehicle .exterior-design .navigation span, .cards-single-vehicle .banner-container .navigation span, .cards-single-vehicle .tech-container .navigation span {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.26px;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 768px) {
  .cards-single-vehicle .inner-design .navigation span, .cards-single-vehicle .exterior-design .navigation span, .cards-single-vehicle .banner-container .navigation span, .cards-single-vehicle .tech-container .navigation span {
    font-size: 12.897px;
    font-weight: 700;
    line-height: 12.897px;
    letter-spacing: 0.129px;
  }
}
@media (max-width: 768px) {
  .cards-single-vehicle .inner-design .navigation img, .cards-single-vehicle .exterior-design .navigation img, .cards-single-vehicle .banner-container .navigation img, .cards-single-vehicle .tech-container .navigation img {
    max-width: 100%;
  }
}
.cards-single-vehicle .specs, .cards-single-vehicle .additional-specs {
  background-color: black;
  padding: 114px 80px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  overflow: hidden;
}
.cards-single-vehicle .specs .content, .cards-single-vehicle .additional-specs .content {
  overflow: auto;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  overflow: auto;
  scrollbar-gutter: stable both-edges;
}
.cards-single-vehicle .specs .content :-webkit-scrollbar, .cards-single-vehicle .additional-specs .content :-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.cards-single-vehicle .specs .content ::-webkit-scrollbar-track, .cards-single-vehicle .specs .content ::-webkit-scrollbar-track, .cards-single-vehicle .additional-specs .content ::-webkit-scrollbar-track, .cards-single-vehicle .additional-specs .content ::-webkit-scrollbar-track {
  background: transparent;
}
.cards-single-vehicle .specs .content ::-webkit-scrollbar-thumb, .cards-single-vehicle .specs .content ::-webkit-scrollbar-thumb, .cards-single-vehicle .additional-specs .content ::-webkit-scrollbar-thumb, .cards-single-vehicle .additional-specs .content ::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.cards-single-vehicle .specs .content ::-webkit-scrollbar-thumb:hover, .cards-single-vehicle .specs .content ::-webkit-scrollbar-thumb:hover, .cards-single-vehicle .additional-specs .content ::-webkit-scrollbar-thumb:hover, .cards-single-vehicle .additional-specs .content ::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .cards-single-vehicle .specs, .cards-single-vehicle .additional-specs {
    padding: 40px 5%;
  }
}
.cards-single-vehicle .specs .title-container, .cards-single-vehicle .additional-specs .title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .cards-single-vehicle .specs .title-container, .cards-single-vehicle .additional-specs .title-container {
    gap: 8px;
  }
}
.cards-single-vehicle .specs .title-container .title-specs, .cards-single-vehicle .additional-specs .title-container .title-specs {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cards-single-vehicle .specs .title-container .title-specs, .cards-single-vehicle .additional-specs .title-container .title-specs {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.24px;
  }
}
.cards-single-vehicle .specs .title-container .subtitle-specs, .cards-single-vehicle .additional-specs .title-container .subtitle-specs {
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
}
@media (max-width: 768px) {
  .cards-single-vehicle .specs .title-container .subtitle-specs, .cards-single-vehicle .additional-specs .title-container .subtitle-specs {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.16px;
  }
}
.cards-single-vehicle .specs p, .cards-single-vehicle .additional-specs p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
}
@media (max-width: 768px) {
  .cards-single-vehicle .specs p, .cards-single-vehicle .additional-specs p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.14px;
  }
}
.cards-single-vehicle .specs .title-additional-specs, .cards-single-vehicle .additional-specs .title-additional-specs {
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
}
.cards-single-vehicle .specs ul, .cards-single-vehicle .additional-specs ul {
  margin-left: 25px;
}
.cards-single-vehicle .specs ul li, .cards-single-vehicle .additional-specs ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
}
@media (max-width: 1120px) {
  .cards-single-vehicle .inner-design {
    order: 3;
  }
  .cards-single-vehicle .additional-specs {
    order: 4;
  }
  .cards-single-vehicle .exterior-design {
    order: 5;
  }
  .cards-single-vehicle .specs3 {
    order: 6;
  }
  .cards-single-vehicle .tech-container {
    order: 7;
  }
  .cards-single-vehicle .specs2 {
    order: 8;
  }
}

.tech {
  display: flex;
  flex-direction: column;
  padding: 32px 5% 63px 5%;
  background-color: white;
  gap: 36px;
}
.tech p {
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  color: black;
}
.tech .download {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  gap: 10px;
  padding: 4px 22px;
  border-radius: 8px;
  border: 1.2px dashed #767676;
  cursor: pointer;
  overflow: hidden;
  background-color: white;
  position: relative;
  transition: background-color 1s ease;
}
.tech .download:before {
  content: "";
  position: absolute;
  top: 100%;
  left: -200%;
  width: 300%;
  height: 300%;
  background-color: #CACACA;
  transform: rotate(45deg);
  transition: transform 1s ease-in-out, top 1s ease-in-out, left 1s ease-in-out;
  z-index: 0;
}
.tech .download:hover:before {
  top: 0;
  left: 0;
  transform: rotate(0deg);
}
.tech .download span {
  color: #828282;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.14px;
  z-index: 1;
}
.tech .download img {
  z-index: 1;
}

.small-banner {
  width: 100%;
  padding: 0;
  position: relative;
  display: flex;
}
.small-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
}
.small-banner.degrade::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(360deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.small-banner img {
  width: 100%;
  object-fit: cover;
  max-height: 50vh;
}
@media (max-width: 768px) {
  .small-banner img {
    max-height: 25vh;
  }
}
.small-banner .title {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 2%;
  left: 10%;
  z-index: 2;
}
@media (max-width: 768px) {
  .small-banner .title {
    bottom: 10%;
  }
}
.small-banner .title .italic {
  font-size: 56px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 768px) {
  .small-banner .title .italic {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.16px;
  }
}
.small-banner .title .regular {
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 768px) {
  .small-banner .title .regular {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.24px;
  }
}
.small-banner .small-title {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 2%;
  left: 10%;
  z-index: 2;
}
.small-banner .small-title .text {
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px; /* 107.143% */
  letter-spacing: 0.42px;
  text-transform: uppercase;
  color: white;
  max-width: 417px;
}
@media (max-width: 768px) {
  .small-banner .small-title .text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.18px;
  }
}
.small-banner .go-back {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 2;
  background: none;
  color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.small-banner .go-back span {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 150% */
  letter-spacing: 0.12px;
  color: white;
}
.small-banner .go-back img {
  width: 22px;
  height: 22px;
}

.service-circle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 75px 0;
  background-color: white;
}
@media (max-width: 769px) {
  .service-circle {
    padding: 52px 5%;
  }
}
.service-circle .content {
  max-width: 1520px;
  width: 100%;
  position: relative;
  height: 680px;
}
@media (max-width: 1015px) {
  .service-circle .content {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}
.service-circle .content .service-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-10%, -50%);
  z-index: 6;
  max-width: 545px;
  overflow: hidden;
}
@media (max-width: 1140px) {
  .service-circle .content .service-content {
    left: 0%;
    transform: translate(0%, -50%);
  }
}
@media (max-width: 1015px) {
  .service-circle .content .service-content {
    display: none;
  }
}
.service-circle .content .service-content .swiper-wrapper {
  align-items: center;
}
.service-circle .content .service-content .swiper-wrapper .swiper-slide {
  width: 100%;
}
.service-circle .content .service-content .car-image {
  max-width: 545px;
  width: 100%;
}
.service-circle .content::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background-color: #e4002b;
  border-radius: 50%;
  z-index: 4;
  left: -190px;
}
@media (max-width: 1140px) {
  .service-circle .content::before {
    left: -300px;
  }
}
@media (max-width: 1015px) {
  .service-circle .content::before {
    display: none;
  }
}
.service-circle .content .circle-icons {
  width: 100%;
}
@media (max-width: 1015px) {
  .service-circle .content .circle-icons {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .service-circle .content .circle-icons .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 800px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .service-circle .content .circle-icons .container {
    height: 350px;
  }
}
.service-circle .content .circle-icons .mobile {
  width: fit-content;
  max-width: 500px;
  overflow: hidden;
  z-index: 2;
}
.service-circle .content .circle-icons .mobile .swiper-wrapper {
  align-items: center;
}
.service-circle .content .circle-icons .mobile .swiper-wrapper .swiper-slide {
  width: 100% !important;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (min-width: 1015px) {
  .service-circle .content .circle-icons .mobile {
    display: none;
  }
}
@media (max-width: 1015px) {
  .service-circle .content .circle-icons .mobile {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .service-circle .content .circle-icons .mobile img {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .mobile {
    align-items: center;
    justify-content: center;
    max-width: 200px;
  }
  .service-circle .content .circle-icons .mobile img {
    width: 100%;
    max-width: 200px;
  }
}
.service-circle .content .circle-icons .location-info {
  background-color: white;
  padding: 20px;
  z-index: 3;
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translate(20%, -50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1140px) {
  .service-circle .content .circle-icons .location-info {
    right: 5%;
    transform: translate(5%, -50%);
  }
}
@media (max-width: 1015px) {
  .service-circle .content .circle-icons .location-info {
    position: relative;
    order: -1;
    top: auto;
    right: auto;
    transform: none;
    align-items: center;
  }
}
@media (max-width: 769px) {
  .service-circle .content .circle-icons .location-info {
    padding: 0;
    gap: 8px;
    width: fit-content;
  }
}
.service-circle .content .circle-icons .location-info .title {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: black;
}
@media (max-width: 769px) {
  .service-circle .content .circle-icons .location-info .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.18px;
    text-align: left;
    width: 100%;
  }
}
.service-circle .content .circle-icons .location-info .info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1015px) {
  .service-circle .content .circle-icons .location-info .info {
    align-items: center;
  }
}
.service-circle .content .circle-icons .location-info .info .subtitle {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 111.111% */
  letter-spacing: 0.18px;
  color: black;
}
@media (max-width: 769px) {
  .service-circle .content .circle-icons .location-info .info .subtitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.14px;
    width: 100%;
    text-align: left;
  }
}
.service-circle .content .circle-icons .location-info .info ul {
  margin-left: 25px;
}
.service-circle .content .circle-icons .location-info .info ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.16px;
}
@media (max-width: 769px) {
  .service-circle .content .circle-icons .location-info .info ul li {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.14px;
  }
}
.service-circle .content .circle-icons .location-info .info ul li b {
  font-weight: 700;
  color: #FF0000;
}
.service-circle .content .circle-icons .location-info .info ul li::marker {
  font-size: 10px;
}
.service-circle .content .circle-icons .location-info .schedule {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF0000;
  border-radius: 8px;
  padding: 4px 26px;
  gap: 10px;
  width: fit-content;
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .location-info .schedule {
    padding: 7px 50px;
  }
}
.service-circle .content .circle-icons .location-info .schedule span {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-align: left;
  color: white;
  text-decoration: none;
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .location-info .schedule span {
    font-size: 12px;
    font-weight: 700;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
  }
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .location-info .schedule {
    margin-top: 18px;
  }
  .service-circle .content .circle-icons .location-info .schedule img {
    width: 18px;
  }
}
.service-circle .content .circle-icons .circles {
  position: absolute;
  top: 50%;
  margin-left: 300px;
  max-width: 673.627px;
  width: 100%;
  height: 665.295px;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 1015px) {
  .service-circle .content .circle-icons .circles {
    position: relative;
    margin-left: 0;
    top: auto;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 700px;
  }
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .circles {
    max-width: 264px;
    max-height: 261px;
  }
}
.service-circle .content .circle-icons .circles .service-icon {
  position: absolute;
  width: 108px;
  height: 108px;
  background-color: white;
  border: 3px solid black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
  color: black;
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .circles .service-icon {
    width: 52px;
    height: 52px;
    border: 1px solid black;
  }
}
.service-circle .content .circle-icons .circles .service-icon .icon {
  transition: fill 0.3s ease;
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .circles .service-icon .icon {
    max-width: 30px;
  }
}
.service-circle .content .circle-icons .circles .service-icon::after {
  content: attr(data-service);
  position: absolute;
  top: 110%;
  width: 200%;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.14px;
  text-transform: uppercase;
  color: black;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .circles .service-icon::after {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 0.14px;
  }
}
.service-circle .content .circle-icons .circles .service-icon:hover {
  background-color: #000;
  border-color: #FF0000;
  border-color: white;
}
.service-circle .content .circle-icons .circles .service-icon:hover::after {
  opacity: 1;
}
.service-circle .content .circle-icons .circles .service-icon:hover .icon {
  color: white !important;
}
.service-circle .content .circle-icons .circles::before {
  content: "";
  position: absolute;
  max-width: 673.627px;
  width: 100%;
  height: 665.295px;
  border: 12px solid #FF0000;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 1015px) {
  .service-circle .content .circle-icons .circles::before {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .circles::before {
    max-height: 261px;
    max-width: 264px;
    width: 100%;
    border: 4px solid #FF0000;
  }
}
.service-circle .content .circle-icons .circles .service-icon {
  margin: -30px;
}
.service-circle .content .circle-icons .circles .service-icon:nth-child(1) {
  top: 0%;
  left: 20%;
  transform: translate(-50%, 50%);
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .circles .service-icon:nth-child(1) {
    top: 10%;
    left: 20%;
    transform: translate(-50%, 50%);
  }
}
.service-circle .content .circle-icons .circles .service-icon:nth-child(2) {
  top: 5%;
  left: 55%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .circles .service-icon:nth-child(2) {
    top: 10%;
    left: 60%;
    transform: translate(-50%, -50%);
  }
}
.service-circle .content .circle-icons .circles .service-icon:nth-child(3) {
  top: 20%;
  left: 90%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .circles .service-icon:nth-child(3) {
    top: 10%;
    left: 100%;
    transform: translate(-50%, 50%);
  }
}
.service-circle .content .circle-icons .circles .service-icon:nth-child(4) {
  bottom: 20%;
  left: 90%;
  transform: translate(-50%, 50%);
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .circles .service-icon:nth-child(4) {
    bottom: 30%;
    left: 100%;
    transform: translate(-50%, 50%);
  }
}
.service-circle .content .circle-icons .circles .service-icon:nth-child(5) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .circles .service-icon:nth-child(5) {
    bottom: -10%;
    left: 60%;
    transform: translate(-50%, -50%);
  }
}
.service-circle .content .circle-icons .circles .service-icon:nth-child(6) {
  bottom: 20%;
  left: 20%;
  transform: translate(-50%, 50%);
}
@media (max-width: 768px) {
  .service-circle .content .circle-icons .circles .service-icon:nth-child(6) {
    bottom: 30%;
    left: 20%;
    transform: translate(-50%, 50%);
  }
}

.form_index {
  background-color: white;
  padding: 124px 5%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  position: relative;
}
.form_index .right {
  display: none;
}
@media (max-width: 768px) {
  .form_index .right {
    display: flex;
  }
}
.form_index .left {
  display: flex;
}
@media (max-width: 768px) {
  .form_index .left {
    display: none;
  }
}
@media (max-width: 768px) {
  .form_index {
    padding: 57px 5%;
    gap: 24px;
  }
}
.form_index .title {
  text-align: center;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: black;
}
@media (max-width: 768px) {
  .form_index .title {
    text-align: center;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.16px;
    text-transform: uppercase;
  }
}
.form_index .form {
  width: 100%;
  margin-left: auto;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 32px;
}
@media (max-width: 768px) {
  .form_index .form {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.form_index .form .container_input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.form_index .form .container_input label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.16px;
  color: black;
}
@media (max-width: 768px) {
  .form_index .form .container_input label {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 100% */
    letter-spacing: 0.14px;
  }
}
.form_index .form .container_input label.error {
  position: absolute;
  top: auto;
  bottom: -1rem;
  font-size: 0.675rem !important;
  left: 1rem;
  color: red;
}
.form_index .form .container_input input, .form_index .form .container_input select, .form_index .form .container_input #cities, .form_index .form .container_input textarea {
  padding: 17px 16px;
  border: #E6E6E6 solid 1px;
  border-radius: 8px;
  background-color: #E6E6E6;
}
.form_index .form .container_input textarea {
  width: 100%;
  resize: none;
  min-height: 7.125rem;
}
.form_index .form .container_input:nth-child(1), .form_index .form .container_input:nth-child(2), .form_index .form .container_input:nth-child(3), .form_index .form .container_input:nth-child(4) {
  grid-column: span 1;
}
.form_index .form .container_input:nth-child(5), .form_index .form .container_input:nth-child(6), .form_index .form .container_input:nth-child(7), .form_index .form .container_input:nth-child(8) {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .form_index .form .container_input {
    grid-column: span 1 !important;
  }
}
.form_index .form .text_terms p {
  text-align: justify;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.1px;
}
@media (max-width: 768px) {
  .form_index .form .text_terms p {
    text-align: justify;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.08px;
  }
}
.form_index .form .text_terms p u, .form_index .form .text_terms p a {
  color: #B7001F;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.1px;
  text-decoration-line: underline;
}
@media (max-width: 768px) {
  .form_index .form .text_terms p u, .form_index .form .text_terms p a {
    text-align: justify;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.08px;
  }
}
.form_index .form .text_terms p b {
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.1px;
}
@media (max-width: 768px) {
  .form_index .form .text_terms p b {
    text-align: justify;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.08px;
  }
}
.form_index .form .check {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.form_index .form .check input[type=checkbox] {
  display: none;
}
.form_index .form .check input[type=checkbox]:checked + label::before {
  background-color: #FF0000;
  border: none;
}
.form_index .form .check input[type=checkbox] + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 100% */
  letter-spacing: 0.14px;
}
.form_index .form .check input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #828282;
  background: #E6E6E6;
  transition: background-color 0.3s, border-color 0.3s;
}
.form_index .form .buttons-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.form_index .form .buttons-container button {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  max-width: 261px;
  width: 100%;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  height: 50px;
}
@media (max-width: 768px) {
  .form_index .form .buttons-container button {
    max-height: 32px;
    max-width: 124px;
  }
}
.form_index .form .buttons-container button.send {
  background-color: #FF0000;
  border: 2px solid #FF0000;
}
.form_index .form .buttons-container button.send span {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.14px;
  color: white;
}
@media (max-width: 768px) {
  .form_index .form .buttons-container button.send span {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
  }
}
@media (max-width: 768px) {
  .form_index .form .buttons-container button.send img {
    max-width: 18px;
  }
}
.form_index .form .buttons-container button.cancel {
  background-color: white;
  border: 2px solid #C4C4C4;
}
.form_index .form .buttons-container button.cancel span {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.14px;
  color: #C4C4C4;
}

.modal_terms .swal2-actions button {
  padding: 0.675rem 2.5rem;
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
  background: #FF0000;
  border-radius: 0.5rem;
  text-transform: uppercase;
}
.modal_terms .swal2-actions button:focus {
  box-shadow: 0 0 0 3px rgba(189, 21, 24, 0.5);
}
.modal_terms .container h4 {
  text-align: center;
  font-size: 1rem;
  margin: 0 0 1.25rem;
}
.modal_terms .container p {
  text-align: justify;
  margin: 0 0 0.675rem;
  font-size: 0.875rem;
}
.modal_terms .container p b {
  font-weight: 700;
  cursor: pointer;
}

.message {
  padding: 93px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, black 0%, rgba(255, 0, 0, 0) 100%), linear-gradient(to right, black 33%, #FF0000 33%, #FF0000 66%, black 66%);
}
@media (max-width: 768px) {
  .message {
    padding: 51px 5%;
  }
}
.message p {
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 56.782px; /* 101.396% */
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 768px) {
  .message p {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 108.333% */
    letter-spacing: -0.24px;
    text-transform: uppercase;
  }
}
.message p b {
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 56.782px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .message p b {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.24px;
    text-transform: uppercase;
  }
}

.about-us-section {
  padding: 116px 5% 140px 5%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  background-color: white;
}
@media (max-width: 768px) {
  .about-us-section {
    padding: 40px 5% 48px 5%;
    gap: 32px;
  }
}
.about-us-section .information {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .about-us-section .information {
    gap: 16px;
  }
}
.about-us-section .information .title-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-us-section .information .title-container .title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: black;
}
@media (max-width: 768px) {
  .about-us-section .information .title-container .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.about-us-section .information .title-container .subtitle {
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
  color: black;
}
@media (max-width: 768px) {
  .about-us-section .information .title-container .subtitle {
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.16px;
  }
}
.about-us-section .information p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  color: black;
}
@media (max-width: 768px) {
  .about-us-section .information p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
  }
}
.about-us-section .items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 25px;
}
@media (max-width: 768px) {
  .about-us-section .items {
    gap: 22px;
  }
}
.about-us-section .items .item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 261px;
}
.about-us-section .items .item p {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  color: black;
}
@media (max-width: 768px) {
  .about-us-section .items .item p {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
  }
}
.about-us-section .additional-info {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  color: black;
  max-width: 60%;
}
@media (max-width: 768px) {
  .about-us-section .additional-info {
    max-width: 100%;
  }
}

.brands-section {
  padding: 38px 5% 143px 5%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
  background-color: white;
}
@media (max-width: 768px) {
  .brands-section {
    padding: 48px 5%;
    gap: 53px;
  }
}
.brands-section .main-title {
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: black;
}
@media (max-width: 768px) {
  .brands-section .main-title {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.brands-section .brands-containers {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .brands-section .brands-containers {
    row-gap: 32px;
    column-gap: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.brands-section .brands-containers .brand-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .brands-section .brands-containers .brand-container {
    align-self: flex-start;
    height: fit-content;
  }
  .brands-section .brands-containers .brand-container:nth-child(3) {
    grid-column: span 2;
  }
}
.brands-section .brands-containers .brand-container .title-brand-container {
  color: #FF0000;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
@media (max-width: 768px) {
  .brands-section .brands-containers .brand-container .title-brand-container {
    text-align: center;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
  }
}
.brands-section .brands-containers .brand-container .brands {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .brands-section .brands-containers .brand-container .brands {
    flex-grow: 1;
  }
}
.brands-section .brands-containers .brand-container .brands img {
  max-height: 157px;
  height: 100%;
  max-width: 220px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  cursor: pointer;
}
.brands-section .brands-containers .brand-container .brands img:hover {
  filter: grayscale(0%);
}
@media (max-width: 768px) {
  .brands-section .brands-containers .brand-container .brands img {
    max-width: 111px;
    max-height: 77px;
  }
}

.places-section {
  display: flex;
  flex-direction: column;
  padding: 53px 5% 125px 5%;
  position: relative;
  background-color: white;
  overflow: visible;
}
@media (max-width: 768px) {
  .places-section {
    padding: 47px 4% 64px 5%;
    overflow: hidden;
  }
}
.places-section .content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 270px;
  width: 100%;
  z-index: 3;
}
@media (max-width: 768px) {
  .places-section .content {
    gap: 32px;
    max-width: 100%;
  }
}
.places-section .content .title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: black;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .places-section .content .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.places-section .content .places {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.places-section .content .places .place {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .places-section .content .places .place {
    gap: 24px;
  }
}
.places-section .content .places .place .description {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.places-section .content .places .place .description .country {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px; /* 129.167% */
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: black;
}
@media (max-width: 768px) {
  .places-section .content .places .place .description .country {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 31px; /* 172.222% */
    letter-spacing: 0.18px;
  }
}
.places-section .content .places .place .description .date {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.16px;
  color: black;
}
@media (max-width: 768px) {
  .places-section .content .places .place .description .date {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
  }
}
.places-section .content .places .place:nth-child(2), .places-section .content .places .place:nth-child(4) {
  align-self: flex-end;
}
@media (max-width: 768px) {
  .places-section .content .places .place:nth-child(2), .places-section .content .places .place:nth-child(4) {
    align-self: flex-start;
  }
}
.places-section .world {
  position: absolute;
  top: 53px;
  right: 10%;
  max-width: 50vw;
  z-index: 2;
  box-shadow: -20px 0px 0px 7px #FF0000;
  border-radius: 50%;
  max-width: 685px;
}
@media (max-width: 1000px) {
  .places-section .world {
    right: -300px;
    max-width: 473px;
  }
}

.cards-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
  padding: 0;
}
@media (max-width: 905px) {
  .cards-section {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cards-section .card {
  display: flex;
  position: relative;
}
.cards-section .card.text {
  padding: 114px 80px;
}
@media (max-width: 768px) {
  .cards-section .card.text {
    padding: 40px 56px;
  }
}
.cards-section .card .full-image {
  object-fit: cover;
  max-height: 550px;
  width: 100%;
}
@media (max-width: 768px) {
  .cards-section .card .full-image {
    max-height: 272px;
  }
}
.cards-section .card .content {
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.cards-section .card .content .title-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cards-section .card .content .title-container .title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 768px) {
  .cards-section .card .content .title-container .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.cards-section .card .content .subtitle {
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
  color: white;
}
@media (max-width: 768px) {
  .cards-section .card .content .subtitle {
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.16px;
  }
}
.cards-section .card .overlay {
  position: absolute;
  bottom: 0%;
  z-index: 2;
  width: 100%;
  display: flex;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  height: 25%;
}
@media (max-width: 905px) {
  .cards-section .card:nth-child(4) {
    order: 5;
  }
  .cards-section .card:nth-child(5) {
    order: 4;
  }
}

.purpose {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  background-color: white;
  padding: 140px 5%;
}
@media (max-width: 768px) {
  .purpose {
    padding: 48px 5%;
    gap: 24px;
  }
}
.purpose .title-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.purpose .title-container .title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: black;
}
@media (max-width: 768px) {
  .purpose .title-container .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.purpose .title-container .subtitle {
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
  color: black;
}
@media (max-width: 768px) {
  .purpose .title-container .subtitle {
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.16px;
  }
}
.purpose .elements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .purpose .elements {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
.purpose .elements .element {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.purpose .elements .element p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  color: black;
}
@media (max-width: 768px) {
  .purpose .elements .element p {
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.14px;
  }
}
.purpose .elements .element p strong {
  font-weight: 700;
}
.purpose .elements .element img {
  max-width: 36px;
}
.purpose .elements .element:first-child {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .purpose .elements .element:first-child {
    grid-column: span 1;
  }
}

.values {
  display: flex;
  background-color: white;
  position: relative;
  padding: 96px 5% 126px 5%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
@media (max-width: 768px) {
  .values {
    padding: 48px 5% 0 5%;
    gap: 24px;
  }
}
.values .title {
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: black;
}
@media (max-width: 768px) {
  .values .title {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.values .elements {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.values .elements .element {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 110px;
  padding: 24px 0;
  border-bottom: 1px solid black;
}
@media (max-width: 768px) {
  .values .elements .element {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 0;
    border-bottom: none;
  }
}
.values .elements .element .title-element {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 112.5% */
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: black;
}
@media (max-width: 768px) {
  .values .elements .element .title-element {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.2px;
    text-transform: uppercase;
  }
}
.values .elements .element p {
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  color: black;
}
@media (max-width: 768px) {
  .values .elements .element p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.16px;
  }
}
.values .elements .element:first-child {
  border-top: 1px solid black;
  padding-top: 24px;
}
.values .elements .element:nth-child(odd) p {
  padding-left: 16px;
  border-left: 2px solid #FF0000;
}
@media (max-width: 768px) {
  .values .elements .element:nth-child(odd) .title-element {
    padding-left: 16px;
  }
  .values .elements .element:nth-child(odd) p {
    position: relative;
    border: none;
  }
  .values .elements .element:nth-child(odd) p:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    max-height: 62px;
    background-color: red;
  }
}
.values .elements .element:nth-child(even) {
  flex-direction: row-reverse;
}
.values .elements .element:nth-child(even) p {
  padding-right: 16px;
  border-right: 2px solid #FF0000;
}
@media (max-width: 768px) {
  .values .elements .element:nth-child(even) {
    flex-direction: column;
  }
  .values .elements .element:nth-child(even) .title-element {
    padding-right: 16px;
    align-self: flex-end;
  }
  .values .elements .element:nth-child(even) p {
    position: relative;
    border: none;
  }
  .values .elements .element:nth-child(even) p:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    max-height: 62px;
    background-color: red;
  }
}
@media (max-width: 768px) {
  .values .elements .element:last-child {
    border-bottom: 1px solid black;
    padding-bottom: 24px;
  }
}

.swiper-timeline {
  position: relative;
  padding: 174px 0 177px 0;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .swiper-timeline {
    padding: 60px 0 101px 0;
  }
}
.swiper-timeline .swiper-wrapper {
  position: relative;
  z-index: 1;
}
.swiper-timeline .swiper-wrapper .swiper-slide {
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 161px;
}
@media (max-width: 768px) {
  .swiper-timeline .swiper-wrapper .swiper-slide {
    gap: 71px;
  }
}
.swiper-timeline .swiper-wrapper .swiper-slide .background-image {
  position: absolute;
  top: 0;
  max-height: 301px;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 768px) {
  .swiper-timeline .swiper-wrapper .swiper-slide .background-image {
    max-height: 147px;
  }
}
.swiper-timeline .swiper-wrapper .swiper-slide .overlay {
  position: absolute;
  top: 0;
  max-height: 301px;
  z-index: 2;
  width: 100%;
  display: flex;
  background: linear-gradient(180deg, #F00 0%, rgba(255, 0, 0, 0) 100%);
  mix-blend-mode: soft-light;
  height: 75%;
}
@media (max-width: 768px) {
  .swiper-timeline .swiper-wrapper .swiper-slide .overlay {
    max-height: 147px;
  }
}
.swiper-timeline .swiper-wrapper .swiper-slide .date {
  display: flex;
  flex-direction: column;
  z-index: 2;
  padding: 0 5%;
}
.swiper-timeline .swiper-wrapper .swiper-slide .date h2 {
  text-align: left;
  font-size: 164px;
  font-style: normal;
  font-weight: 700;
  line-height: 161.983px; /* 98.77% */
  letter-spacing: 1.64px;
  color: white;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .swiper-timeline .swiper-wrapper .swiper-slide .date h2 {
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 86.592px; /* 108.24% */
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }
}
.swiper-timeline .swiper-wrapper .swiper-slide .date span {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 768px) {
  .swiper-timeline .swiper-wrapper .swiper-slide .date span {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.swiper-timeline .swiper-wrapper .swiper-slide .desc {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;
  color: white;
  z-index: 2;
  padding: 0 5%;
}
@media (max-width: 768px) {
  .swiper-timeline .swiper-wrapper .swiper-slide .desc {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.16px;
  }
}
.swiper-timeline .swiper-wrapper .swiper-slide:nth-child(even) {
  gap: 22%;
  height: initial;
}
.swiper-timeline .swiper-wrapper .swiper-slide:nth-child(even) .date h2 {
  order: 2;
}
.swiper-timeline .swiper-wrapper .swiper-slide:nth-child(even) .date span {
  order: 1;
}
.swiper-timeline .swiper-button-prev, .swiper-timeline .swiper-button-next {
  color: white;
  height: 24px !important;
  width: 24px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF0000;
  color: white;
  bottom: 62px !important;
  top: auto;
}
.swiper-timeline .swiper-button-prev::after, .swiper-timeline .swiper-button-next::after {
  font-size: 14px !important;
}
@media (max-width: 768px) {
  .swiper-timeline .swiper-button-prev, .swiper-timeline .swiper-button-next {
    bottom: 53px !important;
  }
}
.swiper-timeline .swiper-button-prev {
  left: 5%;
}
.swiper-timeline .swiper-button-next {
  left: calc(5% + 32px);
}
@media (max-width: 768px) {
  .swiper-timeline .swiper-button-next {
    left: calc(5% + 32px);
  }
}
.swiper-timeline .swiper-button-disabled {
  color: black !important;
  opacity: 1 !important;
  background-color: #CACACA;
}

@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.wpp {
  position: fixed;
  bottom: 20px;
  display: inline-block;
  right: 5%;
  z-index: 100;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
  animation: heartbeat 1.5s ease-in-out infinite both;
}
.wpp img {
  max-width: 70px;
}
.wpp:hover {
  transform: scale(1.1);
}
.wpp.hidden {
  opacity: 0;
  transform: translateY(20px);
  display: none;
}
.wpp.visible {
  opacity: 1;
  transform: translateY(0);
  display: flex;
}

.car-colors {
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 12px 5% 180px 5%;
  gap: 10px;
}
@media (max-width: 768px) {
  .car-colors {
    padding: 0px 5% 120px 5%;
  }
}
.car-colors .title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px; /* 105% */
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: black;
}
@media (max-width: 768px) {
  .car-colors .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    color: black;
  }
}
.car-colors .vehicle-image {
  max-width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
  align-self: center;
}
.car-colors .vehicle-image .circle-background {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 100%;
  height: 120%;
  top: 0;
  z-index: 0;
  right: 30%;
  transition: background-color 0.3s ease; /* Animación suave */
}
.car-colors .vehicle-image .vehicle-img {
  z-index: 1;
  max-width: 100%;
  max-height: 60vh;
}
.car-colors .colors-options {
  display: flex;
  gap: 28px;
  align-self: flex-end;
  z-index: 2;
}
@media (max-width: 768px) {
  .car-colors .colors-options {
    gap: 24px;
    align-self: center;
    margin-top: 75px;
  }
}
.car-colors .colors-options .color-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #D4D4D4;
  cursor: pointer;
}
@media (max-width: 768px) {
  .car-colors .colors-options .color-btn {
    width: 32px;
    height: 32px;
  }
}

.new-page .news-section {
  background-color: white;
  padding: 85px 5%;
  display: flex;
  flex-direction: row;
  gap: 66px;
  position: relative;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .new-page .news-section {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .new-page .news-section {
    padding: 40px 5%;
  }
}
.new-page .news-section .new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.new-page .news-section .new h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: black;
}
@media (max-width: 768px) {
  .new-page .news-section .new h1 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
}
.new-page .news-section .new .blog-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.new-page .news-section .new .blog-content h2 {
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
  color: black;
}
@media (max-width: 768px) {
  .new-page .news-section .new .blog-content h2 {
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.16px;
  }
}
.new-page .news-section .new .blog-content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  color: black;
}
@media (max-width: 768px) {
  .new-page .news-section .new .blog-content p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
  }
}
.new-page .news-section .new .blog-content ul {
  margin-left: 25px;
}
.new-page .news-section .new .blog-content ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  color: black;
}
@media (max-width: 768px) {
  .new-page .news-section .new .blog-content ul li {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
    color: black;
  }
}
.new-page .news-section .new .blog-content a {
  color: #F00;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  text-decoration-line: underline;
}
@media (max-width: 768px) {
  .new-page .news-section .new .blog-content a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
  }
}
.new-page .news-section .new .blog-content figure {
  display: flex;
  justify-content: center;
}
.new-page .news-section .others-news {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1000px) {
  .new-page .news-section .others-news {
    align-items: center;
  }
}
@media (max-width: 768px) {
  .new-page .news-section .others-news {
    display: none;
  }
}
.new-page .news-section .others-news h2 {
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
  color: black;
}
.new-page .news-section .others-news .interestItem {
  display: flex;
  flex-direction: column;
  gap: 27px;
  max-width: 352px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.new-page .news-section .others-news .interestItem:hover .content .title {
  color: #FF0000;
}
.new-page .news-section .others-news .interestItem:hover .img-container img {
  background-color: #cc0000;
  transform: scale(1.05);
}
.new-page .news-section .others-news .interestItem .img-container {
  width: 352px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.new-page .news-section .others-news .interestItem .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-page .news-section .others-news .interestItem .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.new-page .news-section .others-news .interestItem .content .title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 122.222% */
  letter-spacing: 0.18px;
  color: black;
  text-transform: uppercase;
}
.new-page .news-section .others-news .interestItem .content a {
  padding: 10px 22px;
  background-color: #FF0000;
  border-radius: 8px;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.14px;
  cursor: pointer;
  width: fit-content;
}
.new-page .news-section .others-news .load-more-container button {
  padding: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 90% */
  letter-spacing: 0.2px;
  background-color: #FF0000;
  border-radius: 8px;
  max-width: 352px;
  order: 100;
  outline: none;
  border: none;
  cursor: pointer;
}
.new-page .news-section .others-news .load-more-container button:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}
.new-page .blog {
  display: none;
}
@media (max-width: 768px) {
  .new-page .blog {
    display: flex;
  }
}

.blog-section {
  padding: 85px 5%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 56px;
  position: relative;
}
.blog-section .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  width: 100%;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1260px) {
  .blog-section .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 850px) {
  .blog-section .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-section .grid-container .grid-item {
  width: 100%;
  display: flex;
  gap: 8px;
  flex-direction: column;
  justify-content: space-between;
  max-width: 352px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-section .grid-container .grid-item:hover {
  transform: translateY(-5px);
}
.blog-section .grid-container .grid-item:hover .post-link .post-title {
  color: #FF0000;
}
.blog-section .grid-container .grid-item:hover .post-link .post-link-view-more {
  background-color: #cc0000;
  transform: scale(1.05);
}
.blog-section .grid-container .grid-item .post-link {
  width: 100%;
  display: flex;
  gap: 8px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.blog-section .grid-container .grid-item .post-link .post-image {
  object-fit: cover;
  aspect-ratio: 9/16;
  width: fit-content;
  max-height: 300px;
}
.blog-section .grid-container .grid-item .post-link .post-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.18px;
  color: black;
}
.blog-section .grid-container .grid-item .post-link .post-link-view-more {
  padding: 6px 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.14px;
  background-color: #FF0000;
  width: fit-content;
  border-radius: 8px;
  outline: none !important;
  border: none !important;
}
.blog-section .pagination {
  text-align: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-section .pagination .page-numbers {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0.24px;
  color: black;
}
.blog-section .pagination .page-numbers.current {
  color: #FF0000;
}

/*# sourceMappingURL=styles.css.map */
