/* service section */
.service {
    padding: 40px 0 80px;
}

.service__container {
    max-width: 907px;

    margin: 0 auto 48px;
}

.service__title {
    color: #171616;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 160%;
    text-transform: uppercase;

    margin-bottom: 24px;
}

.service__illustration {
    display: none;
    max-width: 400px;

    margin: 0 auto 24px;
}

.service__description {
    color: #171616;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;

    margin-bottom: 24px;
}

.service__subtitle {
    color: #171616;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
    text-transform: uppercase;

    margin-bottom: 24px;
}

.service__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
    row-gap: 8px;
}

.service__item {
    display: flex;
    align-items: center;
    column-gap: 8px;
    border-radius: 6px;
    background: #FFF9F3;
    padding: 4px 16px;
}

.service__item-icon {
    width: 16px;
    height: 16px;
}

.service__item-title {
    color: #171616;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
}

.service__images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
}

@media (max-width: 767px) {
    .service {
        padding: 24px 0 60px;
    }

    .service__container {
        margin-bottom: 24px;
    }

    .service__illustration {
        display: block;
    }

    .service__description {
        text-align: center;
    }

    .service__subtitle {
        text-align: center;
    }

    .service__items {
        grid-template-columns: repeat(1, 1fr);
    }

    .service__images {
        max-width: 400px;
        grid-template-columns: repeat(1, 1fr);
        row-gap: 25px;

        margin: 0 auto;
    }

    .service__image:nth-child(2) {
        display: none;
    }
}