.about_wrap{
    border-radius: 20px;
    border: 1px solid #D8E1E9;
    padding: 20px 50px;
}
.about_wrap .about_item:not(:first-of-type){
    border-top: 1px solid #D8E1E9;
}
.about_item{
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 30px;
}
@media screen and (min-width: 600px) {
    .about_item{
        align-items: flex-start;
    }
}
h4.about_title{
    margin-bottom: 0;
    color: #34DCA2;
}
.about_txt{
    flex-basis: 50%;
}
@media screen and (max-width: 600px) {
    body .about_txt{
        font-size: 14px;
    }
    body .about_item{
        flex-direction: column;
    }
    .about_wrap .about_item:first-of-type{
        padding-top: 0;
    }
    .about_wrap .about_item:last-of-type{
        padding-bottom: 0;
    }
    body .about_item{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    body .about_wrap{
        padding: 20px;
    }
    body div .about_title{
        margin-bottom: 10px;
    }
}