body, html {
  overflow-x: hidden; /* Block horizontal scrolling */
  width: 100%; /* Ensure the body takes full width */
  max-width: 100%; /* Prevent content from exceeding the viewport width */
}

.row p {
  padding-top: 1em !important;
  padding-left: 1em !important;
  padding-right: 1em !important;
  padding-bottom: 1em !important;
}

.row {
  --bs-gutter-x: 1em !important;
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0.05em 0.05em 0.2em rgba(0, 0, 0, 0.2);
  border-style: none;
}
.review-text {
  flex-grow: 1; /* Makes the review text take up remaining space */
}
.reviewer-name {
  text-align: right; /* Aligns the reviewer's name to the right */
  margin-top: auto; /* Pushes the name to the bottom */
  /* font-style: italic; */
  /* color: #666; */
}
.cartas {
  padding: 1em 0;
}

.pill-button {
  border-radius: 50px; /* Makes the button pill-shaped */
  padding: 0 3em; /* Adds padding for better spacing */
  text-decoration: none; /* Removes underline from the link */
  display: inline-block; /* Ensures the link behaves like a button */
  transition: background-color 0.3s ease; /* Smooth hover effect */
  background: #12733a;
  border: none;
  color: white !important;
  margin-bottom: 3em;
  box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
}

.pill-button2 {
  border-radius: 50px; /* Makes the button pill-shaped */
  width: 200px;
  padding: 1em; /* Adds padding for better spacing */
  text-decoration: none; /* Removes underline from the link */
  display: inline-block; /* Ensures the link behaves like a button */
  transition: background-color 0.3s ease; /* Smooth hover effect */
  background: white;
  border: none;
  color: #12733a !important;
  margin-bottom: 1em;
  box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
  text-align: center;
  font-weight: 300;
}

.pill-button3 {
  border-radius: 50px; /* Makes the button pill-shaped */
  width: 200px;
  padding: 1em; /* Adds padding for better spacing */
  text-decoration: none; /* Removes underline from the link */
  display: inline-block; /* Ensures the link behaves like a button */
  transition: background-color 0.3s ease; /* Smooth hover effect */
  background: #12733a !important;
  border: none;
  color: white !important;
  margin-bottom: 1em;
  margin-top: 2em;
  box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
  text-align: center;
  font-weight: 300;
}

.pill-button:hover {
  color: white; /* Change text color on hover */
  background: #12733a;
  box-shadow: 0.15em 0.15em 0.2em rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
}

.pill-button2:hover,
.pill-button3:hover {
  color: white !important; /* Change text color on hover */
  background: #12733a;
  box-shadow: 0.15em 0.15em 0.2em rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
}

.btn-outline-primary {
  --bs-btn-active-bg: #e15d29;
}

.categories-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center rows horizontally */
  gap: 20px; /* Space between rows */
}

.category-row {
  display: flex;
  justify-content: center; /* Center categories horizontally */
  gap: 20px; /* Space between categories */
}

.category {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center logo and text vertically */
  text-align: center; /* Center text horizontally */
  padding: 2em;
}

.category-logo {
  width: 100px; /* Adjust logo size as needed */
  height: auto; /* Maintain aspect ratio */
  margin: 1em;
}

.category-name {
  margin-top: 10px; /* Space between logo and text */
  font-size: 1.2rem; /* Adjust text size as needed */
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .category-row {
    flex-direction: column; /* Stack categories vertically on smaller screens */
    gap: 10px; /* Reduce space between stacked categories */
    transition: 0.2s ease-in-out;
  }
}

.category-page {
  padding: 20px;
}

.category-header {
  margin-bottom: 40px;
}

.category-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.category-icon {
  width: 100px;
  height: auto;
}

.category-icon-page {
  width: auto;
  height: 2.5em;
  margin-right: 0.8em;
  margin-bottom: 0.55em;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50px;
  padding: 2em;
  object-position: 50% 75%;
}

.product-image2 {
  width: 100%; /* Ocupa el 100% del ancho del contenedor */
  aspect-ratio: 1 / 1; /* Mantiene la proporción cuadrada */
  object-fit: cover; /* Cubre el área sin distorsionar la imagen */
  border-radius: 50px; /* Esquinas redondeadas */
  padding: 2em; /* Espaciado interno */
  object-position: 50% 60%; /* Centra la imagen */
}

