.content-checkerboard-pattern {}
.content-item {
    display: flex;
    gap: 3em;
    margin-bottom: 3em;
}
.content-item-revers {
    flex-direction: row-reverse;
}
.content-item:last-child {
    margin-bottom: 0;
}
.content-item_wrap {
    width: 55%;
    flex-shrink: 0;
    align-self: center;
}
.content-item_wrap.width_100 {
    width: 100%;
}
.content-item_title {
    color: #000;
    font-size: 1.7em;
    font-weight: 500;
    line-height: 1.09;
    text-transform: uppercase;
}
.content-item_text:nth-child(3) p {
    font-weight: 400;
}
.content-item_text p {
    color: #000;
    margin-bottom: 1em;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.26;
    letter-spacing: -0.19px;
}
.content-item_image{}
.content-checkerboard-pattern_text-bottom {}

@media (max-width: 767px){
    .content-item {
        flex-direction: column;
    }
    .content-item-revers {
        flex-direction: column;
    }
    .content-item_image {
        order: 1;
    }
    .content-item_wrap {
        width: 100%;
        flex-shrink: inherit;
        align-self: normal;
        order: 2;
    }
}