.sections__title {
    font-weight: bold;
    font-size: 42px;
    line-height: 54px;
    color: #000000;
    margin: 60px 0 40px;
}
.sections__wrap {
    margin: -16px -13px;
    display: flex;
    flex-wrap: wrap;
}
.section__block {
    padding: 16px 13px;
    width: 33.3%;
}
.block_inner {
    display: block;
}
.section__pic {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    margin-bottom: 15px;
    aspect-ratio: 1 / 1;
}
.section__pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.section__name {
    color: #2E649F;
    font-weight: normal;
    font-size: 20px;
    line-height: 26px;
}
@media (max-width: 768px) {
    .section__block {
        width: 50%;
    }
}
@media (max-width: 350px) {
    .section__block {
        width: 100%;
    }
}