#logosize {
    width: 85%;
}

#banner-right {
width: 120%;
}

#sobre-nosotros {
width: 700px; 
height: auto;
margin-left: -200px;
}
#about-us-text {
margin-left: 225px;
margin-top: -200px;
}
.logo-container {
    width: 282px;
    height: 74px;
    border-radius: 10px; /* Ajusta este valor según lo redondeado que quieras los bordes */
    background-color: #ffffff; /* Fondo blanco */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-left: -45px;
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px; /* Ajusta este valor para asegurarte de que la imagen tenga bordes redondeados */
}

/* Imagenes de ultima sección */
.event_box {
    background-color: #EBF2F9;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
  }

  .thumb img {
    width: 80%;
    border-radius: 10%;
    margin-left: 30px;
  }

  .down-content {
    text-align: center;
  }

  .down-content h4 {
    margin: 0;
  }

  .down-content a:hover {
    color: #2994bc;
  }

  .radio {
    width: 3% !important;
    height: 15px !important;
  }

  #imagenform {
    width: 10%;
  }

  .logoredes {
    display: flex;
    margin-right: 5px;
    justify-content: center;
}

.contacto label {
  color: #ffffff;
}

/*Contenido de Seccion Servicios*/
.contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; /* Ajustar el espacio entre los grupos de imágenes */
  margin-bottom: 60px;
}

.grupo {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px; /* Ancho máximo del grupo de imágenes */
  margin-bottom: 20px; /* Espacio entre grupos */
}

.item-servicios {
  flex: 1;
  max-width: 300px;
  margin: 10px;
  text-align: center;
  display: flex; /* Cambio 1: Establecemos el contenedor del ítem como un flexbox */
}

.item-servicios img {
  max-width: 60%;
  height: auto;
  width: 100%; /* Asegura que la imagen ocupe todo el espacio disponible en su contenedor */
  object-fit: cover; /* Mantiene las proporciones de la imagen sin distorsionar */
}


.item-servicios p {
  flex: 1; /* Cambio 3: El texto también tomará todo el espacio disponible */
  margin-left: 10px; /* Cambio 4: Añadimos un margen izquierdo para separar la imagen del texto */
  color: #1A0423;
}

@media (max-width: 992px){
  .item-servicios {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 10px; /* Espacio entre las imágenes */
  }
}