html.fixed{
    overflow: hidden;
}

.v_section_our_team_01 {
    background: url(../img/logo_watermark.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.v_our_team_box {
    padding: 120px 0;
    margin: 0 auto;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
}

.v_our_team_box .v_section_sub_heading {
    text-align: center;
}

.v_our_team_content {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
}

.v_team_item {
    max-width: 1200px;
    column-gap: 120px;
    margin: 0 auto;
    padding: 40px 0 0;
    background-image: url(../img/logo_watermark.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.v_team_item:hover figure img{
    filter: brightness(75%) blur(2px);
    transition: all .3s ease-in-out;
}

.v_team_item:hover .v_fs_link {
    display: flex;
    color: white;
}

.v_team_item:hover .v_fs_link span {
    margin-left: 10px;
}

.v_team_item figure {
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgb(245, 245, 245);
}

.v_team_item img {
    height: 420px;
}

.v_team_modal {
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.75);
    width: 100%;
    height: 100%;
    z-index: 999999;
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
}

.v_team_modal.active {
    display: flex;
}

.v_team_bio {
    padding: 40px 80px;
    width: 100%;
    max-width: 1200px;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.v_team_bio p {
    text-align: justify;
}

.v_team_item:hover .v_team_name,
.v_team_item:hover .v_team_position  {
    color: var(--green-color);
}

.v_team_name {
    margin: 30px 0 0;
    line-height: 1;
    font-size: 36px;
    font-weight: 400;
    color: var(--text-color);
    font-family: 'Adobe Garamond Pro', sans-serif;
    text-transform: uppercase;
}

.v_team_position {
    margin-bottom: 20px;
    color: var(--text-color);
}

.v_team_content p:last-child{
    margin-bottom: 30px;
}

.v_team_cancel {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.v_team_cancel i {
    font-size: 32px;
    cursor: pointer;
}