.team .team-wrapper .team-item {
    height: 100%;
    padding: 20px 0;
    border-radius: 5px;
}

.team .team-wrapper .team-item-name {
    font-family: var(--solomon);
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: left;
    color: var(--blue);
}

.team .team-wrapper .team-item-post {
    font-family: var(--solomon);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    color: var(--lightblue);
    margin-top: 8px;
}

.team-wrapper .owl-stage {
    display: flex;
    align-items: center;
}

.team-wrapper .team-content .owl-stage-outer {
    padding: 0 20px;
    margin: 0 -20px;
}

.team-wrapper .owl-item.active {
    opacity: 1;
}

.team-wrapper .owl-item {
    opacity: 0;
    transition: 0.4s;
}

.team-wrapper .team-item img {
    width: auto !important;
}

.team-wrapper .owl-nav {
    justify-content: space-between;
    display: flex !important;
    pointer-events: none;
    position: absolute;
    top: 40%;
    left: -110px;
    right: -110px;
}

.team-wrapper .owl-nav.disabled {
    display: none !important;
}

.team-wrapper .team-content {
    position: relative;
}

.team-wrapper .owl-nav button {
    width: 60px;
    height: 60px;
    border: 1px solid #87A5C099 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.4s;
    pointer-events: all;
}

.team-wrapper .owl-nav button:hover {
    background: var(--accent) !Important;
    border-color: var(--accent) !Important;
}

.team-wrapper .owl-nav button:hover svg path {
    stroke: #fff;
}

.team-wrapper .owl-nav button svg path {
    transition: 0.4s;
}

@media all and (max-width: 1750px) {
    .team-wrapper .owl-nav {
        left: 5px;
        right: 5px;
    }
}

@media all and (max-width: 1024px) {
    .team-wrapper .owl-nav {
        justify-content: center;
        position: static;
        margin-top: 40px;
    }

    .team-wrapper .owl-nav > * {
        margin: 0 8px;
    }

    .team-wrapper .team-item:not(:first-child) {
        margin-top: 20px;
    }
}