.green-box {
    background: #34B760;
    border-radius: 5px;
    margin: 23px 0px;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 140%;
}

.box-with-image img {
    width: 100%;
}

.box-with-image .image-box {
    position: relative;
}

.step {
    display: flex;
    align-items: center;
    padding: 6px 26px;
    position: absolute;
    height: 48px;
    right: 1px;
    bottom: 0px;
    background: #34B760;
    border-radius: 5px 0px 0px 0px;
    font-weight: bold;
    font-size: 21px;
    line-height: 170%;
    color: #FFFFFF;
}

.box-content {
    background: #252525;
    padding: 30px;
    border-radius: 0px 0px 5px 5px;
    height: 360px;
}

.box-content h2 {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 23px;
}

.box-content p {
    font-size: 15px;
    font-weight: normal;
    color: #9F9F9F;
    line-height: 170%;
    margin: 18px 0px;
}

@media only screen and (max-width: 767px) and (min-width: 320px) {
    .box-content {
        height: auto;
    }
}