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

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

.header {
  display: flex;
  background: transparent;
  align-items: center;
  width: 100%;
  height: 130px;
  padding-top: 8px;
  padding-bottom: 0;
  padding-right: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 5px 5px rgb(0, 0, 0, 0.5);
}

.div {
  padding-left: 10px;
}

.imagen_logo {
  height: auto;
  width: 420px;
  object-fit: cover;
  padding-left: 35px;
}

.menu {
  padding-left: 30px;
  display: flex;
  gap: 2rem;
  font-size: 20px;
  font-family: "Times New Roman", Times, serif;
}

.menu a {
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-top: 1px solid white;
  border-bottom: 1px solid white;

}

.menu a:hover {
  color: yellow;
      transform: translateY(-5px);
}

#check {
  display: none;
}

.MostrarMenu,
.ocultarMenu {
  font-size: 30px;
  cursor: pointer;
  color: white;
  display: none;
}

.MostrarMenu {
  order: 1;
}

/* BANNER */

.section_main {
  top: 0;
  width: 100%;
  height: 700px;
  color: white;
  transform: translateY(-130px);
}

.banner {
  position: relative;
  top: 0;
  width: 100%;
  height:100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

/* Animación de slide */
.slide-out {
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), opacity 0.7s;
}

.slide-in {
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), opacity 0.7s;
}

.banner {
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), opacity 0.7s;
  transform: translateX(0);
  opacity: 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;
}


.text_main {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 10;
}


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

/* 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;
}






















@media screen and (max-width: 900px) {
  .header {
    width: 100%;
    height: 70px;
    justify-content: space-between;
  }

  .imagen_logo {
    height: auto;
    width: 200px;
    padding-left: 15px;
  }

  .MostrarMenu {
    display: block;
    color: white;
  }

  .ocultarMenu {
    display: block;
    color: black;
  }

  .menu {
    position: fixed;
    width: 150px;
    height: 100%;
    background: white;
    right: -100%;
    z-index: 1000;
    text-align: center;
    padding: 10px;
    padding-top: 50px;
    top: 0px;
    flex-direction: column;
  }

  .menu a {
    display: block;
    padding: 00px;
    color: black;
    font-size: 1rem;
  }

  #check:checked ~ .menu {
    right: 0;
  }

  .nav {
    font-size: 18px;
  }

  /* BANNER */

  .section_main {
    top: 0;
    width: 100%;
    height: 400px;
    color: white;
  }

  .banner {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 2;
  }

  .banner img {
    width: 100%;
    height: 400px;
    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_main {
    position: absolute;
    top: 50%;
    left: 20px;
    text-align: left;
    transform: translateY(-10%);
    z-index: 10;
  }

  .main_title {
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 80;
    color: white;
  }
  .second_title {
    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;
}

}





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





/* 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 */

.contact_section{
  width: 100%;
  height: auto;
  background-color: white;
  padding: 20px 0;
  flex-direction: column;
}

.map_section{

  width: 100%;
  height: 400px;
  background-color: #f1f1f1;
  padding: 20px;
}

.map_section iframe{
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;

}
.contact_form{
  width: 100%;
}

}