* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.s{
    position: relative;
}

.s_cont {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

.s_col {
    display: flex;
    flex-direction: column;
}

.s_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.s_row_rew {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-around;
}

.block_size {
    width: 100%;
    max-width: 650px;
    padding: 0 15px;
}

/***********/
/***********/
/***********/

.bg,
.b {
    width: 100%;
}

.title {
    font-size: 28px;
    font-weight: 600;
    margin: 10px 0;
}

.descr {
    font-size: 21px;
    margin: 10px 0;
}

.c_block {
    width: 100%;
    max-width: 991px;
    margin: 35px auto;
    text-align: center
}


.s1 .s_cont_block {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 25%;
    left: 50%;
    color: #fff
}

.s6 .s_cont_block,
.s2 .s_cont_block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 25px 0;
}

.item {
    text-align: center;
    width: 100%;
    max-width: 46%;
    margin-bottom: 25px;
}

.items {
    text-align: center;
    width: 100%;
    max-width: 31%;
    margin-bottom: 25px;
}


/***********/
/***********/
/***********/
@media screen and (max-width: 1024px) {
.s1 .s_cont_block {
   position: initial;
    transform: none;
    color: #000
}
    .s_row,
    .s_row_rew {
        flex-direction: column
    }

    .item,
    .items {
        max-width: 100%
    }
    .title{
        font-size: 21px;
    }
    
    .descr{
        font-size: 18px;
    }
}


@media screen and (min-width: 768px) and (max-width: 1024px) {


    .item {
        max-width: 46%;
    }

    .items {
        max-width: 31%;
    }
}