.product-name {
  font-size: 1.5rem;
  font-weight: 200;
  color: #12733a;
  text-decoration: none;
  transition: color 0.3s ease;
  text-shadow: 0.03em 0.03em 0.05em rgba(0, 0, 0, 0.2);
}

.product-name:hover {
  color: #e15d29;
}

.card-body {
  padding-left: 2em;
}

.card-text {
  font-size: 1rem;
  color: #213d34;
}

.card-textmid {
  color: white;
  background-color: #12733ae7;
}

.card-text2 {
  font-size: 1rem;
  color: #213d34;
  margin-left: -1em !important;
}

.text-justify {
  text-align: justify; /* Justified text */
  padding: 2em 2em 2em 0; /* Add padding for better readability */
}

.text-justify-tabut {
  padding: 0 3em 3em 3em; /* Add padding for better readability */
}

.button-group {
  padding-top: 6em;
}

/* Servicios Page */
.servicios-page {
  padding: 40px 0;
}

.servicio-category {
  margin-bottom: 80px;
}

.servicio-icon {
  width: 80px;
  height: auto;
  margin-right: 10px; /* Space between icon and title */
}

.servicio-title {
  font-size: 2rem;
  color: #12733a;
  text-shadow: 0.03em 0.03em 0.05em rgba(0, 0, 0, 0.2);
  margin: 0; /* Remove default margin */
}

.servicio-photo {
  width: 100%; /* Full width */
  height: auto;
  /* max-height: 30em; */
  border-radius: 20px;
  box-shadow: 0.05em 0.05em 0.2em rgba(0, 0, 0, 0.2);
  margin-top: 20px; /* Space between title and photo */
}

.servicio-card {
  background-color: #12733ae7;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0.05em 0.05em 0.2em rgba(0, 0, 0, 0.2);
  position: relative;
  margin-top: -50px; /* Adjust to overlap the photo */
  z-index: 1;
}

.servicio-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  color: white;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .servicio-card {
    margin-top: 0; /* Remove overlap on smaller screens */
  }

  .servicio-title {
    font-size: 1.5rem;
  }

  .servicio-description {
    font-size: 1rem;
  }
}

/* Checkmark Icon */
.servicio-card .fa-check-circle {
  font-size: 1.6em; /* Adjust size as needed */
  color: white; /* Match the card text color */
  margin-right: 0; /* Space between icon and text */
  text-shadow: 0.03em 0.03em 0.05em rgba(0, 0, 0, 0.2);
}

.d-flex.align-items-center {
  display: flex;
  align-items: center; /* Vertically center the icon and text */
  margin-bottom: 1em;
}

/* Carousel Styling */
.carousel {
  border-radius: 20px; /* Match the rounded corners of the photo */
  overflow: hidden; /* Ensure the corners are rounded */
}

.carousel-inner {
  border-radius: 20px; /* Match the rounded corners of the photo */
}

.carousel-item img {
  width: 100%; /* Full width */
  height: auto; /* Maintain aspect ratio */
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%; /* Adjust arrow size */
  background-color: rgba(0, 0, 0, 0); /* Semi-transparent background */
  border-radius: 50%; /* Rounded arrows */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  /* filter: invert(0); */
  transform: scale(1.5);
}

.carousel-indicators {
  bottom: 10px; /* Position indicators */
  margin-bottom: 0; /* Remove default margin */
}

.carousel-indicators [data-bs-target] {
  width: 2px; /* Dot size */
  height: 2px; /* Dot size */
  border-radius: 50%; /* Rounded dots */
  background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
  border: none; /* Remove default border */
  margin: 0 5px; /* Space between dots */
}

.carousel-indicators .active {
  background-color: #12733a; /* Active dot color (green) */
}

.nosotros-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 1em 0;
}

.nostrales p {
  padding-left: 0em !important;
  padding-right: 0em !important;
}

.nosotros-text {
  font-size: 1.4em !important;
  line-height: 1.6;
  text-align: justify; /* Justify text for better readability */
  margin-bottom: 3em;
  color: #213d34;
}

.nosotros-text_negrilla {
  font-size: 1.5rem !important;
  line-height: 1.6;
  text-align: justify; /* Justify text for better readability */
  margin-bottom: 3em;
  color: #213d34;
  font-weight: 1000;
  text-shadow: 0.03em 0.03em 0.05em rgba(0, 0, 0, 0.1);
}

