//team-area
.team-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;

    .team-thumb {
        img {
            width: 100%;
        }
    }

    .team-content {
        position: absolute;
        left: 60px;
        right: 60px;
        bottom: 60px;
        z-index: 1;
        @include transition(0.3s);

        @media #{$laptop} {
            left: 25px;
        }

        @media #{$lg} {
            left: 15px;
            right: 0;
            bottom: 25px;
        }

        @media #{$md} {
            left: 15px;
            right: 0;
            bottom: 25px;
        }

        @media #{$xs} {
            left: 15px;
            right: 0;
            bottom: 25px;
        }

        h6 {
            color: $white;
            font-weight: 400;
            margin-bottom: 10px;
            @include transition(0.3s);
        }

        h3 {
            a {
                color: $white;
                font-size: 30px;
                padding-bottom: 25px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.102);
                @include transition(0.3s);
                display: inline-block;
            }
        }
    }

    .footer__social {
        visibility: hidden;
        opacity: 0;
        margin: 0;
        height: 0;
        @include transition(0.3s);

        a {
            background-color: rgba(255, 255, 255, 0.102);
            width: 50px;
            height: 50px;
            line-height: 50px;
            transform: scale(0);
            -webkit-transform: scale(0);
            -moz-transform: scale(0);
            -ms-transform: scale(0);
            -o-transform: scale(0);
            opacity: 0;
            @include transition(0.3s);

            &:hover {
                background: $heding;
            }
        }
    }

    &:hover {
        .footer__social {
            visibility: visible;
            opacity: 1;
            margin-top: 30px;
            height: 50px;

            a {
                display: inline-block;
                transform: scale(1);
                -webkit-transform: scale(1);
                -moz-transform: scale(1);
                -ms-transform: scale(1);
                -o-transform: scale(1);
                opacity: 1;
            }
        }
    }
}

.team-thumb {
    position: relative;
    z-index: 1;

    &::before {
        content: "";
        background-image: -moz-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
        background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
        background-image: -ms-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
        opacity: 0.702;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
}

//team-details
.adress-box {
    display: flex;
    align-items: center;
    margin-bottom: 23px;

    .icon-link {
        color: $theme-color;
        width: 50px;
        height: 50px;
        border: 2px solid rgb(244, 244, 244);
        text-align: center;
        line-height: 50px;
        margin-right: 20px;
        margin-top: 5px;
    }

    .adress-content {
        p {
            margin-bottom: 3px;
        }
    }
}

.team-skill-wrapper {
    @media #{$laptop} {
        padding-right: 0;
    }

    @media #{$lg} {
        padding-right: 0;
    }

    @media #{$md} {
        padding-right: 0;
    }

    @media #{$xs} {
        padding-right: 0;
    }
}

.comic-progress-bar {
    overflow: hidden;

    @media #{$md} {
        margin-bottom: 15px;
    }

    .p-title {
        margin-bottom: 8px;
    }

    .progress {
        height: 19px;
        background-color: transparent;
        border-radius: 0;
        border-bottom: 2px solid #e6e6e6;
        overflow: visible;
        width: 100%;

        .progress-bar {
            color: $body-text-color;
            font-size: 18px;
            font-weight: 400;
            background-color: $theme-color;
            width: 70%;
            height: 6px;
            margin-top: 6px;
            margin-left: 0;
            overflow: visible;
            position: relative;

            span {
                color: $theme-color;
                text-align: right;
                margin-top: -52px;
                position: absolute;
                right: -140px;

                @media #{$xs} {
                    right: -72px;
                    margin-top: -12px;
                }
            }
        }
    }

    &.bar-2 {
        .progress {
            .progress-bar {
                width: 52%;
            }
        }
    }

    &.bar-3 {
        .progress {
            .progress-bar {
                width: 82%;

                span {
                    right: -80px;

                    @media #{$xs} {
                        right: -40px;
                    }
                }
            }
        }
    }
}

.teams-title {
    font-size: 26px;
}

.team-bot-border {
    border-bottom: 1px solid rgb(232, 232, 232);
}