.team-container {
    height: 720px;
    position: relative;
}

.team-container.team-autoHeight {
    height: auto;
}

.team-container .sf-bgc-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    opacity: 1;
    position: absolute;
    bottom: 0;
    z-index: 10;
    height: 100%;
    height: -webkit-fill-available;
}

.team-container .sf-bgc-loading.loaded-content {
    display: none;
}

.buttons-scroll-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    gap: 20px;
    border-bottom: 1px solid #D9D9D9;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 20%, #FFF 100%);
    text-wrap: nowrap;
}

.sf-btn-change-team {
    padding: 0;
    color: #515151;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid white;
}

.sf-btn-change-team.active-section {
    border-bottom: 2px solid #A1A1A1;
}

.name-department-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #515151;
    padding: 24px 0 4px 0;
    margin-bottom: 24px;
	cursor: pointer;
}

.name-department-container.addSvg::after {
    content: "";
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23515151'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 25px;
    transition: transform 0.2s ease-in-out;
}

.name-department-container.addSvg:not(.rotate-svg)::after {
    transform: rotate(90deg);
}

.name-department {
    display: flex;
    margin: 0;
}

.scroll-department-people {
    display: flex;
}

.contaniner-department {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contaniner-btnTeamEl {
    display: none;
    width: 100%;
    gap: 20px;
    position: relative;
	overflow: hidden;
}

.contaniner-btnTeamEl.show-dep {
    display: flex;
}

.contaniner-people {
	display: flex;
    width: 100%;
    gap: 30px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /*user-select: none;*/
    flex-wrap: wrap;
    transition: height 0.5s ease-in-out;
}

.contaniner-people::-webkit-scrollbar { display: none; }
.button-leftMoveEl, .button-rightMoveEl {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 100%;
    cursor: pointer;
}

.button-leftMoveEl { left: 10px; }
.button-rightMoveEl { right: 10px; }
.button-leftMoveEl.show-btns, .button-rightMoveEl.show-btns {
    display: flex;
}

.circle-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.button-leftMoveEl .circle-svg {
    padding-right: 4px;
}

.button-rightMoveEl .circle-svg {
    padding-left: 4px;
}

.department-people {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 285px;
    margin: 15px 0;
}

.department-people .img-people {
    display: flex;
    width: 100%;
}

.department-people .img-people img {
	border-radius: 5px;
}

.department-people .text-people {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
	width: 100%;
	height: 100%;
}

.department-people .text-people.not-between {
    justify-content: center!important;
    height: auto!important;
}

.department-people .text-people .container-data {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
	width: 100%;
}

.department-people .text-people h5 {
    font-size: 1.35rem!important;
    margin: 0;
    width: 100%;
    line-height: 150%!important;
}

.department-people .text-people p {
    font-size: 13px;
    height: 50px;
    margin: 0;
    width: 100%;
}

.department-people .text-people a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    color: white;
    padding: 1px 9px;
    border-radius: 10px;
    margin: 0;
    background-color: #ef8700;
    border: 1px solid #ef8700;
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.department-people .text-people a:hover {
    color:  #ef8700;
    background-color:white;
}

@media only screen and (max-width: 1450px) {
    .buttons-scroll-team {
        overflow-x: scroll;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
        /*user-select: none;*/
    }
    .buttons-scroll-team::-webkit-scrollbar { display: none; }
}

@media only screen and (max-width: 768px) {
    .team-container { 
        height: 960px;
    }
    .team-container.height100Percent { 
        height: 100%;
    }
    .team-container .sf-bgc-loading {
        align-items: start;
    }
    .button-leftMoveEl.show-btns, .button-rightMoveEl.show-btns {
        display: none;
    }
    .buttons-scroll-team-row {
        display: none!important;
    }
    .contaniner-department {
        display: flex;
    }
    .name-department-container {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        border-bottom: 1px solid #515151;
        padding: 15px 0 10px 0;
    }

    .contaniner-btnTeamEl {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow-x: auto;
    }
    .contaniner-btnTeamEl.show-firstPeople {
        display: flex;
    }
    .contaniner-people {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .name-department-container h3 {
        font-size: 24px!important;
    }
}