/* Ensure the text aligns left for Nosotros and right for Nuestro Objetivo */
.text-left {
  text-align: left !important;
}

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

/* Icons Section */
.icon-text {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: #213d34;
  line-height: 1.5rem;
}

.icon-text img {
  width: 5px; /* Adjust as needed */
  height: 5px; /* Adjust as needed */
}

/* Nuestro Equipo Section */
.equipo-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 2rem 0;
}

/* Team Cards */
.team-card {
  text-align: center;
  margin-bottom: 0;
}

.team-card img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 0;
  padding-top: 1.25rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.team-role {
  font-size: 1rem;
  color: #213d34;
}

.team-card p {
  padding-top: 0 !important;
}

.text-center img {
  width: 100px; /* Adjust as needed */
  height: 100px; /* Adjust as needed */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .nosotros-title {
    font-size: 2rem; /* Smaller title on mobile */
  }
  .nosotros-text {
    font-size: 0.9rem; /* Smaller text on mobile */
  }
  .icon-text {
    font-size: 1rem; /* Smaller icon text on mobile */
  }
  .equipo-title {
    font-size: 2rem; /* Smaller title on mobile */
  }
  .team-name {
    font-size: 1rem; /* Smaller name on mobile */
  }
  .team-role {
    font-size: 0.9rem; /* Smaller role on mobile */
  }
}

.bandera {
  margin-left: 2em;
}
.row .mb-1 p {
  padding-bottom: 0 !important;
  padding-left: 0 !important;
}

.review-card .fa-2x {
  padding-bottom: 0 !important;
  margin-right: 0em !important;
}

/* Reduce spacing between contact info elements */
.d-flex.align-items-center.mb-1 {
  margin-bottom: 0.25rem !important; /* Adjust as needed */
}

/* Reduce spacing between social media icons */
.d-flex.align-items-center {
  gap: 0px; /* Adjust spacing between icons */
}

.video-container {
  margin-top: 4em;
  margin-bottom: 2em;
  max-height: 800px; /* Ajusta este valor según necesites */
  overflow: hidden; /* Asegura que el video no sobresalga */
  border-radius: 15px; /* Esquinas redondeadas */
}

video {
  width: 100%; /* Ocupa el 100% del ancho del contenedor */
  height: auto; /* Mantiene la proporción del video */
  display: block; /* Elimina el espacio extra debajo del video */
  margin: 0 auto; /* Centra el video horizontalmente */
  object-position: center;
}

body {
  background-color: rgb(233, 235, 234);
  font-family: lexend;
  font-weight: 100;
  /* font-size: 1em; */
}
.fa {
  padding: 0.5em 0.5em 0.5em 0em;
  font-size: 1em;
  width: 1.2em;
  text-align: center;
  text-decoration: none;
  margin: 0.1em;
  border-radius: 50%;
}

.fa-facebook {
  background: none;
  color: white;
}
.fa-instagram {
  background: none;
  color: white;
}

.verdeflex {
  color: #12733a !important;
  background: none !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #12733ac6;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float svg {
  width: 2.5em;
  height: 2.5em;
  color: white;
}

a {
  color: #12733a;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

a:hover {
  /* font-size: 1.2em; */
  transition: 0.2s ease-in-out;
}

.navbar-nav a:hover {
  /* font-size: 1.2em; */
  transition: 0.2s ease-in-out;
  box-shadow: 0.1em 0.1em 0.1em rgba(10, 10, 10, 0.1);
}

.yt-embed-holder {
  margin-top: 1em;
}

#mail a:hover {
  text-decoration: underline #12733a 0.1px;
  font-size: 1.04em;
  transition: 0.1s ease-in-out;
}

#mail {
  padding: 0;
  margin: 0;
}

.bg-img {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  filter: brightness(0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background-attachment: fixed;
}

.logo-home {
  max-width: 80vw;
  margin-top: 0;
  margin-bottom: 0;
  transition: 0.3s ease-in-out;
}

#img-bio {
  filter: brightness(0.3);
}

#img-bio2 {
  filter: brightness(0.5);
}

#img-bio3 {
  filter: grayscale(0.7) brightness(0.15);
}

#bioland {
  margin: 4em 0em 4em 0em;
  transition: 0.3s ease-in-out;
}

