.brick.brick-slider-1 {
    overflow: visible;
}

.slider-content {
    position: relative;
}

.team-card {
    width: 266px;
    position: relative;
    display: inline-block;
}

.team-card:hover .team-content .team-info-toggle {
    display: flex;
}

.team-card:hover .team-info-card {
    display: block;
}

.team-card .team-image {
    height: 312px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.team-card .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card .team-content {
    line-height: 15px;
}

.team-card .team-content .team-name-container {
    display: flex;
    align-items: center;
    height: 24px;
    gap: 10px;
}

.team-card .team-content .team-name {
    font-weight: 700;
    font-size: 18px;
}

.team-card .team-content .team-info-toggle {
    width: 24px;
    height: 100%;
    font-weight: 700;
    font-size: 12px;
    display: none;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--yellow);
    border-radius: 50%;

}

.team-card .team-content .team-position {
    font-size: 14px;
}

.team-info-card {
    display: none;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    padding: 18px 10px 18px 20px;
    font-size: 16px;
    margin-top: 14px;
}

.team-info-card .info-title {
    font-weight: 500;
    line-height: 20.8px;
    margin-bottom: 24px;
}

.slider-buttons {
    position: absolute;
    right: 2rem;
    top: -75px;
    display: flex;
}

.slider-button:first-child {
    margin-right: 10px;
}

.slider-button {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50% !important;
}

.slider-button button {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-button.arrow-right svg {
    transform: rotate(180deg);
}

.brick-slider-1 .container.none .brick-in.none {
    overflow: visible;
}

@media(max-width: 992px) {

    .team-card .team-content .team-info-toggle {
        display: flex;
    }

}