/**********************************/
/********** General CSS ***********/
/**********************************/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: 'Lato', sans-serif;
    color: #454545;
    font-weight: 300;
    background: #202225;
}

a {
    color: #fff;
    font-weight: 400;
    outline: none;
    text-decoration: none;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 15px 0;
    color: #2f3136;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0 0 15px 0;
    color: #2f3136;
    font-weight: 700;
    
}

h1 {
    font-weight: 900;
}

img {
    width: 100%;
    height: auto;
}



/**********************************/
/***** Layout & Section Title *****/
/**********************************/
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.column {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .column {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .column {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 992px) {
    .column {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.section-title {
    width: 100%;
    text-align: center;
    padding: 45px 0 30px 0;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 5px;
    left: calc(50% - 25px);
    background: #fff;
}

.section-title h1 {
    color: #fff;
    font-size: 50px;
    letter-spacing: 5px;
    margin-bottom: 5px;
}

@media(max-width: 767.98px) {
    .section-title h1 {
        font-size: 40px;
        letter-spacing: 3px;
    }
}

@media(max-width: 567.98px) {
    .section-title h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
}



/**********************************/
/********** Team #1 Style *********/
/**********************************/
.team-1 {
    margin-bottom: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.team-1 .team-img {
    overflow: hidden;
}

.team-1 .team-img img {
    width: 100%;
    height: auto;
    transition: all .3s;
}

.team-1:hover .team-img img {
    transform: scale(1.2);
}

.team-1 .team-content {
    padding: 20px;
	background-color: white;
}

.team-1 .team-content h2 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
}

.team-1 .team-content h3 {
    font-size: 16px;
    font-weight: 300;
}

.team-1 .team-content h4 {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.team-1 .team-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.team-1 .team-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0;
}

.team-1 .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    transition: all .3s;
}

.team-1 .team-social a.social-tw {
    background: #00acee;
}

.team-1 .team-social a.social-twi {
    background: #6441a5;
}

.team-1 .team-social a.social-sp {
    background: #1db954;
}

.team-1 .team-social a.social-dc {
    background: #7289DA;
}

.team-1 .team-social a.social-fb {
    background: #3b5998;
}

.team-1 .team-social a.social-li {
    background: #0e76a8;
}

.team-1 .team-social a.social-in {
    background: #3f729b;
}

.team-1 .team-social a.social-yt {
    background: #c4302b;
}

.team-1 .team-social a:last-child {
    margin-right: 0;
}

.team-1 .team-social a:hover {
    background: #222222;
}



/**********************************/
/********** Team #2 Style *********/
/**********************************/
.team-2 {
    text-align: center;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.team-2 .team-img {
    position: relative;
    font-size: 0;
    border-radius: 5px 5px 0 0;
}

.team-2 .team-img img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
}

.team-2 .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .5);
    transition: all .3s;
    font-size: 0;
    z-index: 1;
    opacity: 0;
}

.team-2:hover .team-social {
    opacity: 1;
}

.team-2 .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    border-radius: 5px;
    transition: all .3s;
    margin-top: 50px;
}

.team-2 .team-social a.social-tw {
    background: #00acee;
}

.team-2 .team-social a.social-fb {
    background: #3b5998;
}

.team-2 .team-social a.social-li {
    background: #0e76a8;
}

.team-2 .team-social a.social-in {
    background: #3f729b;
}

.team-2 .team-social a.social-yt {
    background: #c4302b;
}

.team-2 .team-social a:last-child {
    margin-right: 0;
}

.team-2:hover .team-social a {
    margin-top: 0;
}

.team-2 .team-social a:hover {
    color: #222222;
    background: #ffffff;
}

.team-2 .team-content {
    padding: 20px;
}

.team-2 .team-content h2 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
}

.team-2 .team-content h3 {
    font-size: 16px;
    font-weight: 300;
}

.team-2 .team-content h4 {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.team-2 .team-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}



/**********************************/
/********* Team #3 Style **********/
/**********************************/
.team-3 {
    margin-bottom: 30px;
}

.team-3 .team-img {
    position: relative;
    font-size: 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.team-3 .team-img img {
    width: 100%;
    height: auto;
}

.team-3 .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .5);
    transition: all .3s;
    font-size: 0;
    z-index: 1;
    opacity: 0;
}

.team-3:hover .team-social {
    opacity: 1;
}

