.sobre-mi {
    background-color: white;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-image: radial-gradient(#474bff 1px, transparent 1px);
    background-size: 21px 21px;
    padding: 5%;
    gap: 30px;
}

/* fila 1 */

/* .row-title-sobre-mi
{
}
*/

.title-sobre-mi {
    text-align: center;
    font-size: 5rem;
    font-style: italic;
    font-weight: bold;
}

/* fila 2 */

.row-sobre-mi {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.gradiant-border {
    padding: 0.3%;
    width: 30%;
    height: 100%;
    background: linear-gradient(160deg, rgba(0, 0, 0, 1) 0%, #0071bd 50%, rgba(0, 0, 0, 1) 100%);
    border-radius: 15px;
}

.card-sobre-mi {
    color: black;
    padding: 5%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background-color: white;
    min-height: 100%;
    height: 25rem;
    -webkit-box-shadow: 10px 10px 25px 3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 25px 3px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 25px 3px rgba(0, 0, 0, 0.75);
    overflow: hidden;
}

.card-title-sobre-mi {
    text-align: center;
    font-size: 2rem;
    font-style: italic;
    font-weight: bold;
}

.card-text-sobre-mi {
    font-size: 1.2rem;
}

/* fila 3 */

.row-sobre-mi-trayectoria
{
    display: flex;
    justify-content: center;
}

.gradiant-border-logros {
    padding: 0.3%;
    width: 80%;
    height: auto;
    background: linear-gradient(160deg, rgba(0, 0, 0, 1) 0%, #0071bd 50%, rgba(0, 0, 0, 1) 100%);
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
}


.container-card-data-logros {
    color: black;
    padding: 2%;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 15px;
    -webkit-box-shadow: 10px 10px 25px 3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 25px 3px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 25px 3px rgba(0, 0, 0, 0.75);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    justify-content: space-around;
    gap: 20px;
}

.container-card-data-medallas
{
    display: flex;
    justify-content: space-around;
}

.card-logros
{
    text-align: center;
    min-width: 30%;
}


.card-data-logros
{
    display: flex;
    justify-content: space-around;
}

.img-logros{
    height: 70px;
    opacity: 0.7;
    transition: 1s;
}

.img-logros:hover
{
    cursor: pointer;
    transition: 1s;
    opacity: 1;
}



@media screen and (min-width: 180px) and (max-width: 1280px) {
    .sobre-mi {
        height: 100%;
        justify-content: space-around;
    }

    .card-sobre-mi
    {
        height: auto;
        padding: 5%;
        text-align: center;
    }

    .title-sobre-mi {
        padding: 5% 1%;
    }

    .row-sobre-mi {
        flex-direction: column;
        justify-content: center;
        gap: 50px;
    }

    .gradiant-border {
        width: 100%;
    }

    .gradiant-border-logros {
        margin: 5% 0%;
        padding: 0.3%;
        width: 100%;
    }

    .card-logros {
        padding: 2%;
        width: 100%;
        height: 100%;
        background-color: white;
        border-radius: 15px;
    }

    .container-card-data-medallas
    {
        flex-direction: column;
    }


}