@charset "UTF-8";

.infoblock{
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
}
.infoblock + .infoblock{
    margin-top:50px;
}
.infoblock .imagebox{
    width: 40%;
}
.infoblock .textbox{
    width: 60%;
    padding-right: 70px;
}

.infoblock .title{
    margin-bottom:35px;
}
.infoblock .title .name{
    background: #98ca4e;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    padding: 0.6em 1.7em;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 17px;
    line-height: 1.2;
}
.infoblock .subtitle{
    font-size: 30px;
    line-height: 1.2;
    display: block;
}



@media (max-width: 900px) {
    .infoblock{
        display: block;
    }
    .infoblock .imagebox{
        width: 100%;
        text-align: center;
        margin-bottom:30px;
    }
    .infoblock .textbox{
        width: 100%;
        padding-right:0;
    }
}
/* 900 */