.team-item {
    position: relative;
    .team-body {
        background: var(--nature);
        position: relative;
        border-radius: 24px;
        padding: 74px 30px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        .team-content {
            position: absolute;
            bottom: 20px;
            width: calc(100% - 32px);
            margin: auto;
            display: flex;
            flex-direction: column;
            gap: 4px;
            text-align: center;
            background: #FFFFFFCC;
            backdrop-filter: blur(44px);
            border-radius: 16px;
            padding: 12px;
            line-height: 26px;
            .name {
                font-size: 18px;
                font-family: var(--DemiBold);
            }
            .post {
                font-family: var(--En);
                font-size: 14px;
            }
        }
    }
    .social-media {
        margin-top: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        a {
            width: 24px;
            height: 24px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: 0.4s;
            &:hover {
                color: var(--color2);
            }
        }
    }
}
.wrap-team {
    position: relative;
    padding-bottom: 120px;
    padding-top: 58px;
   /* width: calc(100% - 88px); */
    margin-inline: auto !important;
    .s-desc,
    .s-title {
        color: white;
        text-align: center;
    }
    .col-12.col-lg-3.col-xl-4 div {
        margin-bottom: 32px;
        display: flex;
            flex-direction: column;
            gap: 8px;
    }
    &:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
        background: #051D3D;
        border-radius: 40px;
    }
}
.navigation-team {
    position: absolute !important;
    top: calc(100% + 3.1rem);
    right: 50%;
    transform: translateX(50%);
    &:before {
        content: "\e92e";
        font-family: 'icomoon';
        color: white;
        font-size: clamp(62px, 5vw, 73px);
        position: absolute;
        line-height: 1;
        bottom: -7px;
        right: 50%;
        transform: translateX(50%);
        z-index: -1;
    }
}
@media only screen and (min-width: 992px) {
    .navigation-team {
        position: absolute !important;
        left: calc(100% + 12rem);
        bottom: -30px;
        top: auto;
        right: auto;
        margin: 0;
        transform: unset;
    }
    .wrap-team {
        padding-bottom: 36px;
        padding-top: 0;
        width: auto;
        &:before {
            height: calc(100% - 60px);
        }
        .s-desc,
        .s-title {
            text-align: right;
        }
        .col-12.col-lg-3.col-xl-4 div {
            padding-right: clamp(40px, 4vw, 105px);
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
    }
}