#truco {
  border: dotted;
  border-color: #12733aa4;
  border-width: 2px;
  margin: 0em;
  padding: 1em;
  border-radius: 50%;
  max-width: 5em;
  /* background: linear-gradient(#12733a, #12733ab8); */
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner img {
  max-height: 50em; /* Adjust to desired height */
  object-fit: cover;
  margin-bottom: 2em;
}

/* texto landin sobre foto */
h1 {
  text-align: center;
  padding: 0 0 0 0;
  font-weight: 500;
  color: #12733a;
  font-size: 3em;
  text-shadow: 0.03em 0.03em 0.05em rgba(0, 0, 0, 0.5);
}

h2 {
  text-align: center;
  padding: 0 0 0 0;
  font-weight: 400;
  color: #12733a;
  font-size: 1.8em;
  text-shadow: 0.03em 0.03em 0.05em rgba(0, 0, 0, 0.3);
}

h3 {
  text-align: center;
  padding: 2em 0 2em 0;
  margin-top: 1em;
  font-weight: 150;
  font-size: 1.5em;
  color: #12733a;
  background-color: rgba(173, 255, 255, 0.01);
}
/* boton contacto */
h4 {
  text-align: center;
  padding: 1em 0 1em 0;
  margin-top: 0em;
  font-weight: 300;
  font-size: 1.2em;
  color: #ffffff;
  /* text-shadow: 0.02em 0.02em 0.05em rgba(0, 0, 0, 0.8); */
  text-decoration: none;
  transition: 0.2s ease-in-out;
  border-style: none;
  /* border-color: #12733a;
  background: linear-gradient(#12733a, #12733ab8); */
}

h5 {
  text-align: center;
  padding: 0em 0 0em 0;
  margin-top: 0em;
  font-weight: 400;
  font-size: 1em;
  color: #12733a;
  text-decoration: none;
  text-shadow: 0.02em 0.02em 0.05em rgba(0, 0, 0, 0.8);
  transition: 0.2s ease-in-out;
}

h6 {
  text-align: center;
  line-height: 1.5em;
  padding: 4em 5em 4em 5em;
  margin-top: 0em;
  font-weight: 400;
  font-size: 1.9em;
  color: #12733a;
  text-decoration: none;
  text-shadow: 0.03em 0.03em 0.05em rgba(0, 0, 0, 0.3);
  transition: 0.2s ease-in-out;
}

#news p {
  padding-bottom: 0em;
  margin-bottom: 2em;
  margin-top: 2em;
  padding-top: 0em;
}

p {
  color: #12733a;
  font-weight: 300;
  font-size: 1.2em;
  padding: 4em 4em 0 4em;
  transition: 0.3s ease-in-out;
  line-height: 2em;
  text-decoration: none;
}

.table.custom-table {
  color: #213d34;
  font-weight: 200;
  line-height: 2em;
  border-color: #213d34;
}
.table > :not(caption) > * > * {
  color: #213d34;
}
/* Applying border color to all table lines */
.custom-table,
.custom-table th,
.custom-table td {
  border: 1px solid #213d34; /* Line color */
}

/* Optional: Remove padding from table cells if needed */
.custom-table td {
  padding: 0.5em 1em; /* Adjust as needed */
}

p2 {
  text-align: center !important;
  line-height: 1.5em;
  padding: 0;
  margin-top: 0em;
  font-weight: 150;
  font-size: 1.3em;
  color: #12733a;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
p3 {
  color: #ffffff;
  font-weight: 100;
  padding-bottom: 0em;
  transition: 0.3s ease-in-out;
  line-height: 0em;
  text-decoration: none;
}

.titulo {
  font-size: 2.5em;
  line-height: 0.8em;
}
.titulo2 {
  font-size: 1.5em;
  line-height: 1em;
  font-weight: 300;
  color: #12733a !important;
}
.text-miembro {
  padding: 5em 10em 5em 6em;
}

.text-miembro2 {
  padding: 2em 4em;
}

#work a {
  color: rgb(255, 255, 255);
  font-weight: 100;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}

#work a:hover {
  text-decoration: underline #ffffff 0.1px;
  font-size: 1.04em;
  transition: 0.2s ease-in-out;
}

#work {
  color: rgb(255, 255, 255);
  font-weight: 100;
  font-size: 0.9em;
  transition: 0.3s ease-in-out;

  max-height: 10em;
  padding: 2em 0 0 0;
  margin-bottom: 10em;
}

