.workers {
    margin-top: 140px;
    background: linear-gradient(270deg, #FFFFFF 0%, #DBEAFE 100%);
    padding: 60px 0 80px;
}
.workers .items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 54px;
    margin-top: 90px;
}
.workers .item {
    display: flex;
    gap: 60px;
}
.workers .item .photo {
    width: 160px;
}
.workers .item .photo .circle {
    border: 5px solid #002FB9;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    width: 114px;
    height: 114px;
    min-width: 114px;
    min-height: 114px;
}
.workers .item:first-child .photo .circle {
    width: 148px;
    height: 148px;
    min-width: 148px;
    min-height: 148px;
}
.workers .item .name {
    font-size: 30px;
    font-weight: 600;
}
.workers .item .text {
    max-width: 600px;
}
.workers .item .txt-1 {
    margin-top: 17px;
}

.workers .item .txt-1 span {
    position: relative;
    font-size: 25px;
    line-height: 1.1;
}
.workers .item .txt-1 span {
    padding-left: 23px;
}
.workers .item .txt-1 span:last-child {
    padding-left: 0;
}
.workers .item .txt-1 span:before {
    content: '';
    width: 1px;
    height: 17px;
    border-right: 2px solid #000;
    position: absolute;
    top: 7px;
    left: 10px;
}
.workers .item .txt-1 span:last-child:before {
    content: none;
}
.workers .item .txt-2 {
    font-size: 20px;
    color: #7C7C7C;
    line-height: 1.1;
    margin-top: 12px;
}
.workers .item .txt-3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 15px;
}
@media (max-width: 840px) {
    .workers {
        margin-top: 50px;
        padding: 30px 16px 50px;
    }
    .workers .items {
        gap: 28px;
        margin-top: 44px;
    }
    .workers .item {
        flex-wrap: wrap;
        gap: 16px;
    }
    .workers .item .photo .circle {
        border: 3px solid #002FB9;
        margin: 0;
        width: 86px;
        height: 86px;
        min-width: 86px;
        min-height: 86px;
    }
    .workers .item:first-child .photo .circle {
        width: 118px;
        height: 118px;
        min-width: 118px;
        min-height: 118px;
    }
    .workers .item .name {
        font-size: 20px;
    }
    .workers .item .txt-1 {
        margin-top: 10px;
    }
    .workers .item .txt-1 span {
        font-size: 18px;
    }
    .workers .item .txt-2 {
        font-size: 16px;
    }
    .workers .item .txt-3 {
        font-size: 16px;
        font-weight: 500;
    }
    .workers .item .txt-1 span:before {
        height: 14px;
        top: 5px;
    }
}