/* CSS Document */
.team-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex!important;
    flex-wrap: wrap
}

.team-grid>div {
    width: calc(33.3333%);
    margin-bottom: 35px;
    position: relative;
    height: auto
}

.team-grid .member-link {
    text-decoration: none;
    text-align: center;
    display: block;
    top: 0;
    bottom: 0;
    padding: 12% 0
}

.team-grid .member-link:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    right: 15px;
    background-color: #fff;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: all .25s ease;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -o-transition: all .25s ease;
    transform: scale(.96);
    -webkit-transform: scale(.96);
    -moz-transform: scale(.96);
    -o-transform: scale(.96)
}

.team-grid .member-link:hover:after {
    background-color: #f2f2ff;
    box-shadow: 0 6px 12px rgba(0,0,0,.28);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1)
}

.team-grid .member-link img {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    width: 200px;
    margin: 0 auto 35px
}

.team-grid .member-link .img {
    display: block;
    position: relative;
    z-index: 2;
    background-size: cover;
    background-position: top center;
    width: 200px;
    padding-bottom: 200px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0 auto 15px
}

.team-grid .member-link .name {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 18px;
    line-height: 1.25em;
    color: #000;
    text-transform: capitalize;
    font-weight: 400;
    margin: 0 2.5vw 15px;
    letter-spacing: 0;
    transition: 0.25s linear;
    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    -o-transition: all .25s linear;
}

.member-link:hover .title {
    color: #000;
}

.team-grid .member-link .title {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 16px;
    line-height: 1.5em;
    margin: 25px 0 20px;
    color: #676767;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: italic
}

.team-grid .member-link .info {
    display: block;
    position: relative;
    z-index: 2;
    font-size: 13px;
    line-height: 1.4em;
    margin: 7px 0
}

@media screen and (max-width: 1200px) {
    .team-grid .member-link .title {
        font-size:13px;
        line-height: 1.3em
    }

    .team-grid .member-link .info {
        font-size: 10px
    }
}

@media (max-width: 991px) {
    .team-grid>div {
        width: calc(50%);
    }
}

@media screen and (max-width: 600px) {
    .team-grid>div {

        width: 100%
    }

    .team-grid .member-link .title {
        font-size: 16px
    }

    .team-grid .member-link .info {
        font-size: 15px
    }
}

@media (min-width: 767px) {
  .team-details {
    display: flex;
    gap: 40px;
    justify-content: space-evenly;
  }
  .team-details .bnn {
    width: 100%;
    max-width: 240px;
  }
  .team-details .info {
    width: 100%;
  }
}