@import url("https://fonts.googleapis.com/css2?family=BBH+Sans+Bartle&family=Bebas+Neue&family=Michroma&family=Orbitron:wght@400..900&family=Oswald&display=swap");

@font-face {
  font-family: "hyperRace-extended-bold";
  src: url("../fonts/hyperspace-race-extended-bold.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "hyperRace-italic";
  src: url("../fonts/hyperspacerace-italic.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "hyperRace-extended";
  src: url("../fonts/hyperspace-race-extended.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "hyperRace-expanded";
  src: url("../fonts/hyperspace-race-expanded.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "hyperRace-extended-light";
  src: url("../fonts/hyperspace-race-extended-light.otf") format("opentype");
  font-display: swap;
}

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  width: 100%;
}

.navbar-brand img {
  height: 56px;
}

#navbarTogglerDemo01 {
  justify-content: center;
}

.nav-underline {
  gap: 2rem;
  padding-right: 250px;
}

.nav-underline li a {
  font-weight: bold;
  font-size: 1.25rem;
  color: black;
}

.nav-underline li a:hover {
  color: orange;
}
/* BANNER */

.banner {
  transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    opacity 0.7s;
  transform: translateX(0);
  opacity: 1;
}
.banner {
  position: relative;
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.3);
  z-index: 3;
}

.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(100%);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    opacity 0.7s;
  z-index: 1;
}

/* Animación de slide */
.banner img.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}

.slide-in {
  transform: translateX(0);
  opacity: 1;
  z-index: 3;
}

.slide-out {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
}
.text_banner {
  width: 100%;
  position: absolute;
  top: 50%;
  text-align: left;
  transform: translateY(-10%);
  z-index: 10;
}

.text_banner h1 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 100;
  color: white;
}
.text_banner p {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 2.5rem;
  padding-top: 10px;
  color: white;
}

/* CLIENTES */

.main_section {
  background-color: white;
  padding-top: 50px;
  padding-bottom: 50px;
  height: auto;
  background-image: url("../img/fondo_1.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  object-fit: cover;
  width: 100%;
}

.clients_section {
  text-align: center;
  position: relative;
  /* background-color: white; */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3.5rem;
  font-weight: lighter;
  color: white;
}

.clients_list {
  padding-top: 80px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  grid-template-areas:
    "first_client second_client third_client fourth_client"
    "fifth_client sixth_client seventh_client eighth_client"
    "ninth_client tenth_client eleventh_client twelfth_client"
    "thirteenth_client fourteenth_client fifteenth_client sixteenth_client";
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
  height: auto;
}

#first_client {
  grid-area: first_client;
}

#second_client {
  grid-area: second_client;
}

#third_client {
  grid-area: third_client;
}

#fourth_client {
  grid-area: fourth_client;
}

#fifth_client {
  grid-area: fifth_client;
}

#sixth_client {
  grid-area: sixth_client;
}

#seventh_client {
  grid-area: seventh_client;
}

#eighth_client {
  grid-area: eighth_client;
}

#ninth_client {
  grid-area: ninth_client;
}

#tenth_client {
  grid-area: tenth_client;
}

#eleventh_client {
  grid-area: eleventh_client;
}

#twelfth_client {
  grid-area: twelfth_client;
}

#thirteenth_client {
  grid-area: thirteenth_client;
}

#fourteenth_client {
  grid-area: fourteenth_client;
}