.team-3 .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    transition: all .3s;
    margin-top: 50px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.team-3 .team-social a.social-tw {
    background: #00acee;
}

.team-3 .team-social a.social-fb {
    background: #3b5998;
}

.team-3 .team-social a.social-li {
    background: #0e76a8;
}

.team-3 .team-social a.social-in {
    background: #3f729b;
}

.team-3 .team-social a.social-yt {
    background: #c4302b;
}

.team-3 .team-social a:last-child {
    margin-right: 0;
}

.team-3:hover .team-social a {
    margin-top: 0;
}

.team-3 .team-social a:hover {
    color: #222222;
    background: #ffffff;
}

.team-3 .team-content {
    padding: 70px 20px 20px 20px;
    margin-top: -50px;
    text-align: center;
    background: #f3f4fa;
    transition: all .5s;
}

.team-3:hover .team-content {
    background: #222222;
}

.team-3:hover .team-content h2,
.team-3:hover .team-content h3,
.team-3:hover .team-content h4,
.team-3:hover .team-content p {
    color: #ffffff;
}

.team-3 .team-content h2 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
}

.team-3 .team-content h3 {
    font-size: 16px;
    font-weight: 300;
}

.team-3 .team-content h4 {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.team-3 .team-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}



/**********************************/
/********* Team #4 Style **********/
/**********************************/
.team-4 {
    margin-bottom: 30px;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.team-4:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.team-4 .team-img {
    position: relative;
    font-size: 0;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transition: all .3s;
}

.team-4:hover .team-img {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
}

.team-4 .team-img img {
    width: 100%;
    height: auto;
}

.team-4 .team-img .team-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    transition: all .6s;
    z-index: 1;
    opacity: 0;
}

.team-4 .team-img .team-content p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    margin: 0;
}

.team-4:hover .team-img .team-content {
    opacity: 1;
}

.team-4 .team-content {
    padding: 20px;
    text-align: center;
}

.team-4 .team-content h2 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
}

.team-4 .team-content h3 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
}

.team-4 .team-social {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-4 .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    transition: all .3s;
}

.team-4 .team-social a.social-tw {
    background: #00acee;
}

.team-4 .team-social a.social-fb {
    background: #3b5998;
}

.team-4 .team-social a.social-li {
    background: #0e76a8;
}

.team-4 .team-social a.social-in {
    background: #3f729b;
}

.team-4 .team-social a.social-yt {
    background: #c4302b;
}

.team-4 .team-social a:last-child {
    margin-right: 0;
}

.team-4 .team-social a:hover {
    color: #ffffff;
    background: #222222;
}



/**********************************/
/********* Team #5 Style **********/
/**********************************/
.team-5 {
    margin-bottom: 30px;
}

.team-5 .team-img {
    position: relative;
    font-size: 0;
    text-align: center;
}

.team-5 .team-img img {
    width: 160px;
    height: auto;
    border-radius: 100%;
    border: 20px solid #f3f4fa;
}

.team-5 .team-content {
    padding: 80px 20px 20px 20px;
    margin-top: -80px;
    text-align: center;
    background: #f3f4fa;
    border-radius: 10px;
}

.team-5 .team-content h2 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
}

.team-5 .team-content h3 {
    font-size: 16px;
    font-weight: 300;
}

.team-5 .team-content h4 {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.team-5 .team-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.team-5 .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 35px;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .6);
    transition: all .3s;
    font-size: 0;
    z-index: 1;
    opacity: 0;
}

.team-5:hover .team-social {
    opacity: 1;
}

.team-5 .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    border-radius: 10px;
    transition: all .3s;
    margin-top: 50px;
}

.team-5 .team-social a.social-tw {
    background: #00acee;
}

.team-5 .team-social a.social-fb {
    background: #3b5998;
}

.team-5 .team-social a.social-li {
    background: #0e76a8;
}

.team-5 .team-social a.social-in {
    background: #3f729b;
}

.team-5 .team-social a.social-yt {
    background: #c4302b;
}

.team-5 .team-social a:last-child {
    margin-right: 0;
}

.team-5:hover .team-social a {
    margin-top: 0;
}

.team-5 .team-social a:hover {
    background: #222222;
}



/**********************************/
/********* Team #6 Style **********/
/**********************************/
.team-6 {
    margin-bottom: 30px;
}

