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

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 7px;
  background-color: #c0c0c0;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #c0c0c0;
}

::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: white;
}

body {
  padding: 0 !important;
}

i {
  display: flex;
  align-items: center;
  justify-content: center;
}

header {
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 20;
  background: white;
  box-shadow: 0px 0px 15px #939393;
}
header div {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 1024px) {
  header div {
    justify-content: space-between;
  }
}
header div .icon_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  font-size: 1.5rem;
  color: #00a0dc;
}
@media (min-width: 1024px) {
  header div .icon_menu {
    display: none;
  }
}
header div .logo_desktop {
  display: none;
}
@media (min-width: 1024px) {
  header div .logo_desktop {
    display: block;
  }
  header div a img {
    width: 200px;
    height: auto;
    object-fit: contain;
    cursor: pointer;
  }
}
header div .logo_mobile {
  display: block;
  position: absolute;
}
@media (min-width: 1024px) {
  header div .logo_mobile {
    display: none;
  }
}
header div nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}
header div nav ul li a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3e3e3f;
}

header div .addItems {
  display: flex;
  flex-direction: column;
  align-items: end;
}
header div .removeItems {
  display: none;
}

footer {
  width: 100%;
  background-color: black;
  padding: 2.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  footer {
    gap: 2.5rem;
  }
}
footer .menus {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 80rem;
  padding: 1.25rem;
  gap: 40px;
}