.client_card {
  max-width: 200px;
  height: 180px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgb(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.client_card {
  opacity: 0;
  transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transition:
    opacity 0.7s,
    transform 0.7s;
  -webkit-transition:
    opacity 0.7s,
    -webkit-transform 0.7s;
}

.client_card img {
  width: 90%;
  height: 120px;
  object-fit: contain;
  background-color: white;
}

.client_card h3 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 1.5rem;
  color: black;
  text-align: center;
  padding-top: 10px;
  font-weight: lighter;
}

/* Animación para los cards de clientes */

.client_card.visible {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.client_card:hover {
  transform: translateY(-25px) scale(1.04);
  -webkit-transform: translateY(-25px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  -webkit-transition:
    -webkit-transform 0.3s,
    box-shadow 0.3s;
}

/* SECCION DE SERVICIOS */

.products_section {
  text-align: center;
  font-size: 3.5rem;
  font-weight: lighter;
  margin-top: 80px;
  margin-bottom: 50px;
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
}

.products_list {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 900px;
  /* background-color: rgb(194, 194, 194); */
  background-image: url("../img/motor_3.jpg");
  background-position: center;
  background-size: cover;
  /* background: transparent rgba(0, 0, 0, 0.5); */
  opacity: 100%;
  /* background-color: rgba(0, 0, 0, 0.25); */
  z-index: 1;
  padding-top: 50px;
  justify-items: center;
}

.products_list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* 0.5 es el nivel de oscuridad */
  pointer-events: none;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}

.product_card {
  display: none;
  position: relative;
  padding: 50px;
  width: 90%;
  height: 800px;
  /* background: #fff; */
  border-color: 10px solid white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: transparent;
  transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    opacity 0.7s;
  -webkit-transition:
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    opacity 0.7s;
  z-index: 3;
}

.product_card.active {
  display: flex;
  opacity: 1;
  border-color: 10px solid white;
}

.product_img {
  object-fit: contain;
  height: auto;
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  z-index: 3;
}

.product_img img {
  height: 100%;
  width: 100%;
}

.product_content {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: white;
  font-weight: lighter;
  width: 50%;
  height: auto;
  padding-left: 24px;
  text-align: left;
  z-index: 3;
}

.product_content h3 {
  font-size: 3rem;
  margin-bottom: 20px;
  padding-top: 50px;
}

.product_content p {
  font-size: 2rem;
  margin-bottom: 30px;
}

.product_content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.product_content li {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.buttons {
  display: flex;
  justify-content: left;
  align-items: center;
  align-content: center;
  justify-items: center;
  margin-top: 20px;
  gap: 2rem;
}

.product_btn {
  width: 300px;
  height: 80px;
  background: #0074d9;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.5rem;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.product_btn:hover {
  background: #005fa3;
  transform: translateY(-2px);
}

.product_btn-wsp {
  width: 300px;
  height: 80px;
  display: flex;
  align-items: center;
  align-content: center;
  background-color: green;
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.5rem;
  gap: 20px;
  text-decoration: none;
  -webkit-text-decoration: none;
}

.product_btn-wsp h4 {
  color: white;
  position: relative;
}

.product_btn-wsp img {
  display: block;
  background-color: transparent;
  height: 60px;
  width: 60px;
  margin-left: 10px;
}

.product_btn-wsp:hover {
  background-color: darkgreen;
  transform: translateY(-2px);
}

/* Flechas del carrusel */

.carousel-arrow.left {
  left: 10px;
}
.carousel-arrow.right {
  right: 10px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
  height: auto;
  display: flex;
  justify-content: space-between;
  padding: 80px 150px 0px 150px;
  background-color: #f1f1f1;
  margin-top: 150px;
}

.footer_division {
  flex: 1;
  padding: 10px;
}

.footer_division h4 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.footer_division ul {
  list-style: none;
  padding: 0;
  /* gap: 50px; */
  display: flex;
  flex-direction: column;
  align-items: left;
  align-content: center;
}

.footer_division ul li {
  margin-bottom: 5px;
  font-size: 1.25rem;
  padding-top: 10px;
}

.footer_division ul li a {
  text-decoration: none;
  color: #0074d9;
  padding-left: 10px;
}

.footer_division ul li a:hover {
  text-decoration: underline;
}

.icon_footer {
  display: flex;
  align-items: center;
  justify-content: left;
}

.imagen_logo-footer {
  padding: 0px;
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 100,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

/* Copyright Section */

.copyright {
  text-align: center;
  padding: 20px 0;
  background-color: #f1f1f1;
}

.copyright p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

/* PAGINA - NOSOTROS */

.section_our {
  justify-items: center;
  width: 100%;
  height: auto;
  background-color: white;
  padding-top: 50px;
  padding-bottom: 150px;
}

.text_main-sn .main_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.our-carousel {
  position: relative;
  width: 80%;
  height: 700px;
  overflow: hidden;
}
.our_card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #333;
}
.our_card.active {
  opacity: 1;
  z-index: 2;
}
.our_card_text {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 24px 40px;
  border-radius: 12px;
  font-size: 2rem;
  text-align: justify;
  max-width: 800px;
  height: auto;
}

.our_card_text h3 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}
.our_card_text p {
  font-size: 1.5rem;
  line-height: 1.4;
}

.section_politian {
  width: 100%;
  height: auto;
  justify-items: center;
}

.section_quality {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-content: center;
  /* align-items: center; */
  justify-items: center;
  margin-top: 50px;
  padding: 50px;
  border-radius: 8px;
  border: 1px solid #333;
  width: 80%;
  height: 700px;
}

.our_card-politian {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 24px 40px;
  border-radius: 12px;
  font-size: 1rem;
  text-align: justify;
  max-width: 800px;
  /* height: auto; */
}

.our_card-politian h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.our_card-politian p {
  font-size: 1.5rem;
  line-height: 1.4;
  line-height: 2.5rem;
  padding-bottom: 20px;
}

/* FIN PAGINA - NOSOTROS */

/* PAGINA - SERVICIOS */

.main_partners {
  height: auto;
  width: 100%;
  justify-content: center;
  justify-items: center;
}

.main_partners_carousel {
  display: flex;
  width: max-content;
  gap: 32px;
  height: 160px;
  align-items: center;
  animation: mainpartnersScroll 18s linear infinite;
}
.partner_card {
  width: 200px;
  height: 150px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(187, 44, 44, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 8px;
}

.partner_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes mainpartnersScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.product_card-service {
  display: flex;
  position: relative;
  padding: 50px;
  width: 90%;
  height: 800px;
  /* background: #fff; */
  border-color: 10px solid white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    opacity 0.7s;
  -webkit-transition:
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    opacity 0.7s;
  z-index: 1;
  margin-top: 20px;
  margin-bottom: 10px;
}

.product_card-service::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  z-index: 2;
}

/* FIN PAGINA - SERVICIOS */

/* PAGINA CONTACTO */

.contact_section {
  display: flex;
  justify-content: center;
  gap: 5rem;
}

.contact_form {
  /* display: flex;
  flex-direction: column; */
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 50%;
}

.contact_form label {
  margin-bottom: 10px;
  font-weight: bold;
}

.contact_form input,
.contact_form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
}

.contact_form button {
  background-color: #007bff;
  color: white;
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  height: 60px;
  width: 200px;
}

.contact_form button:hover {
  background-color: #0056b3;
}

.contact_form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.map_section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

/* ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ */
@media screen and (max-width: 900px) {

  .navbar-brand img {
    height: 46px;
  }

  .nav-underline {
  
  padding-right: 0px;
}
  .banner {
    height: 300px;
    width: 100vw;
  }
  .banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.5);
    z-index: 3;
  }

  .text_banner {
    width: 100%;
    position: absolute;
    top: 50%;
    /* left: 20px; */
    text-align: left;
    transform: translateY(-10%);
    z-index: 10;
  }

  .text_banner h1 {
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 80;
    color: white;
  }

  .text_banner p {
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    font-size: 1rem;
    padding-top: 10px;
  }

  /* CLIENTES */

  .main_section {
    height: auto;
    margin-bottom: 5px;
    background-image: url("../img/fondo_1.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    object-fit: cover;
    width: 100%;
    transform: translateY(-50px);
  }

  .clients_section {
    text-align: center;
    position: relative;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: bolder;
  }

  .clients_list {
    width: 100%;
    padding: 50px 10px 0 10px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "first_client second_client"
      "third_client fourth_client"
      "fifth_client sixth_client"
      "seventh_client eighth_client"
      "ninth_client tenth_client"
      "eleventh_client twelfth_client"
      "thirteenth_client fourteenth_client";
  }
  .client_card {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgb(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
  }

  .client_card img {
    width: 90%;
    height: 100px;
    object-fit: contain;
  }

  .client_card h3 {
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    font-size: 1.2rem;
    color: black;
    text-align: center;
    padding-top: 10px;
    font-weight: lighter;
  }

  /* PRODUCTOS */

  .products_section {
    font-size: 2rem;
    font-weight: bolder;
    margin-top: 0;
  }

  .products_list {
    /* background-color: rgb(194, 194, 194); */
    height: auto;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .product_card {
    width: 90%;
    height: 800px;
    box-shadow: 10px 20px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    justify-content: center;
    align-items: center;
  }

  .product_card.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    padding: 0px;
    margin: 20px 0px 20px 0px;
  }

  .product_img {
    height: 40%;
    width: 100%;
    /* background-size: contain; */
    object-fit: fill;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
  }

  .product_img img {
    height: 100%;
    width: 100%;
  }

  .product_content {
    height: 60%;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    color: white;
    font-weight: lighter;
    width: 100%;
    /* height: auto; */
    padding-left: 24px;
    text-align: left;
    z-index: 3;
  }

  .product_content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-top: 10px;
  }

  .product_content p {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .product_content li {
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: bold;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    align-content: center;
    justify-items: center;
    padding-top: 20px;
    gap: 1rem;
    padding-bottom: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .product_btn {
    width: 200px;
    height: 60px;
    background: #0074d9;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
  }

  .product_btn-wsp {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    align-content: center;
    background-color: green;
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-size: 1rem;
    gap: 20px;
    text-decoration: none;
    -webkit-text-decoration: none;
  }

  .product_btn-wsp h4 {
    color: white;
    position: relative;
  }

  .product_btn-wsp img {
    display: block;
    background-color: transparent;
    height: 30px;
    width: 30px;
    margin-left: 10px;
  }

  /* separa los li 5px */
  li {
    margin-bottom: 2px;
  }

  h2 {
    margin-bottom: 0px;
  }

  /* FOOTER */

  .footer {
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #f1f1f1;
    padding: 0px;
  }

  .footer_division h4 {
    margin-bottom: 20px;
    font-size: 1.25rem;
  }

  .footer_division ul li {
    margin-bottom: 5px;
    font-size: 1rem;
    padding-top: 10px;
  }

  .imagen_logo-footer {
    padding: 0px;
    height: 50px;
    width: auto;
  }

  /* PAGINA - NOSOTROS */

  .section_our {
    justify-items: center;
    width: 100%;
    height: auto;
    background-color: white;
    padding-top: 10px;
    padding-bottom: 150px;
  }

  .text_main-sn .main_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

    text-align: center;
  }

  .our-carousel {
    position: relative;
    width: 90%;
    height: 500px;
    overflow: hidden;
  }
  .our_card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #333;
    /* background-position: -300px; */
  }
  .our_card.active {
    opacity: 1;
    z-index: 2;
  }
  .our_card_text {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 24px 40px;
    border-radius: 12px;
    font-size: 2rem;
    text-align: justify;
    max-width: 800px;
    height: auto;
  }

  .our_card_text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .our_card_text p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .section_politian {
    width: 100%;
    height: auto;
    justify-items: center;
  }

  .section_quality {
    background-size: cover;
    background-position: -150px;
    background-repeat: no-repeat;
    align-content: center;
    justify-items: center;
    margin: 0;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #333;
    width: 90%;
    height: 500px;
  }

  .our_card-politian {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border-radius: 12px;
    font-size: 1rem;
    text-align: justify;
    max-width: 100%;
  }

  .our_card-politian h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .our_card-politian p {
    font-size: 0.8rem;
    line-height: 1.1rem;
    padding-bottom: 20px;
  }

  /* FIN PAGINA - NOSOTROS */

  /* PAGINA - SERVICIOS */

  .main_partners {
    height: auto;
    justify-content: center;
    justify-items: center;
    /* background-image: url('../img/premium_photo-1682144741954-3a9dcea81dd2.jpeg'); */
  }

  .main_partners_carousel {
    display: flex;
    width: max-content;
    gap: 32px;
    height: 160px;
    align-items: center;
    animation: mainpartnersScroll 18s linear infinite;
    margin-bottom: 50px;
    /* margin: 0; */
  }
  .partner_card {
    width: 200px;
    height: 150px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(187, 44, 44, 0.15);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 8px;
  }

  .partner_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product_card-service {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 650px;
    box-shadow: 10px 20px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    opacity: 1;
    padding: 0px;
    margin: 20px 0px 20px 0px;
  }

  /* FIN PRODUCTO - SERVICIOS */

  /* PAGINA CONTACTO */
}