#work .row {
  display: flex;
  align-items: center;
  padding: 1em 15em;
}

#img-prod {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 40em;
  max-height: auto;
  margin: 0 auto;
  overflow: hidden;
  padding: 1em 0.5em 0.5em 0.5em;
}

#img-prod img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#productstab {
  padding-left: 15em;
  padding-right: 15em;
}

#img-work {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 20em;
  overflow: hidden;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.8);
  transition: 0.2s ease-in-out;
  padding: none;
  margin: 0 0 2em 0;
  /* object-position: center botom; */
}

#img-obr {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 20em;
  overflow: hidden;
  object-fit: cover;
  /* filter: grayscale(0) brightness(1); */
  /* transition: 0.2s ease-in-out; */
  padding: none;
  /* margin: 0.1em; */
  /* object-position: center botom; */
}
/*fotos de nosotrosw*/
#img-obr2 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 45em;
  overflow: hidden;
  object-fit: cover;
  /* filter: grayscale(0) brightness(1); */
  /* transition: 0.2s ease-in-out; */
  padding: none;
  /* margin: 0.1em; */
  /* object-position: center botom; */
}
#img-obr3 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 40em;
  max-width: 60em;
  overflow: hidden;
  object-fit: cover;
  margin: 0 auto;
  /* filter: grayscale(0) brightness(1); */
  /* transition: 0.2s ease-in-out; */
  padding: none;
  /* margin: 0.1em; */
  /* object-position: center botom; */
}

.pano_img {
  filter: brightness(85%);
}

.logobola {
  width: 60px; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
  filter: drop-shadow (0.15em 0.15em 0.2em rgba(0, 0, 0, 0.5));
  /* shadow: 0.15em 0.15em 0.2em rgba(0, 0, 0, 0.5); */
}

.responsive-img {
  width: 100%; /* Allows image to scale with container width */
  height: auto; /* Maintains aspect ratio */
  object-fit: cover;
  max-width: 100%;
  display: block; /* Ensures the image covers the container */
}

#img-obr4 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 30em;
  overflow: hidden;
  object-fit: cover;
  /* filter: grayscale(0) brightness(1); */
  /* transition: 0.2s ease-in-out; */
  padding: none;
  margin: 0.1em;
  /* object-position: center botom; */
}

#img-work:hover {
  filter: brightness(1);
  transition: 0.2s ease-in-out;
}

.row {
  --bs-gutter-x: 0rem;
}
.row p {
  padding-left: 10rem;
  padding-right: 10rem;
  /* border-bottom: solid 1px rgba(255, 255, 255, 0.419); */
}

/* #img-work-pad {
    padding: 10em;
} */

#img-trabajos {
  max-height: 50em;
}

/* #obras {
    padding: 5em;
} */

/* #img-work:hover {
    max-height: 14em;
    filter: grayscale(0) brightness(1);
    transition: 0.3s ease-in-out;
} */

#fotowork {
  margin-top: 10em;
  transition: 0.3s ease-in-out;
}

#fotowork2 {
  margin-bottom: 13em;
  transition: 0.3s ease-in-out;
}

#fotowork3 {
  margin-bottom: 2em;
  transition: 0.3s ease-in-out;
}

#fotowork4 {
  margin-bottom: 1em;
  transition: 0.3s ease-in-out;
}

#pagina-work {
  padding: 0em 0em;
}

#pagina-work .row {
  display: flex;
  align-items: center;
  padding: 6em 4em 1em 4em;
  margin: 0 0 0 0;
  transition: 0.3s ease-in-out;
}

#pagina-work .row #more {
  text-align: center;
  padding: 0em 0 0 0;
  transition: 0.3s ease-in-out;
}

#more {
  padding: 2em 0 4em 0;
}

#img-work-pagina2 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 20em;
  overflow: hidden;
  object-fit: fill;
}

.nav-link {
  color: #12733a;
  /* background-color: #e15d2927; */
  font-weight: 300;
  border-radius: 30px;
  padding-left: 2em !important;
  padding-right: 2em !important;
}

#navi .navbar-brand {
  color: #12733a;
}

#navi .navbar-brand img {
  max-width: 4em;
}
#navi .logoindex img {
  margin-top: 1em;
  max-width: 9em;
}

#navi .logoindex2 img {
  max-width: 10em;
  margin-top: 1em;
}

.w-80 {
  width: 80%;
  padding-top: 1.8em;
}

