.other-services h2 {
    margin-bottom: 36px;
}
.other-services__l {
    border-top: 2px solid #201B4F;
}
.other-services__li {
    padding: 50px 0 50px 85px;
    font-size: 32px;
    border-bottom: 2px solid #201B4F;
    position: relative;
}
.other-services__li::before {
    content: "";
    width: 66px;
    height: 86px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("images/icon-blue-star.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 1200px) {
    .other-services__li {
        padding: 36px 0 36px 85px;
        font-size: 27px;
    }
}

@media screen and (max-width: 800px) {
    .other-services h2 {
        margin-bottom: 8px;
    }
    .other-services__li {
        padding: 16px 0 16px 40px;
        font-size: 14px;
    }
    .other-services__li::before {
        width: 23px;
        height: 30px;
    }
}