.container {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-image: url('/img/svg/triangle-red.svg');
    background-repeat: no-repeat;
    background-position: calc(50% + 610px) center ;
    background-position-y: bottom;
    background-attachment: local;
    background-size: 700px;
}

.content-equipe {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: -1150px;
    margin-bottom: 30px;
    position: relative;
}

.title-web {
    align-self: center;
    font-size: 3rem;
    color: var(--color-menu-hover);
    position: absolute;
    margin: 400px 790px 0 0;
    line-height: 100%;
    text-align: left;
}

.title-web span {
    color: var(--color-black);
}


.content-equipe>img {
    margin: 347px 0 0 -119px;
}

.slideshow-equipe {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0px auto;
    max-width: 870px;
    padding: 0 15px;
    overflow: hidden;
    /* cursor: grab; */
}

.tag-equipe {
    display: flex;
    align-items: center;
    font-family: var(--font-family-bold);
    font-size: 1.2rem;
    background-color: var(--color-black);
    width: 100%;
    height: fit-content;
    border: none;
    color: white;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 15px 15px 0 15px;
    margin: 50px 0 -25px 0;
}

.slidetrack-equipe {
    width: 100%;
    display: flex;
    justify-content: left;
    gap: 30px;
    transition: transform 0.5s ease;
    height: 540px;
    margin: 0x auto;
    margin-top: 60px;
    object-fit: cover;
    user-select: none;
}

.btn-next {
    width: 60px;
    height: 60px;
    margin: 10px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    border: 0px;
    transform: translateY(580px);
    background-color: var(--color-black);
    color: var(--color-menu-hover);
    font-family: var(--font-family-bold);
    font-size: 2rem;
    border-radius: 50%;

    &:hover {
        background-color: white;
        border: 4px solid black;
        color: black;
    }
}

.btn-prev {
    width: 60px;
    height: 60px;
    margin: 10px;
    cursor: pointer;
    position: absolute;
    right: 50%;
    transform: translateY(580px);
    border: 0px;
    background-color: var(--color-black);
    color: var(--color-menu-hover);
    font-family: var(--font-family-bold);
    font-size: 2rem;
    border-radius: 50%;

    &:hover {
        background-color: white;
        border: 4px solid black;
        color: black;
    }
}

.slide-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    pointer-events: none;
}

.slide-items img {
    border-radius: 15px 15px 0px 15px;
}

.slide-items .nome {
    font-family: var(--font-family-bold);
    font-size: 1.8rem;
    margin-top: 20px;
}

.slide-items .cargo {
    max-width: 270px;
    text-align: center;
    font-family: var(--font-family-semibold);
    font-size: 1.2rem;
    margin-top: -36px;
}

@media (max-width: 910px) {

    .slideshow-equipe {
        width: 570px;
    }
    
}


@media (max-width: 615px) {

    .content-equipe>img {
        width: 400px;
        margin: 350px 0 0 -95px;
}
    
    .slideshow-equipe {
        width: 270px;
    }
}