body {
  color: #101828;
}

.background-section {
  background-image: url("./img/bg-pattern.png"); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  padding-bottom: 100px; 
  height: 100vh;
}

.navbar-nav li {
  color: #475467;
}

.hero-description {
  color: #475467;
}

.rounded-image {
  border-radius: 15px;
  width: 100%;
  height: 500px;
  object-fit: cover; /* Ajusta la imagen para cubrir todo el contenedor */
}

/* Estilo para el título y la descripción */
.section-title,
.section-description {
  text-align: center;
}

.square-image {
  border-radius: 8px;
  object-fit: cover;
  width: 500px;
  height: 500px;
}

.quienes-somos {
  text-align: left;
  h5 {
    color: #e31b54;
    font-size: 16px;
  }
  p {
    color: #475467;
  }
}

.quienes-somos-descripcion {
  .borde-seccion {
    padding-left: 1em;
    border-left: 2px solid red;
  }
  h5 {
    font-size: 20px;
  }
  p {
    color: #475467;
    font-size: 16px;
    padding-left: 1.3em;
  }
}

/* Drop Down Menu */

@media (max-width: 992px) {
  .dropdown-menu {
    border: none;
    .dropdown-item {
      width: fit-content;
      margin: 0 auto;
    }
  }
}

/* Servicios */

.option-wrapper {
  display: flex;
  margin: 1em 0;
  img {
    margin-right: 1em;
  }
  .title-wrapper {
    h5 {
      font-size: 20px;
    }
    p {
      color: #475467;
      font-size: 16px;
    }
  }
}

/* Square Image */

@media (max-width: 992px) {
  .square-image {
    width: 100%;
    height: 100%;
  }
}

/*Map section*/

  .map-container {
    height: 400px;
    width: 100%;
}

.contact-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}
.contact-form h2 {
  color: #333;
}
.contact-form .btn {
  background-color: #ff0055;
  color: #fff;
  width: 100%;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.footer {
  background-color: #2c2c2c;
  color: #ccc;
  text-align: center;
  padding: 1rem;
}
.footer p {
  margin: 0;
}

.features-section {
  background-color: #F9FAFB;
  padding: 2rem 0;
  h5 {
    color: #101828;
  }
}
.features-section .feature {
  text-align: center;
  padding: 1rem;
}
.feature-text {
  color: #475467;
}