.team-6 .team-img {
    position: relative;
    font-size: 0;
    text-align: center;
    border-radius: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.team-6 .team-img img {
    width: 100%;
    height: auto;
    border-radius: 100%;
    border: 15px solid #f3f4fa;
    transition: all .3s;
}

.team-6:hover .team-img img {
    border: 0px solid #f3f4fa;
}

.team-6 .team-content {
    text-align: center;
}

.team-6 .team-content h2 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.team-6 .team-content h3 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom:30px;
}

.team-6 .team-social {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.team-6 .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 12px 0 10px 0;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    border-radius: 100%;
    transition: all .3s;
}

.team-6 .team-social a.social-tw {
    background: #00acee;
}

.team-6 .team-social a.social-fb {
    background: #3b5998;
}

.team-6 .team-social a.social-li {
    background: #0e76a8;
}

.team-6 .team-social a.social-in {
    background: #3f729b;
}

.team-6 .team-social a.social-yt {
    background: #c4302b;
}

.team-6 .team-social a:last-child {
    margin-right: 0;
}

.team-6 .team-social a:hover {
    background: #222222;
}



/**********************************/
/********* Team #7 Style **********/
/**********************************/
.team-7 {
    margin-bottom: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.team-7 .team-img {
    position: relative;
    font-size: 0;
}

.team-7 .team-img img {
    width: 100%;
    height: auto;
}

.team-7 .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .5);
    transition: all .3s;
    font-size: 0;
    z-index: 1;
    opacity: 0;
}

.team-7:hover .team-social {
    opacity: 1;
}

.team-7 .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    transition: all .3s;
    margin-top: 50px;
}

.team-7 .team-social a.social-tw {
    background: #00acee;
}

.team-7 .team-social a.social-fb {
    background: #3b5998;
}

.team-7 .team-social a.social-li {
    background: #0e76a8;
}

.team-7 .team-social a.social-in {
    background: #3f729b;
}

.team-7 .team-social a.social-yt {
    background: #c4302b;
}

.team-7 .team-social a:last-child {
    margin-right: 0;
}

.team-7:hover .team-social a {
    margin-top: 0;
}

.team-7 .team-social a:hover {
    color: #222222;
    background: #ffffff;
}

.team-7 .team-content {
    padding: 20px;
}

.team-7 .team-content h2 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
}

.team-7 .team-content h3 {
    font-size: 16px;
    font-weight: 300;
}

.team-7 .team-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.team-7 .team-skill {
}

.team-7 .skill-name {
    margin-bottom: 5px;
}

.team-7 .skill-name p {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.team-7 .skill-name p:last-child {
    float: right;
}

.team-7 .progress {
    position: relative;
    width: 100%;
    height: 15px;
    margin-bottom: 15px;
    background: #dddddd;
}

.team-7 .progress:last-child {
    margin: 0;
}

.team-7 .progress-bar {
    position: absolute;
    width: 0%;
    height: 15px;
    top: 0;
    left: 0;
    background: #454545;
    transition: all .5s;
    z-index: 1;
}

.team-7:hover .progress-bar.w-70 {
    width: 70%;
}

.team-7:hover .progress-bar.w-75 {
    width: 75%;
}

.team-7:hover .progress-bar.w-80 {
    width: 80%;
}

.team-7:hover .progress-bar.w-85 {
    width: 85%;
}

.team-7:hover .progress-bar.w-90 {
    width: 90%;
}

.team-7:hover .progress-bar.w-95 {
    width: 95%;
}

.team-7:hover .progress-bar.w-100 {
    width: 100%;
}



/**********************************/
/********* Team #8 Style **********/
/**********************************/
.team-8 {
    margin-bottom: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.team-8 .team-img {
    position: relative;
    font-size: 0;
}

.team-8 .team-img img {
    width: 100%;
    height: auto;
}

.team-8 .team-img .team-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    transition: all .6s;
    z-index: 1;
    opacity: 0;
}

.team-8 .team-img .team-content p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    text-align: center;
    margin: 0;
}

.team-8:hover .team-img .team-content {
    opacity: 1;
}

.team-8 .team-content {
    padding: 20px;
}

.team-8 .team-content h2 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
}

.team-8 .team-content h3 {
    font-size: 16px;
    font-weight: 400;
}

.team-8 .team-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.team-8 .team-skill {
    margin-bottom: 20px;
}

