
.teamlist__item:not(:first-child) {
    margin-top: 60px;
}
.teamlist__item:nth-child(even) {
    padding: 40px;
    background-color: var(--color-second);
}
.teamlist__item-wrapper {
    border-bottom: 1px solid #000;
}
.teamlist__cat {
    margin-bottom: 40px;
    position: relative;
    font-size: clamp(20px, 1.5vw, 30px);
    line-height: 100%;
    font-weight: 700;
    color: var(--txt-color);
    position: relative;
    padding-left: 50px;
}
.teamlist__cat:before {
    content: '';
    width: 35px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.teamlist__boxes {
    gap: 30px;
}
.teamlist__box {
    max-width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
    padding-bottom: 40px;
}
.teamlist__box-img {
    display: block;
    width: 100%;
    overflow: hidden;
}
.teamlist__box-img img {
    width: 100%;
    aspect-ratio: 5/7;
    object-fit: cover;
    transition: .3s;
}
.teamlist__box-img:hover img {
    transform: scale(1.05);
}
.teamlist__name {
    display: block;
    margin: 15px 0 5px 0;
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 300;
    padding-left: 10px;
    padding-right: 10px;
}
.teamlist__name a:hover {
    color: rgba(0,0,0, .5);
}
.teamlist__short {
    font-size: .9rem;
    line-height: 110%;
    font-weight: 200;
    display: block;
    padding-left: 10px;
    padding-right: 10px;
}
/*  */
.crew {
    position: relative;
}
.crew__sign {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    filter: brightness(0);
    opacity: .04;
    z-index: 1;
}
.crew__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.crew__title {
    margin-bottom: 15px !important;
}
.crew__subtitle {
    text-align: justify;
    font-weight: 200;
    font-size: 1.1rem;
    display: block;
}
.crew__info {
    text-align: justify;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #000;
    font-weight: 400;
    font-size: 1.05rem;
}
.crew__btns {
    width: 100%;
    margin-top: auto;
}
.crew__btns>* {
    margin: 10px 30px 0 0;
}

.crew__item {
    border-top: 1px solid #000;
    padding-top: 40px;
}
.crew__item:not(:first-child) {
    margin-top: 20px;
}
.crew__item-title {
    margin-bottom: 20px;
    position: relative;
    font-size: clamp(20px, 1.5vw, 30px);
    line-height: 100%;
    font-weight: 700;
    color: var(--txt-color);
    position: relative;
}
.crew__item-txt {
    font-weight: 200;
    text-align: justify;
}
.crew__links-items {
    gap: 25px 80px;
}
.crew__links-item {
    max-width: calc(33.333% - 60px);
    flex: calc(33.333% - 60px);
}
.crew__links-item a {
    display: block;
    padding: 15px 20px 15px 15px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    height: 100%;
}
.crew__links-item a:hover {
    color: #fff;
    background-color: #000;
}

@media(max-width: 1500px) {
    .crew__links-items {
        gap: 15px 30px;
    }
    .crew__links-item {
        max-width: calc(33.333% - 20px);
        flex: calc(33.333% - 20px);
        font-size: 1rem;
    }
}
@media(max-width: 1200px) {
    .teamlist__boxes {
        gap: 30px 10px;
    }
    .teamlist__box {
        max-width: calc(33.333% - 10px);
        flex: 0 0 calc(33.333% - 10px);
    }
    .teamlist__short {
        font-size: .75rem;
    }
    /*  */
    .crew__links-item {
        font-size: .85rem;
        line-height: 120%;
    }
}
@media(max-width: 1070px) {
    .teamlist__items {

    }

    .teamlist__cat {
        text-align: center;
    }
}
@media(max-width: 992px) {
    .crew__img {
        margin-top: 30px;
    }
    .crew__items {
        padding: 0 10px;
        margin-top: 20px !important;
    }
    .crew__item {
        padding-top:20px;
    }
    .crew__links {
        padding: 0 10px;
    }
    .crew__links-items {
        gap: 15px;
    }
    .crew__links-item {
        max-width: calc(50% - 8px);
        flex: 0 0 calc(50% - 8px);
    }
    .crew__links-item a {
        font-weight: 600;
        padding: 15px;
        font-size: 13px;
        line-height: 130%;
    }
}
@media(max-width: 767px) {
    .teamlist__boxes {
        gap: 10px 5px;
    }
    .teamlist__box {
        max-width: calc(50% - 3px);
        flex: 0 0 calc(50% - 3px);
    }
}