﻿/*Nuestro equipo*/
.main .nuestro-equipo {
    position: relative;
    height: 100vh;
    background-color: #000;
}

    .main .nuestro-equipo .contenedor {
        width: 100%;
        height: 100vh;

    }

    .main .nuestro-equipo .equipo {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

        .main .nuestro-equipo .equipo .persona-equipo {
            background: #000;
            background-image: url(../img/logotipo_barras.png);
            background-position: bottom;
            background-repeat: no-repeat;
            background-size: contain;
            border-radius: 15px;
            margin-left: 25px;
            margin-bottom: 25px;
            padding: 10px 0px 0px 0px;
            width: 220px;
            height: 220px;
            box-shadow: 0px 2px 20px 2px rgba(255,255,255,0.9);
            text-align: center;
        }

            .main .nuestro-equipo .equipo .persona-equipo:first-child, .main .nuestro-equipo .equipo .persona-equipo:last-child {
                position: relative;
            }

            .main .nuestro-equipo .equipo .persona-equipo .foto {
                width: 100%;
                max-width: 500px;
                display: inline-block;
                margin-bottom: 5px;
            }

                .main .nuestro-equipo .equipo .persona-equipo .foto img {
                    width: 80px;
                    height: 80px;
                    border-radius: 20%;
                }

    .main .nuestro-equipo .contenedor .titulo-seccion {
        width: 100%;
        text-align: center;
    }

        .main .nuestro-equipo .contenedor .titulo-seccion h2 {
            width: 100%;
            font-size: 3rem;
            font-weight: 700;
            font-weight: normal;
            color: #B78549;
            padding: 80px 0px 0px 0px;
        }

        .main .nuestro-equipo .contenedor .titulo-seccion p {
            width: 100%;
            color: #fff;
            text-align: center;
            font-weight: normal;
        }



    .main .nuestro-equipo .equipo .persona-equipo .texto h3 {
        font-size: 1.3rem;
        font-weight: 500;
        color: #B78549;
    }

    .main .nuestro-equipo .equipo .persona-equipo .texto h4 {
        color: #fff;
        font-size: 0.8rem;
        font-weight: 400;
    }

    .main .nuestro-equipo .equipo .persona-equipo .texto p {
        color: #979797;
        font-size: 0.7rem;
        font-weight: 400;
    }