footer .menus .menu_unique {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
footer .menus .menu_unique h4 {
  color: white;
  font-weight: 600;
}
footer .menus .menu_unique nav ul {
  list-style: none;
  color: white;
}
footer .menus .menu_unique nav ul li {
  padding: 0.25rem 0;
}
footer .menus .menu_unique nav ul li a {
  font-size: 0.875rem;
  font-weight: 300;
  color: white;
  text-decoration: none;
}
footer .menus .rrss {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.5rem;
}

footer .menus .rrss a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .company {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  border-top: 1px solid white;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .company p,
footer .company small {
  margin-top: 1.25rem;
  font-size: 0.875rem;
}
footer .company small a {
  color: white;
}

/*Index*/
.banners_general {
  width: 100%;
  height: auto;
  margin-bottom: 2.5rem;
}
.banners_general .mySwiper {
  position: relative;
  top: -4rem;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}
.text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banners_general .mySwiper .swiper-slide {
  border-top: white 1px solid;
  width: 100%;
  max-width: 10rem;
  display: flex;
  justify-content: center;
  padding: 0.675rem 0 0;
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  cursor: pointer;
}
.banners_general .mySwiper .swiper-slide p {
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.banners_general .mySwiper .swiper-slide-thumb-active {
  border-top: white 4px solid;
  font-weight: 700;
}
.banners_general .swiperImages .swiper-slide {
  width: 100%;
  height: 88vh;
}
.banners_general .swiperImages .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cars_general {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  position: relative;
  padding: 20px;
  height: 100vh;
  margin-top: -22vh;
}
.cars_general .buttons_selects {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}
@media (min-width: 1024px) {
  .cars_general .buttons_selects {
    width: auto;
    overflow-x: hidden;
    scroll-snap-type: none;
  }
}
.cars_general .buttons_selects button {
  object-fit: cover;
  scroll-snap-align: center;
  color: #333333;
  border-style: none;
  background-color: white;
  padding: 0.675rem 2.5rem;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.875rem;
  border-bottom: 1px solid #00a0dc;
}
@media (min-width: 1024px) {
  .cars_general .buttons_selects button {
    object-fit: none;
    scroll-snap-align: initial;
    border-bottom: 3px solid #00a0dc;
  }
}
.cars_general .buttons_selects .selectedButton {
  font-weight: 600;
  border-bottom: 3px solid #00a0dc;
  font-weight: 600;
  color: white;
  background: #00a0dc;
}
.cars_general .buttons_selects::-webkit-scrollbar-thumb {
  display: none;
}
.cars_general .info_cars {
  display: flex;
  width: 100%;
  gap: 1.25rem;
  align-items: center;
  position: relative;
}
.cars_general .info_cars .background_degrade {
  width: 100%;
  min-height: 200px;
  background-image: url("https://res.cloudinary.com/dizejzlnv/image/upload/v1690435653/SUBARU/Group_3409_1_mnqigx.webp");
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media (min-width: 1024px) {
  .cars_general .info_cars .background_degrade {
    min-height: 328px;
    width: 50vw;
  }
}
.cars_general .info_cars .sectionInfoCar {
  width: 100%;
  max-width: 80rem;
  padding: 0 1.25rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.cars_general .info_cars .sectionInfoCar .container_info {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .cars_general .info_cars .sectionInfoCar .container_info {
    text-align: left;
    grid-template-columns: repeat(2, 1fr);
  }
}
.cars_general .info_cars .sectionInfoCar .container_info .left_info {
  padding: 0 1.25rem;
}
@media (min-width: 1024px) {
  .cars_general .info_cars .sectionInfoCar .container_info .left_info {
    padding: 0;
  }
}
.cars_general .info_cars .sectionInfoCar .container_info .left_info .title h2 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 3rem;
  color: #262626;
}
.cars_general .info_cars .sectionInfoCar .container_info .left_info .title h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: #262626;
  margin-bottom: 1rem;
  padding-bottom: 0.938rem;
  border-bottom: 1px solid #262626;
  text-transform: uppercase;
}
.cars_general .info_cars .sectionInfoCar .container_info .left_info .title h4 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 3rem;
  color: #262626;
  margin-bottom: 1rem;
}
.cars_general .info_cars .sectionInfoCar .container_info .left_info .price h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: #262626;
}
.cars_general .info_cars .sectionInfoCar .container_info .left_info .price h3 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #262626;
  margin-bottom: 0.5rem;
}
.cars_general .info_cars .sectionInfoCar .container_info .left_info .cotiza {
  margin-top: 1rem;
  background-color: #00a0dc;
  padding: 0.675rem 5rem;
  color: white;
  border-style: none;
  text-transform: uppercase;
  cursor: pointer;
}
.cars_general .info_cars .sectionInfoCar .container_info .left_info ul {
  margin: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.675rem;
  list-style: none;
}
@media (min-width: 1024px) {
  .cars_general .info_cars .sectionInfoCar .container_info .left_info ul {
    justify-content: left;
  }
}
.cars_general .info_cars .sectionInfoCar .container_info .left_info ul li {
  border-radius: 50%;
  border: #bebebe solid 1px;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.cars_general
  .info_cars
  .sectionInfoCar
  .container_info
  .left_info
  ul
  li
  button {
  min-width: 1.5rem;
  min-height: 1.5rem;
  border-radius: 50%;
  margin: 0;
  border-style: none;
  cursor: pointer;
}
.cars_general
  .info_cars
  .sectionInfoCar
  .container_info
  .left_info
  ul
  .selected {
  border: #00a0dc solid 1px;
}
.cars_general .info_cars .sectionInfoCar .container_info .container_car {
  height: 100%;
}
.cars_general .info_cars .sectionInfoCar .container_info .container_car img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}
.cars_general .info_cars .image_cars {
  background-image: url("https://res.cloudinary.com/dizejzlnv/image/upload/v1690435653/SUBARU/Group_3409_1_mnqigx.webp");
  background-size: cover;
  background-position: left;
  height: 100%;
  width: 100%;
}
.cars_general .info_cars .image_cars .sectionImageCar {
  width: 100vw;
  height: 100%;
  max-width: 32rem;
  margin-left: 0;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .cars_general .info_cars .image_cars .sectionImageCar {
    width: 100%;
  }
}
.cars_general .info_cars .image_cars .sectionImageCar .container_car {
  padding: 1.25rem 0;
  padding-left: 1.25rem;
  max-width: 40rem;
  margin-right: auto;
  height: 100%;
}
.cars_general .info_cars .image_cars .sectionImageCar .container_car img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}
.cars_general .buttons_swiper {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.cars_general .buttons_swiper .nextCar {
  order: 2;
  color: #00a0dc;
  position: static;
  margin: 0;
}
@media (min-width: 1024px) {
  .cars_general .buttons_swiper .nextCar {
    order: 1;
    position: absolute;
  }
}
.cars_general .buttons_swiper .nextCar:after {
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .cars_general .buttons_swiper .nextCar:after {
    font-size: var(--swiper-navigation-size);
  }
}
.cars_general .buttons_swiper .prevCar {
  order: 1;
  color: #00a0dc;
  position: static;
  margin: 0;
}
@media (min-width: 1024px) {
  .cars_general .buttons_swiper .prevCar {
    order: 2;
    position: absolute;
  }
}
.cars_general .buttons_swiper .prevCar:after {
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .cars_general .buttons_swiper .prevCar:after {
    font-size: var(--swiper-navigation-size);
  }
}

.maps_general {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 5rem 0;
  margin-top: -10vh;
  padding-top: 90px;
}
.maps_general .section_one {
  display: none;
}
@media (min-width: 1024px) {
  .maps_general .section_one {
    display: grid;
    grid-template-columns: 45% 55%;
  }
}
.maps_general .section_one .buttons {
  display: flex;
  align-items: center;
}
.maps_general .section_one .buttons button {
  border-style: none;
  background-color: white;
  color: #c0c0c0;
  border-bottom: 3px solid #c0c0c0;
  padding: 0.675rem 2.5rem;
  font-size: 1rem;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .maps_general .section_one .buttons button {
    font-size: 1.25rem;
    padding: 0.675rem 5rem;
  }
}
.maps_general .section_one .buttons .selectedButton {
  font-weight: 600;
  border-bottom: 3px solid #00a0dc;
  color: #00a0dc;
}
.maps_general .section_one .buttons .UnselectedButton {
  border-style: none;
  background-color: white;
  color: #c0c0c0;
  border-bottom: 3px solid #c0c0c0;
  padding: 0.675rem 2.5rem;
  font-size: 1rem;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .maps_general .section_one .buttons .UnselectedButton {
    font-size: 1.25rem;
    padding: 0.675rem 5rem;
  }
}
.maps_general .section_map {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
}
@media (min-width: 1024px) {
  .maps_general .section_map {
    background-color: #f4f4f4;
    grid-template-columns: 45% 55%;
    min-height: 32rem;
    max-height: 32rem;
    padding: 20px;
  }
}
.maps_general .section_map .list {
  background-color: #f4f4f4;
  width: 100%;
  /* max-width: 35rem; */
  height: 100%;
  max-height: 32rem;
  /* margin-left: auto; */
  padding: 1.25rem;
  overflow-y: auto;
  color: #333333;
}
.maps_general .section_map .list .list_workshops {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.maps_general .section_map .list .list_workshops h3 {
  font-size: 1.5rem;
}
.maps_general .section_map .list .list_workshops #workshops-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.maps_general .section_map .list .list_workshops #workshops-list .list_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.maps_general
  .section_map
  .list
  .list_workshops
  #workshops-list
  .list_item
  .info {
  max-width: 90%;
}
.maps_general
  .section_map
  .list
  .list_workshops
  #workshops-list
  .list_item
  .info
  h4 {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.maps_general
  .section_map
  .list
  .list_workshops
  #workshops-list
  .list_item
  .info
  p {
  color: #6c6c6c;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.maps_general .section_map .list .list_sales {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.maps_general .section_map .list .list_sales h3 {
  font-size: 1.5rem;
}
.maps_general .section_map .list .list_sales #sales-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.maps_general .section_map .list .list_sales #sales-list .list_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.maps_general .section_map .list .list_sales #sales-list .list_item .info {
  max-width: 90%;
}
.maps_general .section_map .list .list_sales #sales-list .list_item .info h4 {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.maps_general .section_map .list .list_sales #sales-list .list_item .info p {
  color: #6c6c6c;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.maps_general .section_map .buttons_mobile {
  display: flex;
  align-items: center;
  margin: 1.25rem 0;
}
@media (min-width: 1024px) {
  .maps_general .section_map .buttons_mobile {
    display: none;
  }
}
.maps_general .section_map .buttons_mobile button {
  border-style: none;
  background-color: white;
  color: #c0c0c0;
  border-bottom: 3px solid #c0c0c0;
  padding: 0.675rem 2.5rem;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 1024px) {
  .maps_general .section_map .buttons_mobile button {
    font-size: 1.25rem;
    padding: 0.675rem 5rem;
  }
}
.maps_general .section_map .buttons_mobile .selectedButton {
  font-weight: 600;
  border-bottom: 3px solid #00a0dc;
  color: #00a0dc;
}
.maps_general .section_map .buttons_mobile .UnselectedButton {
  border-style: none;
  background-color: white;
  color: #c0c0c0;
  border-bottom: 3px solid #c0c0c0;
  padding: 0.675rem 2.5rem;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 1024px) {
  .maps_general .section_map .buttons_mobile .UnselectedButton {
    font-size: 1.25rem;
    padding: 0.675rem 5rem;
  }
}
.maps_general .section_map #map {
  height: 100%;
  width: 100%;
  min-height: 28rem;
}
.maps_general .section_map #map .gm-ui-hover-effect {
  right: 0 !important;
  top: 0 !important;
}
.maps_general .section_map #map .gm-ui-hover-effect {
  opacity: 0.6;
}
.maps_general .section_map #map .info-container {
  max-width: 15rem;
  display: flex;
  flex-direction: column;
  color: #333333;
}
.maps_general .section_map #map .info-container h4 {
  text-transform: uppercase;
  width: 95%;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}
