// team
.team-title-4{
    text-align: right;
    padding-top: 140px;
    padding-bottom: 80px;
    margin-right: 0;
    .title{
        background: linear-gradient(92deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: Hanken Grotesk;
        font-size: 140px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 4.2px;
        text-transform: uppercase;
        @media #{$laptop-device} {
            font-size: 90px;
        }
        @media #{$smlg-device} {
            font-size: 70px;
        }
        @media #{$sm-layout} {
            font-size: 36px;
        }
    }
}

.single-team-style-one{
    position: relative;
    overflow: hidden;
    z-index: 1 !important;
    .thumbnail{
        img{
            transform: scale(1);
            transition: .8s;
            width: 100%;
        }
    }
    .inner-content{
        position: absolute;
        left: 40px;
        bottom: 40px;
        opacity: 0;
        left: -50px;
        transition: .8s;
        span{
            display: block;
            padding: 11px 20px;
            max-width: max-content;
            background: #141414;
            color: #fff;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            letter-spacing: 1.4px;
            text-transform: uppercase;
        }
        .name{
            padding: 18px 25px;
            background: #fff;
            display: block;
            color: #141414;
            font-size: 22px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            margin-bottom: 0;
        }
    }   
    &:hover{
        .thumbnail{
            img{
                transform: scalex(-1);
            }
        }
        .inner-content{
            left: 40px;
            opacity: 1;
        }
    }
}

.progress-team-area.four{
    .single-team-style-one{
        padding-bottom: 0;
    }
}

.history-conetent-5{
    height: 100%;
    .tab-pane{
        height: 100%;
        .thumbnail{
            height: 100%;
            img{
                height: 100%;
            }
        }
    }
}