html{
    height: 100%;
}
body{
    height: 100%;
}
.w_item_person{
    padding-top: 50px;
    height: 100%;
}
.item_person{
    height: 100%;
    overflow: auto;
    border-bottom: 10px solid #2e3192;
    position: relative;
    padding-bottom: 30px;
    opacity: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.item_person.active{
    opacity: 1;
}
.item_person .wrap_left{
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transform: translate(-100px, 0);
    -moz-transform: translate(-100px, 0);
    -ms-transform: translate(-100px, 0);
    -o-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
}
.item_person.active .wrap_left{
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.item_person:after{
    position: absolute;
    content: '';
    top: 130px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f6f6f6;
}
.item_person .wrapper{
    position: relative;
    z-index: 1;
}
.item_person .i-img{
    max-width: 380px;
    margin-bottom: 15px;
    overflow: hidden;
}
.item_person .i-img a{
    display: block;
    padding-top: 100%;
    overflow: hidden;
    position: relative;
}
.item_person .i-img a img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.item_person .i-desc{
    padding-top: 20px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transform: translate(0, 50px);
    -moz-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    -o-transform: translate(0, 50px);
    transform: translate(0, 50px);
}
.item_person.active .i-desc{
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.item_person .i-name{
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 5px;
}
.item_person .i-position{
    color: #2e3192;
    margin-bottom: 5px;
}
.item_person .w-desc{
    height: 130px;
}
.share_social{
    text-transform: uppercase;
    color: #333333;
}
.share_social a{
    font-size: 18px;
    line-height: 30px;
    padding: 0 10px;
    color: #666666;
}
.share_social a:hover{
    color:#2e3192;
}
.change_arrow{
    z-index: 10;
    position: absolute;
    top: 40px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: #f6f6f6;
    font-size: 20px;
    line-height: 25px;
    padding: 10px;
    text-align: center;
}
.change_arrow:hover{
    background: #2e3192;
    color: #ffffff;
}
.change_arrow:after{
    font-family: FontAwesome;
    font-size: inherit;
    line-height: inherit;
    font-weight: normal;
}
.arrow_left{
    right: 62px;
}
.arrow_left:after{
    content: '\f177';
}
.arrow_right:after{
    content: '\f178';
}
.w_arrow_mb{
    display: none;
    position: absolute;
    top: 40px;
    left: 15px;
    right: 15px;
}
@media screen and (max-width: 991px){
    .w_item_person{
        padding-top: 100px;
    }
    .item_person .change_arrow{
        display: none;
    }
    .w_arrow_mb{
        display: block;
    }
    .w_arrow_mb .change_arrow{
        top: 0;
        right: auto;
        left: 0;
    }
    .w_arrow_mb .arrow_right{
        left: 47px;
    }
}
@media screen and (max-width: 639px){
    .item_person .w-desc{
        height: auto;
    }
}