.what_in_design{
    background-image: url("img/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


.what_in_design:before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top:0;
    background: rgba(248,250,252,0.8);
    z-index: 1;
}

.wrapper_what_in_design{
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 9;
}

.what_in_design_inner{
    display: flex;
    padding-bottom: 60px;
    flex-direction: column;
    flex-wrap: wrap;
    height: 300px;
    margin-right: -2%;
    align-items: center;
}

.what_in_design_inner .one-block{
    display: flex;
    align-items: center;
    margin-top: 50px;
    width: 31.33%;
    margin-right: 2%;
}

.what_in_design_inner .one-block .num{
    font-family: Roboto Condensed;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    background: #DCC96C;
    color: #000000;
    border-radius: 50%;
    flex-shrink: 0;
    flex-grow: 0;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    margin-right: 10px;
}
.what_in_design_inner .one-block .text{
    font-family: Roboto Condensed;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 20px;
}

@media (max-width: 767px) {
    .what_in_design_inner{
        height: auto;
        margin-right: 0;
    }
    .wrapper_what_in_design .title_h2{
        padding-top: 30px;
        padding-bottom: 0;
    }
    .what_in_design_inner .one-block{
        width: 100%;
        margin-right: 0;
        margin-top: 20px;
    }

    .what_in_design_inner .one-block .num{
        font-size: 24px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .what_in_design_inner .one-block .text{
        font-size: 16px;
        line-height: 18px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .what_in_design_inner{
        height: 400px;
    }
    .what_in_design_inner .one-block{
        width: 48%;
    }
    .what_in_design_inner .one-block .num{
        font-size: 26px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    .what_in_design_inner .one-block .text{
        font-size: 18px;
        line-height: 18px;
    }
}