.navbar .nav-link:hover {
  /* text-decoration: underline #ffffff 0.1px; */
  background-color: #e15d2927;
  color: #12733a;
  /* font-size: 1.35em; */
  transition: 0.3s ease-in-out;
  border-radius: 30px;
  padding-left: 2em;
  padding-right: 2em;
}

.navbar .nav-link {
  font-size: 1.1em;
}

nav {
  /* margin-top: 3em; */
  transition: 0.3s ease-in-out;
  border-bottom: none;
  /* border-bottom: 0.01em solid  #505858; */
}

#navi {
  padding-bottom: 2em;
}

.dropdown button,
.dropdown-menu,
.dropdown-menu .dropdown-item {
  color: rgb(0, 0, 0);
  font-weight: 100;
  font-size: 1em;
  border-radius: 0% !important;
  border: none !important;
  background-color: rgba(255, 255, 255, 0.13);
}

.dropdown button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #12733a;
  font-weight: 100;
}

.dropdown button:active,
.dropdown button:focus {
  color: rgba(255, 255, 255, 0.7);
}

.btn-secondary {
  --bs-btn-active-bg: rgba(0, 0, 0, 0.8);
  --bs-btn-active-color: rgba(255, 255, 255, 0.7);
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgb(255, 255, 255);
}

.dropdown-menu {
  padding: 0;
}

button {
  box-shadow: none;
  width: 25vw;
}

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
  border-radius: 0% !important;
  border: none !important;
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2818, 115, 58, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#news {
  border-bottom: 0.01em solid #213d34;
  padding-bottom: 0.5em;
}

header {
  background-color: #12733a;
  color: white;
  padding: 0em;
  text-align: center;
}

footer {
  background-color: #12733a;
  color: white;
  padding: 0px 0 40px 0;
  text-align: center;
}

.footer-content {
  max-width: 30em;
  margin: 0 auto;
  padding: 1em 0em;
  display: flex;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  margin: 0 0em;
}

/* .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */

.footer-links {
  list-style-type: none;
  padding: 0;
}

.footer-links li {
  /* display: inline; */
  margin: 0 0em;
}

.footer-links a {
  color: white;
  text-decoration: none;
}
.footer-links a:hover {
  /* text-decoration: underline; */
  font-size: 1em;
}

.social-media {
  margin-top: 10px;
}

.social-media a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

.social-media a:hover {
  /* text-decoration: underline; */
  font-size: 1em;
}

sup {
  font-size: smaller; /* Makes the superscript text smaller */
  vertical-align: super; /* Aligns it to the top */
  position: relative; /* Allows further positioning adjustments */
  top: -3px;
}

.move-left-up {
  top: 15%; /* Adjust to move up */
  left: 10%; /* Adjust to move left */
  /* transform: translate(-50%, -50%); */
}
.move-left-up2 {
  top: 15%; /* Adjust to move up */
  left: 30%; /* Adjust to move left */
  /* transform: translate(-50%, -50%); */
}

.left-section,
.right-section {
  display: flex;
  align-items: center;
}

.demopad {
  padding-left: 9em;
}

@media (max-width: 1720px) {
  #pagina-work .row {
    padding: 2em 1.5em 1em 1.5em;
    transition: 0.3s ease-in-out;
  }
  #pagina-work .row #more {
    text-align: center;
    padding: 1em 0 0 0;
    transition: 0.3s ease-in-out;
  }
  #fotowork2 {
    margin-bottom: 12em;
  }
}

@media (max-width: 1600px) {
  .text-miembro {
    padding: 5em 4em;
  }
  .text-miembro2 {
    padding: 1em 4em;
  }
  .row p {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  #pagina-work .row {
    padding: 2em 1.3em 1em 1.3em;
    transition: 0.3s ease-in-out;
  }
  #work .row {
    padding: 1em 7em;
    transition: 0.3s ease-in-out;
  }
  #fotowork2 {
    margin-bottom: 10em;
    transition: 0.3s ease-in-out;
  }
}

@media (max-width: 1200px) {
  .text-miembro {
    padding: 4em 3em;
  }
  .text-miembro2 {
    padding: 1em 3em;
  }
  .row p {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  #pagina-work .row {
    padding: 2em 1.2em 1em 1.2em;
    transition: 0.3s ease-in-out;
  }
  #work .row {
    padding: 1em 5em;
    transition: 0.3s ease-in-out;
  }
  #fotowork2 {
    margin-bottom: 7em;
    transition: 0.3s ease-in-out;
  }
  h6 {
    padding: 3em 1em 3em 1em;
    transition: 0.3s ease-in-out;
  }
}

