.out-team {
    position: relative;
    font-family: "Verdana Fonts", Sans-serif;
    background-image: url(/wp-content/uploads/2024/07/circle-img.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 760px;
    margin: 60px auto;
    min-height: 382px;
}

.out-team .team-logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.out-team .member-img {
    width: 76px;
    height: 76px;
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
    border: 3px solid #f69520;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    background: #ffffff;
}

.out-team .member-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.out-team .member-card {
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    max-width: 132px;
    padding: 13px;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: 9;
    position: absolute;
}

.out-team .member-card:hover {
    border-color: #feecd8;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.08),
        0px 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.out-team .member-card:hover .member-img {
    border-color: #f69520;
}

.out-team .member-card:hover .member-name,
.out-team .member-card:hover .designation {
    opacity: 1;
    visibility: visible;
}

.out-team .circle .member-card:nth-child(1) {
    bottom: -2%;
    left: calc(100% - 70%);
    right: inherit;
}

.out-team .circle .member-card:nth-child(2) {
    bottom: -23%;
    left: calc(100% - 88%);
    right: inherit;
}

.out-team .circle .member-card:nth-child(3) {
    bottom: 34%;
    left: calc(100% - 58%);
    right: inherit;
}

.out-team .circle .member-card:nth-child(4) {
    bottom: -5%;
    left: calc(100% - 30%);
    right: inherit;
}

.out-team .circle .member-card:nth-child(5) {
    bottom: 36%;
    left: calc(100% - 82%);
    right: inherit;
}

.out-team .circle .member-card:nth-child(6) {
    bottom: 40%;
    left: calc(100% - 35%);
    right: inherit;
}

.out-team .circle .member-card:nth-child(7) {
    bottom: 7%;
    left: -5%;
    right: inherit;
}

.out-team .circle .member-card:nth-child(8) {
    bottom: 71%;
    left: calc(100% - 68%);
    right: inherit;
}

.out-team .circle .member-card:nth-child(9) {
    bottom: 71%;
    left: calc(100% - 45%);
    right: inherit;
}

.out-team .circle .member-card:nth-child(10) {
    bottom: 24%;
    left: calc(100% - 16%);
    right: inherit;
}

.out-team .member-name {
    color: #170f49;
    font-family: "Verdana Fonts", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    margin: 4px 0 0;
    opacity: 0;
    visibility: hidden;
}

.out-team .designation {
    color: #808080;
    font-family: "Verdana Fonts", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (max-width: 767px) {
    .out-team {
        background: none;
        margin:0;
    }
    .out-team .team-logo{
        position: static;
        transform: none;
        text-align: center;
        margin-bottom:20px;
    }
    .out-team .member-card {
        position: static;
    }
    .out-team .circle {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin: 0 0 30px;
    }

    .out-team .circle:last-child {
        margin: 0;
    }

    .out-team .member-card {
        border-color: #feecd8;
        background: #ffffff;
        z-index: 9999;
        box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.08),
            0px 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .out-team .member-card .member-img {
        border-color: #f69520;
    }

    .out-team .member-card .member-name,
    .out-team .member-card .designation {
        opacity: 1;
        visibility: visible;

    }
}