@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.nuestro_equipo_cont
{
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.grid_contenedor_team
{
    width: 100%;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3,20vw);
    grid-template-rows: repeat(4,auto);
    grid-gap: 3vw;
}

.grid_contenedor_team div 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.grid_contenedor_team div img 
{
    width: 12vw;
    height: 12vw;
    object-fit: cover;
    border-radius: 50%;
}

.grid_contenedor_team div h1, .grid_contenedor_team div h2, .grid_contenedor_team div p, .nuestro_equipo_cont h1, .nuestro_equipo_cont h3
{
    font-family: Montserrat, sans-serif;
    color: #999;
}

.grid_contenedor_team div h1
{
    color: #3c4858;
    font-style: italic;
    margin: 0;
    margin-top: 15px;
    font-size: 1vw;
}

.grid_contenedor_team div h2
{
    color: #777;
    font-size: 0.8vw;
    font-weight: 400;
}

.grid_contenedor_team div p
{
    font-size: 1.2vw;
    font-weight: 400;
    /*padding: 0 30px 0 30px;*/
    color: #5B5B5B;
}

.nuestro_equipo_cont h1
{
    color: #3c4858;
    font-size: 25px;
    font-weight: 700;
    font-family: Montserrat;
    margin: 0;
    text-transform: uppercase;
}

.nuestro_equipo_cont h3
{
    font-weight: 400;
    font-size: 1vw;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 50px;
}


.grid_dos div:nth-child(1) img
{
    object-position: 0% 20%;
}


@media screen and (max-width:768px)
{

    .grid_contenedor_team
    {
        grid-gap: 15vw;
        grid-template-columns: repeat(2,40vw);
        grid-template-rows: repeat(3,auto);
        align-items: start;
    }

    .grid_contenedor_team div img 
    {
        width: 35vw;
        height: 35vw;
        margin: auto;
    }

    .grid_contenedor_team div h1
    {
        font-size: 13px;
    }

    .grid_contenedor_team div h2
    {
        color: #777;
        font-size: 12px;
        font-weight: 400;
    }

    .grid_contenedor_team div p
    {
        font-size: 14px;
        font-weight: 200;
    }

    .nuestro_equipo_cont h1
    {
        font-weight: 700;
        font-size: 5vw;
        margin-top: 100px;
    }

    .nuestro_equipo_cont h3
    {
        font-weight: 400;
        font-size: 3vw;
    }

    
}