.container {
    position: relative;
    width: 90vw;
    height: 90vw;
    max-width: 700px;
    max-height: 700px;
}

.center-outside-image{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 30%;
    height: 30%;
    border: 2px solid var(--hover-color);
}

.center-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--green-color);
}

.center-image img {
    width: 100%;
    max-width: 75px;
    object-fit: cover;
}

.center-image h6{
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.circle {
    position: absolute;
    width: 22%;
    height: 22%;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #d9f6f4;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform-origin: center;
    cursor: pointer;
    z-index: 1;
}

.circle:hover{
    z-index: 2;
    border: 2px solid var(--hover-color);
}

.circle:hover::after{
    background-color: var(--hover-color);
}

.circle::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 50%;
    background-color: #d9f6f4;
    top: 100%;
    left: 50%;
    transform-origin: top;
    transform: translateX(-50%);
    z-index: -1;
}

.circle .text {
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding: 10px;
    zoom: .9;
}

.circle > div{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.circle.c2 > div{
    justify-content: flex-end;
}
.circle.c2 > div .tooltips{
    top: 100%;
}

.circle.c3 > div,
.circle.c4 > div,
.circle.c5 > div,
.circle.c6 > div{
    justify-content: flex-end;
}

.circle.c2 > div .tooltips {
    left: 160%;
}

.circle.c3 > div .tooltips{
    left: auto;
    right: 160%;
}

.circle.c4 > div .tooltips{
    left: auto;
    right: 150%;
}

.circle.c5 > div .tooltips{
    left: auto;
    right: 125%;
}

.circle.c6 > div .tooltips{
    left: auto;
    right: 120%;
}

.circle.c7 > div .tooltips{
    left: 150%;
    top: -210%;
}


.circle:hover .text{
    color: var(--green-color);
}

.tooltips{
    left: 120%;
    width: 500px;
    padding: 20px;
    border: 1px solid #d9f6f4;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    z-index: 10;
    display: none;
    position: fixed;
    background-color: #f4fdfc;
    text-align: left;
}

.circle:hover .tooltips{
    display: block;
}

@media screen and (max-width: 1600px) {
    .tooltips{
        width: 350px;
    }

    .circle.c5 > div .tooltips {
        left: auto;
        right: 115%;
    }
}

@media screen and (max-width: 1450px) {
    .tooltips{
        font-size: 14px;
        width: 300px;
        left: 110%;
    }
}

@media screen and (max-width: 1199px) {
    .circle:hover .tooltips{
        display: none;
    }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 640px) {
    .circle .text{
        line-height: 1.2;
        font-size: 12px;
    }
    .center-image img{
        max-width: 36px;
    }

    .center-image h6 {
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    .circle .text{
        line-height: 1.2;
        font-size: 8px;
    }
}


.v_team_box {
    margin-bottom: 3rem;
}

.v_team_label {
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 700;
    color: var(--green-color);
}

.v_team {
    gap: 60px;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}

.v_team_item {
    border-bottom: 1px solid var(--green-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 1s ease-in-out;
}

.v_team_img img {
    width: 100%;
    max-width: 220px;
    transition: all .3s ease-in-out;
}

.v_team_name {
    width: 65%;
    bottom: 40px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    color: white;
    background-color: rgba(3, 110, 99, 0.85);
    transition: all 1s ease-in-out;
}

.v_team_name h6 {
    font-size: 20px;
}

.v_team_name span {
    font-size: 16px;
}

.v_team_desc_modal {
    top: 0;
    left: 0;
    padding: 100px;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    background-color: rgba(0, 0, 0, .6);
}

.v_team_desc_modal.active {
    display: flex;
}

.v_team_inner_white_box {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 1200px;
    padding: 40px 60px;
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.v_team_close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.v_team_desc {
    width: 75%;
    height: 100%;
}

.v_team_desc ul {
    margin-top: 20px;
    margin-left: 20px;
}

.v_team_desc ul li {
    margin-bottom: 10px;
    line-height: 1.3;
    list-style-type: disc;
    color: var(--green-color);
}

.v_team_desc ul li:last-child{
    margin-bottom: 0;
}

.v_team_desc ul li span {
    font-size: 16px;
    color: #212529;
}

.v_team_icon img {
    width: 100%;
    max-width: 220px;
}

.v_team_close i {
    font-size: 48px;
    color: var(--highlight-color);
    cursor: pointer;
}