

/*         NUEVOS CAMBIOS reCAPTCHA */
body{
    color: white;
}

a {
    text-decoration: none;
}

footer a{
    color: white;
}




.legal{
    margin-top: 15px;
    margin-bottom: 10px;
}

.legal a{
    margin-left: 15px;
}

.legal-google{
    margin-bottom: 30px;
}

.services{
    color: black;
}


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

.text-purple{
    color: #827AC5;
}

/* general */
.container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.container {
    box-sizing: border-box;
}


@media (min-width: 576px){
    .container{
        max-width: 540px;
    }
}

@media (min-width: 768px){
    .container{
        max-width: 720px;
    }
}

@media (min-width: 992px){
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px){
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px){
    .container{
        max-width: 1320px;
    }
}

.mb-20 {
    margin-bottom: 6rem!important;
}

.mt-20 {
    margin-top: 6rem!important;
}


.mb-5 {
    margin-bottom: 3rem!important;
}

.mt-5 {
    margin-top: 3rem!important;
}

.mt-4 {
    margin-top: 1.5rem!important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}




/* solo para technology*/


.technology-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Permite que los elementos se envuelvan (caigan) cuando no hay suficiente espacio */
}
.technology {
    text-align: center;
    margin: 20px;
    flex: 1 1 200px; /* Hace que los miembros del equipo ocupen al menos 200px y se expandan según haya más espacio disponible */
}
.technology img {
    width: 100%; /* Ajusta el ancho de la imagen al 100% del contenedor */
    max-width: 50px; /* Establece un máximo de 150px para las imágenes */
    height: auto; /* Mantiene la proporción del aspecto de la imagen */
}
.technology h2 {
    margin-top: 10px;
    font-size: 1em;
    margin-bottom: 2px;
}
.technology h3 {
    margin-top: 1px;
    font-size: 0.8em;
}
@media (max-width: 768px) {
    .technology {
        flex-basis: 100%; /* Establece el ancho del miembro del equipo al 100% en pantallas más pequeñas */
    }
}