@media (max-width: 992px) {
  #productstab {
    padding-left: 7em;
    padding-right: 7em;
  }
  h6 {
    padding: 3em 1em 3em 1em;
    transition: 0.3s ease-in-out;
  }
  .text-miembro {
    padding: 3em 2em;
  }
  .text-miembro2 {
    padding: 1em 2em;
  }
  .row p {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  #pagina-work .row {
    padding: 2em 1em 1em 1em;
    transition: 0.3s ease-in-out;
  }
  #work .row {
    padding: 1em 3em;
    transition: 0.3s ease-in-out;
  }
  #fotowork2 {
    margin-bottom: 5em;
    transition: 0.3s ease-in-out;
  }
}
  .demopad {
    padding-left: 0.5em;
    padding-right: 2em;
  }
}

@media (max-width: 768px) {
  .text-justify {
    padding: 2em 2em 2em 2em; /* Add padding for better readability */
  }
  .button-group {
    padding-top: 0em;
  }
  #img-prod {
    padding: 0em 0.5em 0.5em 0.5em;
  }
  #productstab {
    padding-left: 4em;
    padding-right: 4em;
  }
  h6 {
    padding: 2em 1em 2em 1em;
    transition: 0.3s ease-in-out;
  }
  #productstab {
    padding-left: 0em;
    padding-right: 0em;
  }

  .text-miembro {
    padding: 2em 1em;
  }
  .text-miembro2 {
    padding: 2em 1em;
  }
  .row p {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  #pagina-work .row {
    padding: 2em 1em 1em 1em;
    transition: 0.3s ease-in-out;
  }
  #fotowork {
    margin-top: 5em;
    transition: 0.3s ease-in-out;
  }
  #fotowork2 {
    margin-bottom: 3em;
    transition: 0.3s ease-in-out;
  }
}

@media (max-width: 576px) {
  #more {
    padding: 0em 0 3em 0;
  }
  .text-miembro {
    padding: 2em 0em;
  }
  .text-miembro {
    padding: 2em 0em;
  }
  .row p {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  #bioland {
    margin: 2em 0em 2em 0em;
    transition: 0.3s ease-in-out;
  }
  #obras {
    padding: 0em;
  }
  #navi {
    margin-top: 0em;
    margin-bottom: 0.5em;
    transition: 0.3s ease-in-out;
    padding-bottom: 1em;
  }
  /* .logo-home {
        display: none;
        transition: 0.3s ease-in-out;
    } */
  /* #navi .logoindex img{
        display: initial;
    } */
  h1 {
    font-size: 2.8em;
    transition: 0.3s ease-in-out;
  }
  h6 {
    padding: 2em 0.5em 2em 0.5em;
    transition: 0.3s ease-in-out;
  }
  p {
    padding: 3em;
    transition: 0.3s ease-in-out;
  }
  #work {
    padding: 1em 0 0 0;
  }
  #work .row {
    padding: 0.3em 1em;
  }
  #pagina-work .row {
    text-align: start;
    padding: 2em 1em 1em 1em;
    margin: 0 0 0 0;
    transition: 0.3s ease-in-out;
  }
  #fotowork {
    margin-top: 0em;
    margin-bottom: 0em;
    transition: 0.3s ease-in-out;
  }
  #fotowork2 {
    margin-bottom: 2em;
    transition: 0.3s ease-in-out;
  }
  #fotowork3 {
    margin-bottom: 0em;
    transition: 0.3s ease-in-out;
  }
  #fotowork4 {
    margin-bottom: 0em;
    transition: 0.3s ease-in-out;
  }
  #pagina-work .row #more {
    text-align: center;
    padding: 0;
    transition: 0.3s ease-in-out;
  }
  h1 {
    font-size: 2.4rem;
  }
  .category-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .demopad {
    padding-left: 0.5em;
    padding-right: 2em;
  }
  .w-80 {
    padding-top: 0em;
  }
  .mx-auto {
    margin-left: 0em !important;
  }
}

.d-flex.align-items-center {
  margin-bottom: 0em !important;
}

button {
  margin-top: 1em;
  width: 10vw;
}
