*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.s{
    position: relative;
    background-image: url(img/bg.svg)
    
}

.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;
}

.s_block_size{
    width: 100%;
    max-width: 650px;
    padding: 0 15px;
}

/***********/
/***********/
/***********/

.bg,
.b{
    width: 100%;
}

.c_block{
    width: 100%;
    max-width: 991px;
    margin: 30px auto;
    text-align: center
}

.s_cont_block{
    position: absolute;
    transform: translate(-50%, -50%);
    top: 15%;
    left: 50%;
}

.title{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: darkred
}

.descr{
    font-size: 21px;
    color: #fff;
}





/***********/
/***********/
/***********/
@media screen and (max-width: 1024px) {
.s_cont_block {
    position: initial;
    transform: none;
    
    }
    .c_block{
        margin: 15px auto;
    }
    .title{
        font-size: 21px
    }
    .descr{
        font-size: 18px
    }
}