figure.profile-figure {
    font-family: 'Raleway', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    /*margin: 10px;*/
    /*min-width: 380px;*/
    /*max-width: 480px;*/
    width: 100%;
    background: #ffffff;
    color: #000000;
    border-radius:10px;
}

    figure.profile-figure * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    figure.profile-figure > img {
        top: 33px;
        width: 30%;
        border-radius: 50%;
        border: 4px solid #ffffff;
        -webkit-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        position: relative;
        float: right;
        right: -2%;
        z-index: 1;
    }

    figure.profile-figure figcaption {
        padding: 20px 30px 20px 20px;
        position: absolute;
        left: 0;
        width: 59%;
    }
        figure.profile-figure figcaption h2 {
            line-height: 21px;
        }
        figure.profile-figure figcaption h2,
        figure.profile-figure figcaption p {
            margin: 0;
            text-align: left;
            padding: 10px 0;
            width: 100%;
            
        }

        figure.profile-figure figcaption h2 {
            font-size: 1em;
            font-weight: 300;
            text-transform: uppercase;
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        }

            figure.profile-figure figcaption h2 span {
                font-weight: 800;
            }

        figure.profile-figure figcaption p {
            font-size: 0.9em;
            opacity: 0.8;
        }

        figure.profile-figure figcaption .icons {
            width: 100%;
            text-align: left;
        }

            figure.profile-figure figcaption .icons i {
                font-size: 26px;
                padding: 5px;
                top: 50%;
                color: #000000;
            }

        figure.profile-figure figcaption a {
            opacity: 0.3;
            -webkit-transition: opacity 0.35s;
            transition: opacity 0.35s;
        }

            figure.profile-figure figcaption a:hover {
                opacity: 0.8;
            }

    figure.profile-figure .position {
        width: 100%;
        text-align: left;
        padding: 8px 30px;
        font-size: 0.9em;
        opacity: 1;
        font-style: italic;
        color: #ffffff;
        background: #000000;
        clear: both;
    }

    figure.profile-figure.blue .position {
        background: #20638f;
    }

    figure.profile-figure.red .position {
        background: #962d22;
    }

    figure.profile-figure.yellow .position {
        background: #bf6516;
    }

    figure.profile-figure:hover > img,
    figure.profile-figure.hover > img {
        right: -1%;
    }

@media (min-width: 576px) and (max-width: 1376px) {
    figure.profile-figure figcaption {
        padding: 11px 21px 18px 10px;
    }
}
@media (min-width: 768px) and (max-width: 1199px) {
    figure.profile-figure figcaption p {
        display:none;
    }
}
