.banner-info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 7rem;
}

.banner-title {
    font-size: 3.33rem;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
    line-height: 4rem;
    margin-bottom: 0.5rem;
}

.banner-sub-title {
    font-size: 1.67rem;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
    line-height: 2.5rem;
    margin: 0;
}

.banner-info-line {
    width: 12rem;
    height: 0.33rem;
    background-color: #ffffff;
    margin: 0.5rem auto auto auto;
}

.tabs-contaner {
    width: 25rem !important;
}

.tab-title {
    border-bottom: 0;
}

.tab-line {
    left: 2.7rem;
}

.intro {
    /* font-size: 1.67rem;
    line-height: 2.17rem;
    color: #141414;
    font-weight: 500; */
    padding: 2.9rem 0rem;
    color: #707070;
    font-size: 1.67rem;
    font-weight: 300;
    margin-top: 1.92rem;
}

.container-line {
    height: 1px;
    background-color: #E3E3E3;
}

.about-banner {
    position: relative;
    margin-bottom: 5.25rem;
}

.about-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-banner-title {
    background: rgba(103, 103, 103, 0.57);
    padding: 0.67rem 2.25rem;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 2.33rem;
    position: absolute;
    bottom: 19.2%;
    left: 5.1%;
    max-width: 53%;
}

.teams-container {
    display: flex;
    justify-content: space-between;
}

.teams-left {
    flex: 0 0 auto;
    margin-right: 7.33rem;
}

.teams-title {
    font-size: 3.33rem;
    font-weight: 400;
    color: #242424;
    line-height: 4.42rem;
    text-align: center;
}

.teams-sub-title {
    font-size: 1.67rem;
    font-weight: 300;
    color: #000;
    line-height: 2.17rem;
    text-align: center;
}

.teams-desc {
    font-size: 1.67rem;
    font-weight: 300;
    color: #707070;
    line-height: 2.25rem;
}

.teams-members {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5.92rem;
}

.members {
    /* 17.8 */
    width: 10.68%;
    margin-bottom: 6.42rem;
    cursor: pointer;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.members .members-info {
    opacity: 0;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 1.0rem 1rem 10px 10px;
    transition: all 0.5s;
    background: rgba(0, 0, 0, 0.5);
}

.members:hover .members-info {
    opacity: 1;
}

.members-name {
    font-size: 1.67rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.2rem;
    text-align: center;
}

.members-position {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    margin: 0;
}

.members-sub-position {
    font-size: 1rem;
    color: #AAAAAA;
    text-align: center;
    margin: 0;
}


/* .members:hover {
    opacity: 0.8;
} */

.members:not(:nth-child(5n)) {
    margin-right: calc(58% / 5);
}

.members img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

@media (max-width: 750px) {
    .intro {
        padding: 2.9rem 0;
    }
    .container {
        padding-bottom: 0 !important;
    }
    .teams-container {
        padding: 0 20px;
        flex-direction: column;
    }
    .about-banner-title {
        background: rgba(103, 103, 103, 0.57);
        padding: 0.67rem 2.25rem;
        color: #ffffff;
        font-size: 1.75rem;
        font-weight: bold;
        line-height: 2.33rem;
        position: relative;
        width: 100%;
        left: 0;
        max-width: 100% !important;
    }
    .members {
        width: 45%;
        margin-bottom: 6.42rem;
        cursor: pointer;
        position: relative;
        border-radius: 40px;
        overflow: hidden;
    }
    .members:not(:nth-child(2n)) {
        margin-right: 10% !important;
    }
    .members:not(:nth-child(5n)) {
        margin-right: 0;
    }
}