.maps_general .section_map #map .info-container p {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}
.maps_general .section_map #map .info-container p strong {
  font-size: 0.75rem;
  color: #00a0dc;
}
.maps_general .section_map #map .info-container img {
  width: auto;
  height: 100%;
  min-height: 8rem;
  max-height: 8rem;
  border-radius: 0.375rem;
  object-fit: cover;
  object-position: center;
}

.services_general {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5rem;
  padding: 1.25rem;
}
#showPolitics {
  text-decoration: underline;
  color: #007aff;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .services_general {
    padding: 0;
  }
}
.services_general h2 {
  font-weight: 500;
  color: #262626;
  text-align: center;
  text-transform: uppercase;
}
.services_general .services {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .services_general .services {
    grid-template-columns: repeat(4, 1fr);
  }
}
.services_general .services .service {
  width: 100%;
  border: black 1px solid;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  color: black;
}

.contact_general {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5rem;
  padding: 1.25rem;
  margin-top: -10vh;
}
@media (min-width: 1024px) {
  .contact_general {
    padding-top: 90px;
  }
}
.contact_general .title {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .contact_general .title {
    width: 100%;
  }
}
.contact_general .title h2 {
  font-weight: 500;
  color: #262626;
  text-align: center;
  text-transform: uppercase;
}
.contact_general .title h3 {
  font-weight: 400;
  color: #262626;
  text-align: center;
  font-size: 1rem;
}
.contact_general form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .contact_general form {
    width: 90%;
    margin: 0 auto;
    gap: 2.5rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
.contact_general form .two_inputs {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .contact_general form .two_inputs {
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact_general form .input_group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.675rem;
  align-items: start;
  position: relative;
}
.contact_general form .input_group label {
  color: #3e3e3f;
  font-size: 0.875rem;
}
.contact_general form .input_group label.error {
  position: absolute;
  top: auto;
  bottom: -1rem;
  font-size: 0.675rem !important;
  left: 1rem;
  color: red;
}
.contact_general form .input_group select {
  width: 100%;
  padding: 0.675rem 1.25rem;
  border-radius: 999px;
  border-style: none;
  border: 1px solid #bebebe;
}
.contact_general form .input_group input {
  width: 100%;
  padding: 0.675rem 1.25rem;
  border-style: none;
  border: 1px solid #bebebe;
  border-radius: 999px;
}
.contact_general form .input_group textarea {
  width: 100%;
  padding: 0.675rem 1.25rem;
  border-style: none;
  border: 1px solid #bebebe;
  border-radius: 0.675rem;
}
.contact_general form p {
  font-size: 0.675rem;
  text-align: left;
  color: #3e3e3f;
}
.contact_general form p strong {
  text-decoration: underline;
}
.underlined {
  text-decoration: underline;
  font-style: italic;
}
.contact_general form .double_check {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.contact_general form .double_check div {
  display: inline-block;
}
.contact_general form .double_check div input[type="radio"] {
  display: none;
}
.contact_general form .double_check div input[type="radio"] + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.contact_general form .double_check div input[type="radio"] + label:before {
  content: "";
  position: absolute;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: #00a0dc 2px solid;
  background-color: white;
}
.contact_general
  form
  .double_check
  div
  input[type="radio"]:checked
  + label:before {
  background-color: #00a0dc;
}
.contact_general form button {
  padding: 0.675rem 5rem;
  background-color: #00a0dc;
  border-style: none;
  color: white;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .contact_general form button {
    width: max-content;
  }
}

.modal_terms .swal2-actions button {
  padding: 0.675rem 2.5rem;
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
  background: #00a0dc;
  border-radius: 0.5rem;
  text-transform: uppercase;
}
.modal_terms .swal2-actions button:focus {
  box-shadow: 0 0 0 3px rgba(0, 160, 220, 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 strong {
  text-decoration: underline;
  font-style: italic;
}

.iconWpp {
  position: fixed;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.iconWpp:hover {
  scale: 1.1;
}
@media (max-width: 1024px) {
  header div nav ul {
    display: none;
  }
  header div .open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: max-content;
    height: 100vh;
    padding: 2.5rem;
    position: absolute;
    top: -1.25rem;
    right: -1.25rem;
    box-shadow: 0px 0px 30px #939393;
    transition: all 0.3s ease;
  }
  /* .banners_general .swiperImages .swiper-slide {
    height: 80vh;
  } */
  .cars_general,
  .contact_general,
  .maps_general {
    margin-top: 0;
    height: 100%;
  }
  footer .menus {
    flex-direction: column;
    align-items: center;
  }
  footer .menus .menu_unique {
    text-align: center;
  }
  footer .company {
    flex-direction: column;
  }
  footer .company p {
    text-align: center;
  }
}
/*# sourceMappingURL=main.css.map */
