#our-team {
    overflow: auto;
    padding: 3em;
    border-left: 1em solid var(--color-primary-400);

    h2 {
        margin-top: 0;
    }

    .employees {
        display: flex;
        gap: 3em;
        width: fit-content;
        flex-wrap: wrap;
        margin-top: 50px;

        .employee {
            width: 300px !important;
            justify-content: flex-start;
            flex: 1 0 20%;

            .employee-header {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 100%;

                .employee-picture {
                    height: 200px;
                    border-radius: 50%;
                }

                .employee-name {
                    font-size: 1.1em;
                    text-align: center;

                    width: 100%;
                    color: white;
                    margin: 1em -1em 0 -1em;
                    padding: 10px;
                }
            }

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


