﻿.teamProfile
{
    border: solid 1px var(--kawanaNavyBlue);
    padding: 2vw;
    border-radius: 2vw;
    background-color: white;
    width: 60vw;
    box-sizing: border-box;
    margin: 2.5vw;
}
    .teamProfile .image
    {
        width: 28%;
    }
    .teamProfile .profile
    {
        width: 69%;
    }
        .teamProfile .profile p
        {
            height: 20vw;
            overflow: hidden;
            margin-bottom: 0;
        }
    .teamProfile .image img
    {
        border-radius: 50%;
    }
    .teamProfile h3
    {
        font-size: 1em;
        font-weight: 600;
        color: var(--kawanaNavyBlue);
    }

.meetTheTeamSlidePrev,
.meetTheTeamSlideNext
{
    position: absolute;
    top: 45%;
    border: solid 2px #002664;
    text-align: center;
    border-radius: 50%;
    display: block;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 2;
    width: 1.7em;
    height: 1.7em;
    line-height: 1.85em;
    background-color: white;
}

.meetTheTeamSlidePrev
{
    left: 6%;
}

.meetTheTeamSlideNext
{
    right: 6%;
}
@media (min-width: 1280px)
{
    .teamProfile
    {
        padding: 25.6px;
        border-radius: 25.6px;
        width: 768px;
        margin: 32px;
    }

        .teamProfile .profile p
        {
            height: 256px;
        }
}