/**
 * styles for reusable blocks
 */

/** ПЕРЕВАГИ АВТОМАТИКИ ALUTECH [advantages] */

.advantages {
    font-size: 1.6rem;
}
.advantages .title {
    font-family: var(--fntfamily-title);
    font-weight: var(--fntweight-title);
    line-height: 1.1;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.advantages {
    counter-reset: ordered-list;
}
.advantages .title::before {
    content: counters(ordered-list,".");
    counter-increment: ordered-list;
    flex-shrink: 0;
    margin-right: .5em;
    /*font-size: 1.5em;*/
    line-height: 1;
    text-align: center;
    color:var(--color-white);
    width:1em;
    padding:.542em;
    background-image: var(--featured-gradient);
}

@media (min-width: 769px) {
    .advantages .item .content {
        padding-left: 62px;
    }
    .advantages .title {
        font-size: 1.5em;
        cursor:initial;
    }
    .advantages .title:after{
        opacity: 0;
    }
}

@media (max-width: 1199px) {
    .advantages .col:nth-child(2) {
        flex-basis:100% !important;
        order:1;
    }
}
@media (max-width: 768px) {
    .advantages .title {
        position: relative;
        padding-right: 2em;
    }
    .advantages .title:after{
        position: absolute;
        top: .5em;
        right: 10px;
        line-height: 1;
    }
}