.team-8 .skill-name {
    margin-bottom: 5px;
}

.team-8 .skill-name p {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.team-8 .skill-name p:last-child {
    float: right;
}

.team-8 .progress {
    position: relative;
    width: 100%;
    height: 15px;
    margin-bottom: 15px;
    background: #dddddd;
}

.team-8 .progress:last-child {
    margin: 0;
}

.team-8 .progress-bar {
    position: absolute;
    width: 0%;
    height: 15px;
    top: 0;
    left: 0;
    background: #454545;
    transition: all .5s;
    z-index: 1;
}

.team-8:hover .progress-bar.w-70 {
    width: 70%;
}

.team-8:hover .progress-bar.w-75 {
    width: 75%;
}

.team-8:hover .progress-bar.w-80 {
    width: 80%;
}

.team-8:hover .progress-bar.w-85 {
    width: 85%;
}

.team-8:hover .progress-bar.w-90 {
    width: 90%;
}

.team-8:hover .progress-bar.w-95 {
    width: 95%;
}

.team-8:hover .progress-bar.w-100 {
    width: 100%;
}

.team-8 .team-social {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-8 .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    transition: all .3s;
}

.team-8 .team-social a.social-tw {
    background: #00acee;
}

.team-8 .team-social a.social-fb {
    background: #3b5998;
}

.team-8 .team-social a.social-li {
    background: #0e76a8;
}

.team-8 .team-social a.social-in {
    background: #3f729b;
}

.team-8 .team-social a.social-yt {
    background: #c4302b;
}

.team-8 .team-social a:last-child {
    margin-right: 0;
}

.team-8 .team-social a:hover {
    color: #ffffff;
    background: #222222;
}



/**********************************/
/********* Team #9 Style **********/
/**********************************/
.team-9 {
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.team-9:hover {
    transform: rotateY(180deg);
}

.team-9 .team-img {
    position: relative;
    font-size: 0;
    text-align: center;
    margin-bottom: 30px;
}

.team-9 .team-img img {
    width: 100%;
    height: auto;
    border-radius: 100%;
}

.team-9 .team-content {
    text-align: center;
}

.team-9 .team-content h2 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.team-9 .team-content h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.team-9 .team-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #ffffff;
    border-radius: 5px;
    transform: rotateY(180deg);
}

.team-9 .team-overlay p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.team-9 .team-social {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.team-9 .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    border-radius: 100%;
    transition: all .3s;
}

.team-9 .team-social a.social-tw {
    background: #00acee;
}

.team-9 .team-social a.social-fb {
    background: #3b5998;
}

.team-9 .team-social a.social-li {
    background: #0e76a8;
}

.team-9 .team-social a.social-in {
    background: #3f729b;
}

.team-9 .team-social a.social-yt {
    background: #c4302b;
}

.team-9 .team-social a:last-child {
    margin-right: 0;
}

.team-9 .team-social a:hover {
    background: #222222;
}



/**********************************/
/********* Team #10 Style *********/
/**********************************/
.team-10 {
    text-align: center;
    margin-bottom: 30px;
    border-radius: 5px;
}

.team-10 .team-img {
    border-radius: 5px;
    overflow: hidden;
}

.team-10 .team-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.team-10 .team-content {
    position: relative;
    width: 90%;
    padding: 20px;
    margin: -60px auto 0 auto;
    background: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 5px;
}

.team-10:hover .team-content {
    transform: rotateY(180deg);
}

.team-10 .team-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #ffffff;
    border-radius: 5px;
    transform: rotateY(180deg);
}

.team-10 .team-content h2 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
}

.team-10 .team-content h3 {
    font-size: 16px;
    font-weight: 300;
}

.team-10 .team-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.team-10 .team-social {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.team-10 .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    border-radius: 5px;
    transition: all .3s;
}

.team-10 .team-social a.social-tw {
    background: #00acee;
}

.team-10 .team-social a.social-fb {
    background: #3b5998;
}

.team-10 .team-social a.social-li {
    background: #0e76a8;
}

.team-10 .team-social a.social-in {
    background: #3f729b;
}

.team-10 .team-social a.social-yt {
    background: #c4302b;
}

.team-10 .team-social a:last-child {
    margin-right: 0;
}

.team-10 .team-social a:hover {
    background: #222222;
}